relish 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +1 -1
- data/features/help.feature +1 -1
- data/lib/relish/commands/projects.rb +1 -1
- data/relish.gemspec +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
Run `relish help` to view the available commands.
|
data/features/help.feature
CHANGED
@@ -27,7 +27,7 @@ Feature: Help
|
|
27
27
|
projects:add <org_or_user_handle>/<project_handle> # add a project
|
28
28
|
# append :private to make the project private
|
29
29
|
# example: relish projects:add rspec/rspec-core:private
|
30
|
-
projects:remove <
|
30
|
+
projects:remove <project_handle> # remove a project
|
31
31
|
push <project> # push features to relishapp.com
|
32
32
|
collab # list the collaborators for a project
|
33
33
|
collab:add <project>:<collaborator_handle_or_email> # add a collaborator to a project
|
@@ -15,7 +15,7 @@ module Relish
|
|
15
15
|
puts resource['projects'].post(:handle => handle, :private => private?)
|
16
16
|
end
|
17
17
|
|
18
|
-
usage 'projects:remove <
|
18
|
+
usage 'projects:remove <project_handle>'
|
19
19
|
desc 'remove a project'
|
20
20
|
command :remove do
|
21
21
|
puts resource["projects/#{@param}"].delete
|
data/relish.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 31
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 2
|
10
|
+
version: 0.1.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Matt Wynne
|