engineyard-cloud-client 2.0.0 → 2.0.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.
- checksums.yaml +4 -4
- data/ChangeLog.md +6 -1
- data/README.md +9 -0
- data/lib/engineyard-cloud-client/connection.rb +1 -1
- data/lib/engineyard-cloud-client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38d0b4d513e1f5735a9c3e4d60a8e590ea126dd2
|
|
4
|
+
data.tar.gz: 891e1ee6848c9874b8f511a847c424ab042bfcd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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 = ::
|
|
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
|
|
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.
|
|
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.
|
|
358
|
+
rubygems_version: 2.1.11
|
|
359
359
|
signing_key:
|
|
360
360
|
specification_version: 4
|
|
361
361
|
summary: EY Cloud API Client
|