beanstalkapp 1.6.0 → 1.6.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.
@@ -1,5 +1,9 @@
1
1
  = Changelog
2
2
 
3
+ == 1.6.1
4
+
5
+ * Use https by default.
6
+
3
7
  == 1.6.0
4
8
 
5
9
  * Introducing Permission resource.
@@ -49,4 +53,4 @@
49
53
 
50
54
  == 1.0
51
55
 
52
- * Initial public release
56
+ * Initial public release
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.6.1
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{beanstalkapp}
8
- s.version = "1.6.0"
8
+ s.version = "1.6.1"
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-29}
12
+ s.date = %q{2011-11-30}
13
13
  s.email = %q{ilya.sabanin@gmail.com}
14
14
  s.extra_rdoc_files = [
15
15
  "README.rdoc"
@@ -144,9 +144,6 @@ Gem::Specification.new do |s|
144
144
  s.require_paths = ["lib"]
145
145
  s.rubygems_version = %q{1.3.7}
146
146
  s.summary = %q{Official wrapper for Beanstalk API.}
147
- s.test_files = [
148
- "test/integration.rb"
149
- ]
150
147
 
151
148
  if s.respond_to? :specification_version then
152
149
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
@@ -3,7 +3,7 @@ module Beanstalk
3
3
  class Base < ActiveResource::Base
4
4
  def self.setup(options)
5
5
  options[:host] ||= "beanstalkapp.com"
6
- self.site = "http://#{options[:domain]}.#{options[:host]}/api"
6
+ self.site = "https://#{options[:domain]}.#{options[:host]}/api"
7
7
  self.user = options[:login]
8
8
  self.password = options[:password]
9
9
  end
@@ -18,4 +18,4 @@ module Beanstalk
18
18
  end
19
19
  end
20
20
  end
21
- end
21
+ 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: 15
4
+ hash: 13
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 6
9
- - 0
10
- version: 1.6.0
9
+ - 1
10
+ version: 1.6.1
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-29 00:00:00 +08:00
18
+ date: 2011-11-30 00:00:00 +04:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -201,5 +201,5 @@ rubygems_version: 1.3.7
201
201
  signing_key:
202
202
  specification_version: 3
203
203
  summary: Official wrapper for Beanstalk API.
204
- test_files:
205
- - test/integration.rb
204
+ test_files: []
205
+