relish 0.7 → 0.7.1
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/.gitignore +0 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/cucumber.yml +0 -0
- data/features/help.feature +0 -0
- data/features/projects.feature +0 -0
- data/features/step_definitions/aruba.rb +0 -0
- data/features/step_definitions/fake_web_steps.rb +0 -0
- data/features/step_definitions/relish_steps.rb +0 -0
- data/features/support/env.rb +0 -0
- data/lib/relish.rb +0 -0
- data/lib/relish/command.rb +0 -0
- data/lib/relish/commands/base.rb +1 -0
- data/lib/relish/commands/collab.rb +0 -0
- data/lib/relish/commands/config.rb +0 -0
- data/lib/relish/commands/dsl.rb +0 -0
- data/lib/relish/commands/dsl/command.rb +0 -0
- data/lib/relish/commands/dsl/context_class.rb +0 -0
- data/lib/relish/commands/dsl/help_text.rb +0 -0
- data/lib/relish/commands/dsl/option.rb +0 -0
- data/lib/relish/commands/help.rb +0 -0
- data/lib/relish/commands/projects.rb +0 -0
- data/lib/relish/commands/push.rb +0 -0
- data/lib/relish/commands/versions.rb +0 -0
- data/lib/relish/error_messages.rb +0 -0
- data/lib/relish/helpers.rb +0 -0
- data/lib/relish/options_file.rb +0 -0
- data/lib/relish/param_methods.rb +0 -0
- data/lib/relish/resource_methods.rb +0 -0
- data/lib/relish/ui.rb +0 -0
- data/lib/relish/version.rb +1 -1
- data/relish.gemspec +2 -2
- data/spec/relish/command_spec.rb +0 -0
- data/spec/relish/commands/base_spec.rb +0 -0
- data/spec/relish/commands/config_spec.rb +0 -0
- data/spec/relish/commands/dsl/command_spec.rb +0 -0
- data/spec/relish/commands/dsl/help_text_spec.rb +0 -0
- data/spec/relish/commands/dsl/option_spec.rb +0 -0
- data/spec/relish/error_messages_spec.rb +0 -0
- data/spec/relish/options_file_spec.rb +0 -0
- data/spec/relish/param_methods_spec.rb +0 -0
- data/spec/relish_spec.rb +0 -0
- data/spec/spec_helper.rb +0 -0
- data/spec/support/context_class_examples.rb +0 -0
- data/tags +0 -0
- metadata +7 -9
data/.gitignore
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile
CHANGED
File without changes
|
data/cucumber.yml
CHANGED
File without changes
|
data/features/help.feature
CHANGED
File without changes
|
data/features/projects.feature
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/features/support/env.rb
CHANGED
File without changes
|
data/lib/relish.rb
CHANGED
File without changes
|
data/lib/relish/command.rb
CHANGED
File without changes
|
data/lib/relish/commands/base.rb
CHANGED
File without changes
|
File without changes
|
data/lib/relish/commands/dsl.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/relish/commands/help.rb
CHANGED
File without changes
|
File without changes
|
data/lib/relish/commands/push.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
data/lib/relish/helpers.rb
CHANGED
File without changes
|
data/lib/relish/options_file.rb
CHANGED
File without changes
|
data/lib/relish/param_methods.rb
CHANGED
File without changes
|
File without changes
|
data/lib/relish/ui.rb
CHANGED
File without changes
|
data/lib/relish/version.rb
CHANGED
data/relish.gemspec
CHANGED
@@ -22,7 +22,7 @@ Gem::Specification.new do |s|
|
|
22
22
|
|
23
23
|
{
|
24
24
|
'archive-tar-minitar' => '>= 0.5.2',
|
25
|
-
'rest-client' => '>= 1.
|
25
|
+
'rest-client' => '>= 1.7.2',
|
26
26
|
'json' => '>= 1.4.6'
|
27
27
|
}.each do |lib, version|
|
28
28
|
s.add_runtime_dependency lib, version
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |s|
|
|
30
30
|
|
31
31
|
{
|
32
32
|
'bundler' => '~> 1.3',
|
33
|
-
'rake' => '~>
|
33
|
+
'rake' => '~> 10',
|
34
34
|
'rspec' => '~> 2.8.0',
|
35
35
|
'cucumber' => '~> 1.0.2',
|
36
36
|
'aruba' => '~> 0.4.5',
|
data/spec/relish/command_spec.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/spec/relish_spec.rb
CHANGED
File without changes
|
data/spec/spec_helper.rb
CHANGED
File without changes
|
File without changes
|
data/tags
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: relish
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 0.7.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2014-12-04 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: archive-tar-minitar
|
@@ -35,7 +35,7 @@ dependencies:
|
|
35
35
|
requirements:
|
36
36
|
- - ! '>='
|
37
37
|
- !ruby/object:Gem::Version
|
38
|
-
version: 1.
|
38
|
+
version: 1.7.2
|
39
39
|
type: :runtime
|
40
40
|
prerelease: false
|
41
41
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
requirements:
|
44
44
|
- - ! '>='
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 1.
|
46
|
+
version: 1.7.2
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: json
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
@@ -83,7 +83,7 @@ dependencies:
|
|
83
83
|
requirements:
|
84
84
|
- - ~>
|
85
85
|
- !ruby/object:Gem::Version
|
86
|
-
version:
|
86
|
+
version: '10'
|
87
87
|
type: :development
|
88
88
|
prerelease: false
|
89
89
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -91,7 +91,7 @@ dependencies:
|
|
91
91
|
requirements:
|
92
92
|
- - ~>
|
93
93
|
- !ruby/object:Gem::Version
|
94
|
-
version:
|
94
|
+
version: '10'
|
95
95
|
- !ruby/object:Gem::Dependency
|
96
96
|
name: rspec
|
97
97
|
requirement: !ruby/object:Gem::Requirement
|
@@ -226,9 +226,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
226
226
|
- - ! '>='
|
227
227
|
- !ruby/object:Gem::Version
|
228
228
|
version: '0'
|
229
|
-
segments:
|
230
|
-
- 0
|
231
|
-
hash: -2069326935424182989
|
232
229
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
233
230
|
none: false
|
234
231
|
requirements:
|
@@ -261,3 +258,4 @@ test_files:
|
|
261
258
|
- spec/relish_spec.rb
|
262
259
|
- spec/spec_helper.rb
|
263
260
|
- spec/support/context_class_examples.rb
|
261
|
+
has_rdoc:
|