We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 179f70d commit 3793099Copy full SHA for 3793099
2 files changed
CONTRIBUTING.md
@@ -76,7 +76,7 @@ git push origin my-feature-branch -f
76
#### Re-generate Docs
77
78
```
79
-rake api:methods:update
+rake api:update
80
81
82
#### Be Patient
tasks/methods.rake
@@ -12,12 +12,12 @@ namespace :api do
12
abort "Invalid file format: #{file}" unless validator.valid?(file)
13
end
14
15
- end
16
17
- desc 'Update methods and events.'
18
- task :update do
19
- Rake::Task['api:clean_files'].invoke('methods')
20
- Rake::Task['api:clean_files'].invoke('groups')
21
- SlackApi::MethodsGenerator.new.generate!
+ desc 'Update methods.'
+ task :update do
+ Rake::Task['api:clean_files'].invoke('methods')
+ Rake::Task['api:clean_files'].invoke('groups')
+ SlackApi::MethodsGenerator.new.generate!
+ end
22
23
0 commit comments