Skip to content

Commit 10e6820

Browse files
committed
Will need a new implementation.
1 parent 1ff41c0 commit 10e6820

File tree

9 files changed

+2
-410
lines changed

9 files changed

+2
-410
lines changed

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ gem 'bundler'
66
gem 'json'
77
gem 'json-schema'
88
gem 'rake'
9-
gem 'spidey'
109

1110
group :test do
1211
gem 'rubocop'

Gemfile.lock

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -4,40 +4,13 @@ GEM
44
addressable (2.8.0)
55
public_suffix (>= 2.0.2, < 5.0)
66
ast (2.4.2)
7-
connection_pool (2.2.5)
8-
domain_name (0.5.20190701)
9-
unf (>= 0.0.5, < 1.0.0)
10-
http-cookie (1.0.5)
11-
domain_name (~> 0.5)
127
json (2.6.2)
138
json-schema (2.8.1)
149
addressable (>= 2.4)
15-
mechanize (2.8.5)
16-
addressable (~> 2.8)
17-
domain_name (~> 0.5, >= 0.5.20190701)
18-
http-cookie (~> 1.0, >= 1.0.3)
19-
mime-types (~> 3.0)
20-
net-http-digest_auth (~> 1.4, >= 1.4.1)
21-
net-http-persistent (>= 2.5.2, < 5.0.dev)
22-
nokogiri (~> 1.11, >= 1.11.2)
23-
rubyntlm (~> 0.6, >= 0.6.3)
24-
webrick (~> 1.7)
25-
webrobots (~> 0.1.2)
26-
mime-types (3.4.1)
27-
mime-types-data (~> 3.2015)
28-
mime-types-data (3.2022.0105)
29-
mini_portile2 (2.8.5)
30-
net-http-digest_auth (1.4.1)
31-
net-http-persistent (4.0.1)
32-
connection_pool (~> 2.2)
33-
nokogiri (1.15.6)
34-
mini_portile2 (~> 2.8.2)
35-
racc (~> 1.4)
3610
parallel (1.22.1)
3711
parser (3.1.2.1)
3812
ast (~> 2.4.1)
3913
public_suffix (4.0.6)
40-
racc (1.7.3)
4114
rainbow (3.1.1)
4215
rake (13.0.1)
4316
regexp_parser (2.6.0)
@@ -57,15 +30,7 @@ GEM
5730
rubocop-rake (0.6.0)
5831
rubocop (~> 1.0)
5932
ruby-progressbar (1.11.0)
60-
rubyntlm (0.6.3)
61-
spidey (0.1.0)
62-
mechanize
63-
unf (0.1.4)
64-
unf_ext
65-
unf_ext (0.0.8.2)
6633
unicode-display_width (2.3.0)
67-
webrick (1.8.2)
68-
webrobots (0.1.2)
6934

7035
PLATFORMS
7136
ruby
@@ -77,7 +42,6 @@ DEPENDENCIES
7742
rake
7843
rubocop
7944
rubocop-rake
80-
spidey
8145

8246
BUNDLED WITH
8347
2.2.33

Rakefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
require 'json'
44
require 'json-schema'
5-
require 'spidey'
65
require 'rubygems'
76
require 'bundler'
87
require 'fileutils'

tasks/download.rake

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,10 @@ namespace :api do
66
namespace :ref do
77
desc 'Download JSON reference.'
88
task :download do
9-
Rake::Task['api:ref:clean_files'].invoke('docs.slack.dev')
9+
FileUtils.rm_rf 'docs.slack.dev'
1010
downloader = SlackApi::Docs::Downloader.new
1111
downloader.download!
1212
puts "\nFinished downloading reference."
1313
end
14-
15-
desc 'Delete all generated files except undocumented ones.'
16-
task :clean_files, :dirs do |_t, args|
17-
files = Dir["./{#{Array(args[:dirs]).join(',')}}/*"].grep_v(%r{/undocumented\b})
18-
FileUtils.rm_rf files
19-
end
2014
end
2115
end

tasks/lib/slack_api/base_spider.rb

Lines changed: 0 additions & 16 deletions
This file was deleted.

tasks/lib/slack_api/events_spider.rb

Lines changed: 0 additions & 59 deletions
This file was deleted.

tasks/lib/slack_api/methods_spider.rb

Lines changed: 0 additions & 181 deletions
This file was deleted.

tasks/lib/slack_api/spec_validator.rb

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)