chimps-cli 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/Gemfile +2 -2
  2. data/Gemfile.lock +5 -5
  3. data/VERSION +1 -1
  4. data/chimps-cli.gemspec +105 -0
  5. metadata +13 -10
data/Gemfile CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
2
  source :gemcutter
3
- gem "chimps", ">= 0.3.1"
3
+ gem "chimps", ">= 0.3.2"
4
4
  gem "configliere", ">= 0.3.2"
5
- gem "json"
5
+ gem "json", "1.4.6"
6
6
  group :test do
7
7
  gem "rspec"
8
8
  end
data/Gemfile.lock CHANGED
@@ -2,14 +2,14 @@ GEM
2
2
  remote: http://rubygems.org/
3
3
  specs:
4
4
  addressable (2.2.4)
5
- chimps (0.3.1)
5
+ chimps (0.3.2)
6
6
  addressable
7
7
  configliere (>= 0.3.2)
8
- json
8
+ json (= 1.4.6)
9
9
  rest-client (>= 1.6.1)
10
10
  configliere (0.3.2)
11
11
  diff-lcs (1.1.2)
12
- json (1.5.1)
12
+ json (1.4.6)
13
13
  mime-types (1.16)
14
14
  rest-client (1.6.1)
15
15
  mime-types (>= 1.16)
@@ -26,7 +26,7 @@ PLATFORMS
26
26
  ruby
27
27
 
28
28
  DEPENDENCIES
29
- chimps (>= 0.3.1)
29
+ chimps (>= 0.3.2)
30
30
  configliere (>= 0.3.2)
