fog 1.13.0 → 1.14.0
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.
- data/.travis.yml +16 -1
- data/Gemfile.1.8.7 +10 -0
- data/README.md +23 -2
- data/changelog.txt +14 -0
- data/fog.gemspec +2 -5
- data/lib/fog/version.rb +1 -1
- data/lib/tasks/changelog_task.rb +1 -0
- metadata +13 -12
data/.travis.yml
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
language: ruby
|
2
2
|
|
3
|
+
gemfile:
|
4
|
+
- Gemfile
|
5
|
+
- Gemfile.1.8.7
|
6
|
+
|
3
7
|
rvm:
|
4
8
|
- 1.8.7
|
5
9
|
- 1.9.2
|
@@ -8,9 +12,20 @@ rvm:
|
|
8
12
|
|
9
13
|
script: bundle exec rake travis
|
10
14
|
|
15
|
+
matrix:
|
16
|
+
exclude:
|
17
|
+
- rvm: 1.8.7
|
18
|
+
gemfile: Gemfile
|
19
|
+
- rvm: 1.9.2
|
20
|
+
gemfile: Gemfile.1.8.7
|
21
|
+
- rvm: 1.9.3
|
22
|
+
gemfile: Gemfile.1.8.7
|
23
|
+
- rvm: 2.0.0
|
24
|
+
gemfile: Gemfile.1.8.7
|
25
|
+
|
11
26
|
notifications:
|
12
27
|
email: false
|
13
|
-
irc:
|
28
|
+
irc:
|
14
29
|
channels:
|
15
30
|
- "irc.freenode.org#ruby-fog"
|
16
31
|
template:
|
data/Gemfile.1.8.7
ADDED
data/README.md
CHANGED
@@ -15,7 +15,7 @@ fog is the Ruby cloud services library, top to bottom:
|
|
15
15
|
|
16
16
|
sudo gem install fog
|
17
17
|
|
18
|
-
Now type `fog` to try stuff, confident that fog will let you know what to do.
|
18
|
+
Now type `fog` to try stuff, confident that fog will let you know what to do.
|
19
19
|
Here is an example of wading through server creation for Amazon Elastic Compute Cloud:
|
20
20
|
|
21
21
|
>> server = Compute[:aws].servers.create
|
@@ -27,10 +27,31 @@ Here is an example of wading through server creation for Amazon Elastic Compute
|
|
27
27
|
>> server.destroy # cleanup after yourself or regret it, trust me
|
28
28
|
true
|
29
29
|
|
30
|
+
## Ruby 1.8.7
|
31
|
+
|
32
|
+
The maintainers of this project, in concert with the maintainers of Ruby,
|
33
|
+
**strongly** recommend using the latest patchlevel of Ruby 1.9.2 or later.
|
34
|
+
[As of July 1, 2013, Ruby 1.8.7 is no longer officially maintained.][retired]
|
35
|
+
This means fixes will no longer be provided, even for known security
|
36
|
+
vulnerabilities.
|
37
|
+
|
38
|
+
[retired]: http://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/
|
39
|
+
|
40
|
+
With this caveat, if you wish to bundle `fog` into your application on Ruby
|
41
|
+
1.8.7, you must add the following line to your `Gemfile`.
|
42
|
+
|
43
|
+
gem 'nokogiri', '~>1.5.0'
|
44
|
+
|
45
|
+
Also, ensure that you are using LibXML version 2.8.0, since there is an
|
46
|
+
[issue with LibXML version 2.9.0][issue829] ([and 2.9.1][issue904]).
|
47
|
+
|
48
|
+
[issue829]: https://github.com/sparklemotion/nokogiri/issues/829
|
49
|
+
[issue904]: https://github.com/sparklemotion/nokogiri/issues/904
|
50
|
+
|
30
51
|
## Collections
|
31
52
|
|
32
53
|
A high level interface to each cloud is provided through collections, such as `images` and `servers`.
|
33
|
-
You can see a list of available collections by calling `collections` on the connection object.
|
54
|
+
You can see a list of available collections by calling `collections` on the connection object.
|
34
55
|
You can try it out using the `fog` command:
|
35
56
|
|
36
57
|
>> Compute[:aws].collections
|
data/changelog.txt
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
1.14.0 07/19/2013 b9f1659ebd45c84db011c71b53cc581a1b7ac7e1
|
2
|
+
==========================================================
|
3
|
+
|
4
|
+
Stats! { 'collaborators' => 49, 'downloads' => 2713501, 'forks' => 860, 'open_issues' => 155, 'watchers' => 2634 }
|
5
|
+
|
6
|
+
MVP! Erik Michaels-Ober
|
7
|
+
|
8
|
+
[misc]
|
9
|
+
Create separate Gemfile for Ruby 1.8.7. thanks Erik Michaels-Ober
|
10
|
+
Update nokogiri dependency to version ~>1.5. thanks Erik Michaels-Ober
|
11
|
+
Add note about installing on Ruby 1.8.7 [ci skip]. thanks Erik Michaels-Ober
|
12
|
+
add coveralls to Gemfile.1.8.7. thanks geemus
|
13
|
+
|
14
|
+
|
1
15
|
1.13.0 07/19/2013 7f5b0b4931d8fe85596f67013ef285fd0b8335e0
|
2
16
|
==========================================================
|
3
17
|
|
data/fog.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
6
6
|
## If your rubyforge_project name is different, then edit it and comment out
|
7
7
|
## the sub! line in the Rakefile
|
8
8
|
s.name = 'fog'
|
9
|
-
s.version = '1.
|
9
|
+
s.version = '1.14.0'
|
10
10
|
s.date = '2013-07-19'
|
11
11
|
s.rubyforge_project = 'fog'
|
12
12
|
|
@@ -48,12 +48,9 @@ Gem::Specification.new do |s|
|
|
48
48
|
s.add_dependency('mime-types')
|
49
49
|
s.add_dependency('net-scp', '~>1.1')
|
50
50
|
s.add_dependency('net-ssh', '>=2.1.3')
|
51
|
+
s.add_dependency('nokogiri', '~>1.5')
|
51
52
|
s.add_dependency('ruby-hmac')
|
52
53
|
|
53
|
-
# Nokogiri >= 1.6 drops support for Ruby 1.8.7 so should not be used
|
54
|
-
# See https://github.com/fog/fog/issues/1878 for more details
|
55
|
-
s.add_dependency('nokogiri', '~>1.5.0')
|
56
|
-
|
57
54
|
## List your development dependencies here. Development dependencies are
|
58
55
|
## those that are only needed during development
|
59
56
|
s.add_development_dependency('jekyll')
|
data/lib/fog/version.rb
CHANGED
data/lib/tasks/changelog_task.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fog
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.14.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -124,37 +124,37 @@ dependencies:
|
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: 2.1.3
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
|
-
name:
|
127
|
+
name: nokogiri
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|
129
129
|
none: false
|
130
130
|
requirements:
|
131
|
-
- -
|
131
|
+
- - ~>
|
132
132
|
- !ruby/object:Gem::Version
|
133
|
-
version: '
|
133
|
+
version: '1.5'
|
134
134
|
type: :runtime
|
135
135
|
prerelease: false
|
136
136
|
version_requirements: !ruby/object:Gem::Requirement
|
137
137
|
none: false
|
138
138
|
requirements:
|
139
|
-
- -
|
139
|
+
- - ~>
|
140
140
|
- !ruby/object:Gem::Version
|
141
|
-
version: '
|
141
|
+
version: '1.5'
|
142
142
|
- !ruby/object:Gem::Dependency
|
143
|
-
name:
|
143
|
+
name: ruby-hmac
|
144
144
|
requirement: !ruby/object:Gem::Requirement
|
145
145
|
none: false
|
146
146
|
requirements:
|
147
|
-
- -
|
147
|
+
- - ! '>='
|
148
148
|
- !ruby/object:Gem::Version
|
149
|
-
version:
|
149
|
+
version: '0'
|
150
150
|
type: :runtime
|
151
151
|
prerelease: false
|
152
152
|
version_requirements: !ruby/object:Gem::Requirement
|
153
153
|
none: false
|
154
154
|
requirements:
|
155
|
-
- -
|
155
|
+
- - ! '>='
|
156
156
|
- !ruby/object:Gem::Version
|
157
|
-
version:
|
157
|
+
version: '0'
|
158
158
|
- !ruby/object:Gem::Dependency
|
159
159
|
name: jekyll
|
160
160
|
requirement: !ruby/object:Gem::Requirement
|
@@ -346,6 +346,7 @@ files:
|
|
346
346
|
- .irbrc
|
347
347
|
- .travis.yml
|
348
348
|
- Gemfile
|
349
|
+
- Gemfile.1.8.7
|
349
350
|
- README.md
|
350
351
|
- RELEASE.md
|
351
352
|
- Rakefile
|
@@ -4559,7 +4560,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
4559
4560
|
version: '0'
|
4560
4561
|
segments:
|
4561
4562
|
- 0
|
4562
|
-
hash:
|
4563
|
+
hash: -1665164994209771948
|
4563
4564
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
4564
4565
|
none: false
|
4565
4566
|
requirements:
|