beanstalkapp 1.2.1 → 1.3.0
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/CHANGES.rdoc +4 -0
- data/VERSION +1 -1
- data/beanstalkapp.gemspec +5 -4
- data/lib/beanstalkapp.rb +1 -0
- data/lib/beanstalkapp/plan.rb +4 -0
- metadata +28 -9
data/CHANGES.rdoc
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
= Changelog
|
|
2
2
|
|
|
3
|
+
== 1.3.0
|
|
4
|
+
|
|
5
|
+
* Added Plan model. It will return information about Beanstalk's public plans including storage limits and price.
|
|
6
|
+
|
|
3
7
|
== 1.2.1
|
|
4
8
|
|
|
5
9
|
* Added pagination support for Releases API. Now you can specify page number as a third argument to Release.find_all_for_environment.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.3.0
|
data/beanstalkapp.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{beanstalkapp}
|
|
8
|
-
s.version = "1.
|
|
8
|
+
s.version = "1.3.0"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Ilya Sabanin"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-10-12}
|
|
13
13
|
s.email = %q{ilya.sabanin@gmail.com}
|
|
14
14
|
s.extra_rdoc_files = [
|
|
15
15
|
"README.rdoc"
|
|
@@ -131,6 +131,7 @@ Gem::Specification.new do |s|
|
|
|
131
131
|
"lib/beanstalkapp/base.rb",
|
|
132
132
|
"lib/beanstalkapp/changeset.rb",
|
|
133
133
|
"lib/beanstalkapp/comment.rb",
|
|
134
|
+
"lib/beanstalkapp/plan.rb",
|
|
134
135
|
"lib/beanstalkapp/release.rb",
|
|
135
136
|
"lib/beanstalkapp/release_server.rb",
|
|
136
137
|
"lib/beanstalkapp/repository.rb",
|
|
@@ -141,7 +142,7 @@ Gem::Specification.new do |s|
|
|
|
141
142
|
s.homepage = %q{http://api.beanstalkapp.com}
|
|
142
143
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
143
144
|
s.require_paths = ["lib"]
|
|
144
|
-
s.rubygems_version = %q{1.3.
|
|
145
|
+
s.rubygems_version = %q{1.3.7}
|
|
145
146
|
s.summary = %q{Official wrapper for Beanstalk API.}
|
|
146
147
|
s.test_files = [
|
|
147
148
|
"test/integration.rb"
|
|
@@ -151,7 +152,7 @@ Gem::Specification.new do |s|
|
|
|
151
152
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
152
153
|
s.specification_version = 3
|
|
153
154
|
|
|
154
|
-
if Gem::Version.new(Gem::
|
|
155
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
155
156
|
s.add_runtime_dependency(%q<activeresource>, ["= 2.3.5"])
|
|
156
157
|
else
|
|
157
158
|
s.add_dependency(%q<activeresource>, ["= 2.3.5"])
|
data/lib/beanstalkapp.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beanstalkapp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
4
|
+
hash: 27
|
|
5
|
+
prerelease: false
|
|
6
|
+
segments:
|
|
7
|
+
- 1
|
|
8
|
+
- 3
|
|
9
|
+
- 0
|
|
10
|
+
version: 1.3.0
|
|
5
11
|
platform: ruby
|
|
6
12
|
authors:
|
|
7
13
|
- Ilya Sabanin
|
|
@@ -9,19 +15,25 @@ autorequire:
|
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
17
|
|
|
12
|
-
date: 2010-
|
|
18
|
+
date: 2010-10-12 00:00:00 +08:00
|
|
13
19
|
default_executable:
|
|
14
20
|
dependencies:
|
|
15
21
|
- !ruby/object:Gem::Dependency
|
|
16
22
|
name: activeresource
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
23
|
+
prerelease: false
|
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
20
26
|
requirements:
|
|
21
27
|
- - "="
|
|
22
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 9
|
|
30
|
+
segments:
|
|
31
|
+
- 2
|
|
32
|
+
- 3
|
|
33
|
+
- 5
|
|
23
34
|
version: 2.3.5
|
|
24
|
-
|
|
35
|
+
type: :runtime
|
|
36
|
+
version_requirements: *id001
|
|
25
37
|
description:
|
|
26
38
|
email: ilya.sabanin@gmail.com
|
|
27
39
|
executables: []
|
|
@@ -147,6 +159,7 @@ files:
|
|
|
147
159
|
- lib/beanstalkapp/base.rb
|
|
148
160
|
- lib/beanstalkapp/changeset.rb
|
|
149
161
|
- lib/beanstalkapp/comment.rb
|
|
162
|
+
- lib/beanstalkapp/plan.rb
|
|
150
163
|
- lib/beanstalkapp/release.rb
|
|
151
164
|
- lib/beanstalkapp/release_server.rb
|
|
152
165
|
- lib/beanstalkapp/repository.rb
|
|
@@ -163,21 +176,27 @@ rdoc_options:
|
|
|
163
176
|
require_paths:
|
|
164
177
|
- lib
|
|
165
178
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
179
|
+
none: false
|
|
166
180
|
requirements:
|
|
167
181
|
- - ">="
|
|
168
182
|
- !ruby/object:Gem::Version
|
|
183
|
+
hash: 3
|
|
184
|
+
segments:
|
|
185
|
+
- 0
|
|
169
186
|
version: "0"
|
|
170
|
-
version:
|
|
171
187
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
|
+
none: false
|
|
172
189
|
requirements:
|
|
173
190
|
- - ">="
|
|
174
191
|
- !ruby/object:Gem::Version
|
|
192
|
+
hash: 3
|
|
193
|
+
segments:
|
|
194
|
+
- 0
|
|
175
195
|
version: "0"
|
|
176
|
-
version:
|
|
177
196
|
requirements: []
|
|
178
197
|
|
|
179
198
|
rubyforge_project:
|
|
180
|
-
rubygems_version: 1.3.
|
|
199
|
+
rubygems_version: 1.3.7
|
|
181
200
|
signing_key:
|
|
182
201
|
specification_version: 3
|
|
183
202
|
summary: Official wrapper for Beanstalk API.
|