esod-client 0.1.0 → 0.1.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/GEM_RELEASE +7 -2
- data/README.ruby +9 -0
- data/VERSION +1 -1
- data/esod-client.gemspec +8 -4
- data/esod-client.rb +1 -5
- data/esodclient.rb +5 -0
- data/lib/{esodclient/esodclient.rb → esod_client/esod_client.rb} +0 -0
- data/lib/{trollop/trollop.rb → trollop.rb} +0 -0
- data/pkg/esod-client-0.1.0.gem +0 -0
- metadata +7 -3
data/GEM_RELEASE
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
-
To create gems, install the 'jeweler' gem:
|
1
|
+
To create gems, install the 'jeweler' and 'gemcutter' gem:
|
2
2
|
|
3
3
|
gem install jeweler
|
4
|
+
gem install gemcutter
|
4
5
|
|
5
6
|
To create a gemspec from scratch:
|
6
7
|
|
@@ -11,9 +12,13 @@ To bump the version (a git commit is automatically made):
|
|
11
12
|
rake version:bump:minor (or...)
|
12
13
|
rake version:bump:major
|
13
14
|
|
14
|
-
To regenerate the gemspec, push to github, and tag the release:
|
15
|
+
To regenerate the gemspec, push to github and gemcutter, and tag the release:
|
15
16
|
|
16
17
|
rake release
|
17
18
|
|
19
|
+
To build a local version of the gem only:
|
20
|
+
|
21
|
+
rake build
|
22
|
+
|
18
23
|
More information at:
|
19
24
|
http://github.com/technicalpickles/jeweler
|
data/README.ruby
ADDED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/esod-client.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{esod-client}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Yan Pritzker", "CohesiveFT"]
|
@@ -13,16 +13,19 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.description = %q{Consume REST services from Elastic Server On Demand.}
|
14
14
|
s.email = %q{support@elasticserver.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
|
-
"README"
|
16
|
+
"README",
|
17
|
+
"README.ruby"
|
17
18
|
]
|
18
19
|
s.files = [
|
19
20
|
"EXAMPLES",
|
20
21
|
"GEM_RELEASE",
|
21
22
|
"README",
|
23
|
+
"README.ruby",
|
22
24
|
"Rakefile",
|
23
25
|
"VERSION",
|
24
26
|
"esod-client.gemspec",
|
25
27
|
"esod-client.rb",
|
28
|
+
"esodclient.rb",
|
26
29
|
"lib/activesupport-2.2.2/CHANGELOG",
|
27
30
|
"lib/activesupport-2.2.2/README",
|
28
31
|
"lib/activesupport-2.2.2/README.CFT",
|
@@ -59,7 +62,7 @@ Gem::Specification.new do |s|
|
|
59
62
|
"lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb",
|
60
63
|
"lib/activesupport-2.2.2/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb",
|
61
64
|
"lib/activesupport-2.2.2/lib/activesupport.rb",
|
62
|
-
"lib/
|
65
|
+
"lib/esod_client/esod_client.rb",
|
63
66
|
"lib/hash.rb",
|
64
67
|
"lib/mime-types-1.16/History.txt",
|
65
68
|
"lib/mime-types-1.16/Install.txt",
|
@@ -97,7 +100,8 @@ Gem::Specification.new do |s|
|
|
97
100
|
"lib/rest-client-1.2.0/spec/resource_spec.rb",
|
98
101
|
"lib/rest-client-1.2.0/spec/response_spec.rb",
|
99
102
|
"lib/rest-client-1.2.0/spec/restclient_spec.rb",
|
100
|
-
"lib/trollop
|
103
|
+
"lib/trollop.rb",
|
104
|
+
"pkg/esod-client-0.1.0.gem"
|
101
105
|
]
|
102
106
|
s.homepage = %q{http://github.com/cohesive/esod-client}
|
103
107
|
s.rdoc_options = ["--charset=UTF-8"]
|
data/esod-client.rb
CHANGED
data/esodclient.rb
ADDED
File without changes
|
File without changes
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: esod-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yan Pritzker
|
@@ -22,14 +22,17 @@ extensions: []
|
|
22
22
|
|
23
23
|
extra_rdoc_files:
|
24
24
|
- README
|
25
|
+
- README.ruby
|
25
26
|
files:
|
26
27
|
- EXAMPLES
|
27
28
|
- GEM_RELEASE
|
28
29
|
- README
|
30
|
+
- README.ruby
|
29
31
|
- Rakefile
|
30
32
|
- VERSION
|
31
33
|
- esod-client.gemspec
|
32
34
|
- esod-client.rb
|
35
|
+
- esodclient.rb
|
33
36
|
- lib/activesupport-2.2.2/CHANGELOG
|
34
37
|
- lib/activesupport-2.2.2/README
|
35
38
|
- lib/activesupport-2.2.2/README.CFT
|
@@ -66,7 +69,7 @@ files:
|
|
66
69
|
- lib/activesupport-2.2.2/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb
|
67
70
|
- lib/activesupport-2.2.2/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
|
68
71
|
- lib/activesupport-2.2.2/lib/activesupport.rb
|
69
|
-
- lib/
|
72
|
+
- lib/esod_client/esod_client.rb
|
70
73
|
- lib/hash.rb
|
71
74
|
- lib/mime-types-1.16/History.txt
|
72
75
|
- lib/mime-types-1.16/Install.txt
|
@@ -104,7 +107,8 @@ files:
|
|
104
107
|
- lib/rest-client-1.2.0/spec/resource_spec.rb
|
105
108
|
- lib/rest-client-1.2.0/spec/response_spec.rb
|
106
109
|
- lib/rest-client-1.2.0/spec/restclient_spec.rb
|
107
|
-
- lib/trollop
|
110
|
+
- lib/trollop.rb
|
111
|
+
- pkg/esod-client-0.1.0.gem
|
108
112
|
has_rdoc: true
|
109
113
|
homepage: http://github.com/cohesive/esod-client
|
110
114
|
licenses: []
|