engineyard-cloud-client 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d4669de7b49affd7379b28241e9f81455e196564
4
- data.tar.gz: 75bcee31a6f73ff8e4b8da00ca4d607c3e6785d9
3
+ metadata.gz: 38d0b4d513e1f5735a9c3e4d60a8e590ea126dd2
4
+ data.tar.gz: 891e1ee6848c9874b8f511a847c424ab042bfcd8
5
5
  SHA512:
6
- metadata.gz: fa115eb97c4c29f24ae97fb2ac649780f1da0b99c5359cfa834cd889dde73968afa66fc3a4c9e7e1715d6519c34f51b8300a5eb7fb77e5c12ae975d8269b0c3d
7
- data.tar.gz: bc2e72d4ef188dc7f8b6294fe67d1e9a080cc7b00b2af55b74d5a0ded21e3c6d3ff5f4fc068bf75aa4251a3b203669483558a51ea24c264e200c1763168a41ac
6
+ metadata.gz: a875c2e52ce80abd14da0635e0b5397e0e0a9ea614afbd1d830ce5256964b2fe431d850c93aaf25d3bb64965028d864f81d10423375f90472a62add04a38a823
7
+ data.tar.gz: b0d4ff350dceab7f37c04c678b2851555fbf265949a36952fedb64cf0e0947a30a3228137e2a8ecce1178d650087b43d45c71435d7557a297faea7ddf650da0d
data/ChangeLog.md CHANGED
@@ -4,9 +4,14 @@
4
4
 
5
5
  *
6
6
 
7
+ ## v2.0.1 (2013-11-21)
8
+
9
+ * Fix RbConfig deprecation warning
10
+
7
11
  ## v2.0.0 (2013-11-21)
8
12
 
9
- *
13
+ * Ruby `>= 1.9.3` only.
14
+ * Send `RUBY_PLATFORM` and `RUBY_VERSION` with the User-Agent string to make upgrades easiear in the future.
10
15
 
11
16
  ## v1.0.15 (2013-11-15)
12
17
 
data/README.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  engineyard-cloud-client contains a Ruby api library to the Engine Yard Cloud API. Extracted from the [engineyard gem](https://github.com/engineyard/engineyard).
4
4
 
5
+ ## Version 2.0.x
6
+
7
+ As of the 2.0 version series, we will only be supporting ruby versions 1.9.3 and
8
+ greater. Supporting older versions of ruby has gotten increasingly difficult as
9
+ more and more gems assume that everyone is using 1.9.3 or greater.
10
+
11
+ The 1.0 version series will no longer be under active development, but will
12
+ remain available through rubygems and on the 1-0-stable branch.
13
+
5
14
  ## Use at your own risk
6
15
 
7
16
  At this time, cloud-client is not documented for public use. It was created to
@@ -11,7 +11,7 @@ module EY
11
11
  attr_reader :output, :user_agent, :endpoint
12
12
  attr_accessor :token
13
13
 
14
- RUBY_VERSION_NAME = ::Config::CONFIG["RUBY_VERSION_NAME"] || "ruby-#{::RUBY_VERSION}"
14
+ RUBY_VERSION_NAME = ::RbConfig::CONFIG["RUBY_VERSION_NAME"] || "ruby-#{::RUBY_VERSION}"
15
15
  BASE_USER_AGENT = "EngineYardCloudClient/#{EY::CloudClient::VERSION} (#{::RUBY_PLATFORM}; #{RUBY_VERSION_NAME})".freeze
16
16
  DEFAULT_ENDPOINT = "https://cloud.engineyard.com/".freeze
17
17
 
@@ -1,7 +1,7 @@
1
1
  # This file is maintained by a herd of rabid monkeys with Rakes.
2
2
  module EY
3
3
  class CloudClient
4
- VERSION = '2.0.0'
4
+ VERSION = '2.0.1'
5
5
  end
6
6
  end
7
7
  # Please be aware that the monkeys like tho throw poo sometimes.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: engineyard-cloud-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - EY Cloud Team
@@ -355,7 +355,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
355
355
  version: '0'
356
356
  requirements: []
357
357
  rubyforge_project:
358
- rubygems_version: 2.0.6
358
+ rubygems_version: 2.1.11
359
359
  signing_key:
360
360
  specification_version: 4
361
361
  summary: EY Cloud API Client