31
- json
31
+ json (= 1.4.6)
32
32
  rspec
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
@@ -0,0 +1,105 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{chimps-cli}
8
+ s.version = "0.0.2"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Dhruv Bansal"]
12
+ s.date = %q{2011-03-25}
13
+ s.default_executable = %q{chimps}
14
+ s.description = %q{Chimps CLI provides the command line program 'chimps' which allows you to easily make API calls against Infochimps web services.}
15
+ s.email = %q{coders@infochimps.com}
16
+ s.executables = ["chimps"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "bin/chimps",
29
+ "chimps-cli.gemspec",
30
+ "lib/chimps-cli.rb",
31
+ "lib/chimps-cli/commands.rb",
32
+ "lib/chimps-cli/commands/base.rb",
33
+ "lib/chimps-cli/commands/create.rb",
34
+ "lib/chimps-cli/commands/delete.rb",
35
+ "lib/chimps-cli/commands/destroy.rb",
36
+ "lib/chimps-cli/commands/download.rb",
37
+ "lib/chimps-cli/commands/get.rb",
38
+ "lib/chimps-cli/commands/help.rb",
39
+ "lib/chimps-cli/commands/list.rb",
40
+ "lib/chimps-cli/commands/me.rb",
41
+ "lib/chimps-cli/commands/post.rb",
42
+ "lib/chimps-cli/commands/put.rb",
43
+ "lib/chimps-cli/commands/query.rb",
44
+ "lib/chimps-cli/commands/search.rb",
45
+ "lib/chimps-cli/commands/show.rb",
46
+ "lib/chimps-cli/commands/test.rb",
47
+ "lib/chimps-cli/commands/update.rb",
48
+ "lib/chimps-cli/commands/upload.rb",
49
+ "lib/chimps-cli/utils.rb",
50
+ "lib/chimps-cli/utils/acts_on_resource.rb",
51
+ "lib/chimps-cli/utils/explicit_path.rb",
52
+ "lib/chimps-cli/utils/http_format.rb",
53
+ "lib/chimps-cli/utils/uses_param_value_data.rb",
54
+ "spec/chimps-cli/commands/delete_spec.rb",
55
+ "spec/chimps-cli/commands/get_spec.rb",
56
+ "spec/chimps-cli/commands/help_spec.rb",
57
+ "spec/chimps-cli/commands/list_spec.rb",
58
+ "spec/chimps-cli/commands/post_spec.rb",
59
+ "spec/chimps-cli/commands/put_spec.rb",
60
+ "spec/chimps-cli/commands/show_spec.rb",
61
+ "spec/spec_helper.rb",
62
+ "spec/support/acts_on_resource.rb",
63
+ "spec/support/explicit_path.rb",
64
+ "spec/support/http_format.rb",
65
+ "spec/support/uses_param_value_data.rb"
66
+ ]
67
+ s.homepage = %q{http://github.com/infochimps/chimps-cli}
68
+ s.require_paths = ["lib"]
69
+ s.rubygems_version = %q{1.3.7}
70
+ s.summary = %q{Chimps CLI is command-line interface for the Chimps gem (http://www.infochimps.com/labs)}
71
+ s.test_files = [
72
+ "spec/chimps-cli/commands/delete_spec.rb",
73
+ "spec/chimps-cli/commands/get_spec.rb",
74
+ "spec/chimps-cli/commands/help_spec.rb",
75
+ "spec/chimps-cli/commands/list_spec.rb",
76
+ "spec/chimps-cli/commands/post_spec.rb",
77
+ "spec/chimps-cli/commands/put_spec.rb",
78
+ "spec/chimps-cli/commands/show_spec.rb",
79
+ "spec/spec_helper.rb",
80
+ "spec/support/acts_on_resource.rb",
81
+ "spec/support/explicit_path.rb",
82
+ "spec/support/http_format.rb",
83
+ "spec/support/uses_param_value_data.rb"
84
+ ]
85
+
86
+ if s.respond_to? :specification_version then
87
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
88
+ s.specification_version = 3
89
+
90
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
91
+ s.add_runtime_dependency(%q<chimps>, [">= 0.3.2"])
92
+ s.add_runtime_dependency(%q<configliere>, [">= 0.3.2"])
93
+ s.add_runtime_dependency(%q<json>, ["= 1.4.6"])
94
+ else
95
+ s.add_dependency(%q<chimps>, [">= 0.3.2"])
96
+ s.add_dependency(%q<configliere>, [">= 0.3.2"])
97
+ s.add_dependency(%q<json>, ["= 1.4.6"])
98
+ end
99
+ else
100
+ s.add_dependency(%q<chimps>, [">= 0.3.2"])
101
+ s.add_dependency(%q<configliere>, [">= 0.3.2"])
102
+ s.add_dependency(%q<json>, ["= 1.4.6"])
103
+ end
104
+ end
105
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chimps-cli
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dhruv Bansal
@@ -26,12 +26,12 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- hash: 17
29
+ hash: 23
30
30
  segments:
31
31
  - 0
32
32
  - 3
33
- - 1
34
- version: 0.3.1
33
+ - 2
34
+ version: 0.3.2
35
35
  requirement: *id001
36
36
  type: :runtime
37
37
  - !ruby/object:Gem::Dependency
@@ -56,12 +56,14 @@ dependencies:
56
56
  version_requirements: &id003 !ruby/object:Gem::Requirement
57
57
  none: false
58
58
  requirements:
59
- - - ">="
59
+ - - "="
60
60
  - !ruby/object:Gem::Version
61
- hash: 3
61
+ hash: 11
62
62
  segments:
63
- - 0
64
- version: "0"
63
+ - 1
64
+ - 4
65
+ - 6
66
+ version: 1.4.6
65
67
  requirement: *id003
66
68
  type: :runtime
67
69
  description: Chimps CLI provides the command line program 'chimps' which allows you to easily make API calls against Infochimps web services.
@@ -81,6 +83,7 @@ files:
81
83
  - Rakefile
82
84
  - VERSION
83
85
  - bin/chimps
86
+ - chimps-cli.gemspec
84
87
  - lib/chimps-cli.rb
85
88
  - lib/chimps-cli/commands.rb
86
89
  - lib/chimps-cli/commands/base.rb