Skip to content

Commit 9dbba75

Browse files
committed
Fix broken gem configparser dependency
1 parent ca9b91c commit 9dbba75

6 files changed

Lines changed: 20 additions & 9 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.DS_Store
22
*.*~
33
*.gem
4-
4+
.bundle/
55
log/
6-
internal_examples/
6+
internal_examples/

CHANGELOG.textile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
*2.0.1*
2+
* Fix broken gem configparser dependency
3+
14
*2.0.0*
25
* Switched the Ruby API client to use XML-RPC when calling the SoftLayer API rather than using the REST-like interface.
36
* Result limits are now specified using @result_limit(offset,limit)@.
@@ -27,4 +30,4 @@ The @result_offset@ API filter has been removed.
2730
* We have some API routines that start with 'get' but expect arguments anyway. The code now uses HTTP POST to send requests for which the user has provided arguments regardless of the name of the routine.
2831

2932
*1.0*, *1.0.1*
30-
* Initial release of the gem
33+
* Initial release of the gem

Gemfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
source 'https://rubygems.org'
22

3-
gem 'rake'
4-
gem 'rspec'
5-
gem 'configparser', "~> 0.1.2", :require => false
3+
gemspec

Gemfile.lock

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1+
PATH
2+
remote: .
3+
specs:
4+
softlayer_api (2.0.1)
5+
configparser (~> 0.1.2)
6+
json (~> 1.8, >= 1.8.1)
7+
18
GEM
29
remote: https://rubygems.org/
310
specs:
4-
configparser (0.1.2)
11+
configparser (0.1.3)
512
diff-lcs (1.2.5)
13+
json (1.8.1)
614
rake (10.1.1)
715
rspec (2.14.1)
816
rspec-core (~> 2.14.0)
@@ -18,6 +26,6 @@ PLATFORMS
1826
ruby
1927

2028
DEPENDENCIES
21-
configparser (~> 0.1.2)
2229
rake
2330
rspec
31+
softlayer_api!

lib/softlayer/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# - <tt>$SL_API_BASE_URL</tt>- The default URL used to access the SoftLayer API. This defaults to the value of <tt>SoftLayer::API_PUBLIC_ENDPOINT</tt>
3232
#
3333
module SoftLayer
34-
VERSION = "2.0.0" # version history in the CHANGELOG.textile file at the root of the source
34+
VERSION = "2.0.1" # version history in the CHANGELOG.textile file at the root of the source
3535

3636
# The base URL of the SoftLayer API's REST-like endpoints available to the public internet.
3737
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3/'

softlayer_api.gemspec

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Gem::Specification.new do |s|
3737
s.require_paths = ["lib"]
3838

3939
s.has_rdoc = true
40+
s.add_dependency 'configparser', '~> 0.1.2'
4041
s.add_runtime_dependency 'json', '~> 1.8', '>= 1.8.1'
4142
s.add_development_dependency 'rake'
43+
s.add_development_dependency 'rspec'
4244
end

0 commit comments

Comments
 (0)