mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
Release 0.3.20
This commit is contained in:
parent
00171dfa8a
commit
50d6131d03
3 changed files with 21 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
fog (0.3.19)
|
||||
fog (0.3.20)
|
||||
builder
|
||||
excon (>= 0.2.4)
|
||||
formatador (>= 0.0.15)
|
||||
|
|
22
fog.gemspec
22
fog.gemspec
|
@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|||
## If your rubyforge_project name is different, then edit it and comment out
|
||||
## the sub! line in the Rakefile
|
||||
s.name = 'fog'
|
||||
s.version = '0.3.19'
|
||||
s.date = '2010-11-16'
|
||||
s.version = '0.3.20'
|
||||
s.date = '2010-11-17'
|
||||
s.rubyforge_project = 'fog'
|
||||
|
||||
## Make sure your summary is short. The description may be as long
|
||||
|
@ -140,10 +140,13 @@ Gem::Specification.new do |s|
|
|||
lib/fog/aws/parsers/elb/enable_availability_zones_for_load_balancer.rb
|
||||
lib/fog/aws/parsers/elb/register_instances_with_load_balancer.rb
|
||||
lib/fog/aws/parsers/iam/basic.rb
|
||||
lib/fog/aws/parsers/iam/create_access_key.rb
|
||||
lib/fog/aws/parsers/iam/create_group.rb
|
||||
lib/fog/aws/parsers/iam/create_user.rb
|
||||
lib/fog/aws/parsers/iam/list_group_policies.rb
|
||||
lib/fog/aws/parsers/iam/list_access_keys.rb
|
||||
lib/fog/aws/parsers/iam/list_groups.rb
|
||||
lib/fog/aws/parsers/iam/list_policies.rb
|
||||
lib/fog/aws/parsers/iam/list_users.rb
|
||||
lib/fog/aws/parsers/simpledb/basic.rb
|
||||
lib/fog/aws/parsers/simpledb/domain_metadata.rb
|
||||
lib/fog/aws/parsers/simpledb/get_attributes.rb
|
||||
|
@ -218,15 +221,23 @@ Gem::Specification.new do |s|
|
|||
lib/fog/aws/requests/elb/enable_availability_zones_for_load_balancer.rb
|
||||
lib/fog/aws/requests/elb/register_instances_with_load_balancer.rb
|
||||
lib/fog/aws/requests/iam/add_user_to_group.rb
|
||||
lib/fog/aws/requests/iam/create_access_key.rb
|
||||
lib/fog/aws/requests/iam/create_group.rb
|
||||
lib/fog/aws/requests/iam/create_user.rb
|
||||
lib/fog/aws/requests/iam/delete_access_key.rb
|
||||
lib/fog/aws/requests/iam/delete_group.rb
|
||||
lib/fog/aws/requests/iam/delete_group_policy.rb
|
||||
lib/fog/aws/requests/iam/delete_user.rb
|
||||
lib/fog/aws/requests/iam/delete_user_policy.rb
|
||||
lib/fog/aws/requests/iam/list_access_keys.rb
|
||||
lib/fog/aws/requests/iam/list_group_policies.rb
|
||||
lib/fog/aws/requests/iam/list_groups.rb
|
||||
lib/fog/aws/requests/iam/list_user_policies.rb
|
||||
lib/fog/aws/requests/iam/list_users.rb
|
||||
lib/fog/aws/requests/iam/put_group_policy.rb
|
||||
lib/fog/aws/requests/iam/put_user_policy.rb
|
||||
lib/fog/aws/requests/iam/remove_user_from_group.rb
|
||||
lib/fog/aws/requests/iam/update_access_key.rb
|
||||
lib/fog/aws/requests/simpledb/batch_put_attributes.rb
|
||||
lib/fog/aws/requests/simpledb/create_domain.rb
|
||||
lib/fog/aws/requests/simpledb/delete_attributes.rb
|
||||
|
@ -730,6 +741,11 @@ Gem::Specification.new do |s|
|
|||
tests/aws/requests/compute/snapshot_tests.rb
|
||||
tests/aws/requests/compute/tag_tests.rb
|
||||
tests/aws/requests/compute/volume_tests.rb
|
||||
tests/aws/requests/iam/access_key_tests.rb
|
||||
tests/aws/requests/iam/group_policy_tests.rb
|
||||
tests/aws/requests/iam/group_tests.rb
|
||||
tests/aws/requests/iam/user_policy_tests.rb
|
||||
tests/aws/requests/iam/user_tests.rb
|
||||
tests/aws/requests/storage/bucket_tests.rb
|
||||
tests/aws/requests/storage/multipart_upload_tests.rb
|
||||
tests/aws/requests/storage/object_tests.rb
|
||||
|
|
|
@ -18,7 +18,7 @@ module Fog
|
|||
@mocking = false
|
||||
|
||||
unless const_defined?(:VERSION)
|
||||
VERSION = '0.3.19'
|
||||
VERSION = '0.3.20'
|
||||
end
|
||||
|
||||
module Mock
|
||||
|
|
Loading…
Reference in a new issue