beanstalkapp 1.4.1 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,9 @@
1
1
  = Changelog
2
2
 
3
+ == 1.5.0
4
+
5
+ * Introducing PublicKey resource.
6
+
3
7
  == 1.4.1
4
8
 
5
9
  * Added User.find_current for fetching info about currently logged in user.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.1
1
+ 1.5.0
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{beanstalkapp}
8
- s.version = "1.4.1"
8
+ s.version = "1.5.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{2011-03-08}
12
+ s.date = %q{2011-03-18}
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/changeset.rb",
132
132
  "lib/beanstalkapp/comment.rb",
133
133
  "lib/beanstalkapp/plan.rb",
134
+ "lib/beanstalkapp/public_key.rb",
134
135
  "lib/beanstalkapp/release.rb",
135
136
  "lib/beanstalkapp/release_server.rb",
136
137
  "lib/beanstalkapp/repository.rb",
@@ -18,4 +18,5 @@ require_local 'beanstalkapp/comment'
18
18
  require_local 'beanstalkapp/server_environment'
19
19
  require_local 'beanstalkapp/release'
20
20
  require_local 'beanstalkapp/release_server'
21
- require_local 'beanstalkapp/user'
21
+ require_local 'beanstalkapp/user'
22
+ require_local 'beanstalkapp/public_key'
@@ -0,0 +1,4 @@
1
+ module Beanstalk::API
2
+ class PublicKey < Base
3
+ end
4
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beanstalkapp
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 4
9
- - 1
10
- version: 1.4.1
8
+ - 5
9
+ - 0
10
+ version: 1.5.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ilya Sabanin
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-08 00:00:00 +07:00
18
+ date: 2011-03-18 00:00:00 +07:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -159,6 +159,7 @@ files:
159
159
  - lib/beanstalkapp/changeset.rb
160
160
  - lib/beanstalkapp/comment.rb
161
161
  - lib/beanstalkapp/plan.rb
162
+ - lib/beanstalkapp/public_key.rb
162
163
  - lib/beanstalkapp/release.rb
163
164
  - lib/beanstalkapp/release_server.rb
164
165
  - lib/beanstalkapp/repository.rb