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 CHANGED
@@ -1 +1 @@
1
- Hello
1
+ Run `relish help` to view the available commands.
@@ -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 <org_or_user_handle>/<project_handle> # remove a project
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 <org_or_user_handle>/<project_handle>'
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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "relish"
3
- s.version = "0.1.1"
3
+ s.version = "0.1.2"
4
4
 
5
5
  s.required_rubygems_version = '>= 1.3.5'
6
6
  s.authors = ["Matt Wynne", "Justin Ko"]
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: 25
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 1
10
- version: 0.1.1
9
+ - 2
10
+ version: 0.1.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Matt Wynne