azure 0.0.0 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +3 -0
- data/Gemfile.lock +36 -0
- data/README.md +3 -0
- data/Rakefile +81 -0
- data/azure.gemspec +20 -9
- data/lib/azure.rb +4 -0
- data/lib/azure/atom.rb +170 -0
- data/lib/azure/auth.rb +29 -0
- data/lib/azure/blobs.rb +620 -0
- data/lib/azure/blobs/blob.rb +360 -0
- data/lib/azure/blobs/container.rb +209 -0
- data/lib/azure/blobs/service.rb +396 -0
- data/lib/azure/blobs/shared_access_signature.rb +84 -0
- data/lib/azure/blobs/uri.rb +60 -0
- data/lib/azure/configuration.rb +121 -0
- data/lib/azure/core/auth/shared_key.rb +95 -0
- data/lib/azure/core/auth/shared_key_lite.rb +34 -0
- data/lib/azure/core/collection.rb +118 -0
- data/lib/azure/core/service.rb +43 -0
- data/lib/azure/core/signer.rb +32 -0
- data/lib/azure/core/utils/interval.rb +97 -0
- data/lib/azure/core/utils/queryable.rb +74 -0
- data/lib/azure/core/utils/storage_service_properties.rb +83 -0
- data/lib/azure/core/utils/string.rb +59 -0
- data/lib/azure/error.rb +72 -0
- data/lib/azure/queues.rb +272 -0
- data/lib/azure/queues/message.rb +174 -0
- data/lib/azure/queues/queue.rb +187 -0
- data/lib/azure/queues/service.rb +263 -0
- data/lib/azure/queues/service_properties.rb +152 -0
- data/lib/azure/queues/uri.rb +78 -0
- data/lib/azure/request.rb +102 -0
- data/lib/azure/response.rb +93 -0
- data/lib/azure/service_bus.rb +4 -0
- data/lib/azure/service_bus/auth/authorizer.rb +22 -0
- data/lib/azure/service_bus/auth/uri.rb +52 -0
- data/lib/azure/service_bus/auth/wrap.rb +37 -0
- data/lib/azure/service_bus/auth/wrap_service.rb +76 -0
- data/lib/azure/service_bus/auth/wrap_token.rb +45 -0
- data/lib/azure/service_bus/auth/wrap_token_manager.rb +46 -0
- data/lib/azure/service_bus/brokered_message.rb +139 -0
- data/lib/azure/service_bus/brokered_message_serializer.rb +113 -0
- data/lib/azure/service_bus/queues.rb +194 -0
- data/lib/azure/service_bus/queues/queue.rb +100 -0
- data/lib/azure/service_bus/queues/queue_serializer.rb +51 -0
- data/lib/azure/service_bus/queues/service.rb +154 -0
- data/lib/azure/service_bus/queues/uri.rb +80 -0
- data/lib/azure/service_bus/rules.rb +110 -0
- data/lib/azure/service_bus/rules/rule.rb +97 -0
- data/lib/azure/service_bus/rules/service.rb +122 -0
- data/lib/azure/service_bus/rules/uri.rb +39 -0
- data/lib/azure/service_bus/service_bus_service.rb +22 -0
- data/lib/azure/service_bus/subscriptions.rb +170 -0
- data/lib/azure/service_bus/subscriptions/service.rb +133 -0
- data/lib/azure/service_bus/subscriptions/subscription.rb +164 -0
- data/lib/azure/service_bus/subscriptions/subscription_serializer.rb +74 -0
- data/lib/azure/service_bus/subscriptions/uri.rb +71 -0
- data/lib/azure/service_bus/topics.rb +120 -0
- data/lib/azure/service_bus/topics/service.rb +98 -0
- data/lib/azure/service_bus/topics/topic.rb +122 -0
- data/lib/azure/service_bus/topics/topic_serializer.rb +44 -0
- data/lib/azure/service_bus/topics/uri.rb +58 -0
- data/lib/azure/service_runtime/client/goal_state_pipe_monitor.rb +21 -0
- data/lib/azure/service_runtime/client/goal_state_protocol.rb +18 -0
- data/lib/azure/service_runtime/client/runtime_client.rb +135 -0
- data/lib/azure/service_runtime/deployment.rb +24 -0
- data/lib/azure/service_runtime/local_resource.rb +15 -0
- data/lib/azure/service_runtime/role.rb +17 -0
- data/lib/azure/service_runtime/role_environment.rb +206 -0
- data/lib/azure/service_runtime/role_environment_change.rb +32 -0
- data/lib/azure/service_runtime/role_instance.rb +35 -0
- data/lib/azure/service_runtime/role_instance_endpoint.rb +14 -0
- data/lib/azure/tables.rb +215 -0
- data/lib/azure/tables/auth/shared_key.rb +71 -0
- data/lib/azure/tables/auth/shared_key_lite.rb +30 -0
- data/lib/azure/tables/entities_collection.rb +66 -0
- data/lib/azure/tables/entity.rb +127 -0
- data/lib/azure/tables/service.rb +211 -0
- data/lib/azure/tables/table.rb +129 -0
- data/lib/azure/tables/tables_collection.rb +62 -0
- data/lib/azure/tables/types.rb +65 -0
- data/lib/azure/tables/uri.rb +62 -0
- data/test/fixtures/32px-fulls-black.jpg +0 -0
- data/test/fixtures/all_containers.xml +20 -0
- data/test/fixtures/all_tables.xml +22 -0
- data/test/fixtures/create_table_response_entry.xml +15 -0
- data/test/fixtures/error.xml +5 -0
- data/test/fixtures/insert_entity_response_entry.xml +25 -0
- data/test/fixtures/messages.xml +12 -0
- data/test/fixtures/query_entities_empty_response.xml +7 -0
- data/test/fixtures/query_entities_response.xml +45 -0
- data/test/fixtures/queue_service_properties.xml +22 -0
- data/test/fixtures/queue_service_properties_original.xml +19 -0
- data/test/fixtures/queues.xml +16 -0
- data/test/fixtures/sb_default_create_queue_response.xml +23 -0
- data/test/fixtures/sb_default_create_topic_response.xml +18 -0
- data/test/fixtures/sb_get_access_token_response.txt +1 -0
- data/test/fixtures/sb_queues_runtime_peek_message_response_headers.txt +9 -0
- data/test/integration/blobs/auth_test.rb +19 -0
- data/test/integration/blobs/blob_test.rb +61 -0
- data/test/integration/blobs/clear_page_range_test.rb +19 -0
- data/test/integration/blobs/copy_test.rb +33 -0
- data/test/integration/blobs/create_blobs_test.rb +51 -0
- data/test/integration/blobs/create_container_test.rb +13 -0
- data/test/integration/blobs/create_snapshot_test.rb +17 -0
- data/test/integration/blobs/delete_blob_snapshots_test.rb +19 -0
- data/test/integration/blobs/delete_blobs_test.rb +25 -0
- data/test/integration/blobs/delete_container_test.rb +24 -0
- data/test/integration/blobs/delete_snapshot_test.rb +17 -0
- data/test/integration/blobs/get_blob_snapshot_test.rb +18 -0
- data/test/integration/blobs/get_blobs_test.rb +31 -0
- data/test/integration/blobs/get_page_range_test.rb +19 -0
- data/test/integration/blobs/list_blobs_test.rb +39 -0
- data/test/integration/blobs/list_containers_test.rb +28 -0
- data/test/integration/blobs/manage_blob_leases_test.rb +45 -0
- data/test/integration/blobs/manage_blob_metadata_test.rb +51 -0
- data/test/integration/blobs/manage_blob_properties_test.rb +25 -0
- data/test/integration/blobs/manage_blob_service_properties_test.rb +38 -0
- data/test/integration/blobs/manage_container_metadata_test.rb +46 -0
- data/test/integration/blobs/manage_container_permissions_test.rb +17 -0
- data/test/integration/blobs/update_page_range_test.rb +20 -0
- data/test/integration/queues/clear_messages_test.rb +22 -0
- data/test/integration/queues/create_queue_test.rb +13 -0
- data/test/integration/queues/delete_message_test.rb +42 -0
- data/test/integration/queues/delete_queue_test.rb +24 -0
- data/test/integration/queues/get_messages_test.rb +39 -0
- data/test/integration/queues/list_queues_test.rb +43 -0
- data/test/integration/queues/manage_queue_metadata_test.rb +45 -0
- data/test/integration/queues/manage_queue_service_properties_test.rb +27 -0
- data/test/integration/queues/peek_messages_test.rb +55 -0
- data/test/integration/queues/put_message_test.rb +31 -0
- data/test/integration/queues/update_message_test.rb +46 -0
- data/test/integration/service_bus/auth_test.rb +18 -0
- data/test/integration/service_bus/queues/create_queue_test.rb +25 -0
- data/test/integration/service_bus/queues/delete_message_from_queue_test.rb +29 -0
- data/test/integration/service_bus/queues/delete_queue_test.rb +25 -0
- data/test/integration/service_bus/queues/get_queue_test.rb +23 -0
- data/test/integration/service_bus/queues/list_queues_test.rb +39 -0
- data/test/integration/service_bus/queues/peek_message_from_queue_test.rb +34 -0
- data/test/integration/service_bus/queues/read_and_delete_message_from_queue_test.rb +31 -0
- data/test/integration/service_bus/queues/send_message_to_queue_test.rb +22 -0
- data/test/integration/service_bus/queues/unlock_message_from_queue_test.rb +36 -0
- data/test/integration/service_bus/rules/create_rule_test.rb +19 -0
- data/test/integration/service_bus/rules/delete_rule_test.rb +17 -0
- data/test/integration/service_bus/rules/get_rule_test.rb +21 -0
- data/test/integration/service_bus/rules/list_rules_test.rb +24 -0
- data/test/integration/service_bus/rules/rule_test.rb +16 -0
- data/test/integration/service_bus/subscriptions/create_subscription_test.rb +25 -0
- data/test/integration/service_bus/subscriptions/delete_message_from_subscription_test.rb +31 -0
- data/test/integration/service_bus/subscriptions/delete_subscription_test.rb +30 -0
- data/test/integration/service_bus/subscriptions/fetch_subscription_test.rb +28 -0
- data/test/integration/service_bus/subscriptions/list_subscriptions_test.rb +23 -0
- data/test/integration/service_bus/subscriptions/peek_lock_message_from_subscription_test.rb +42 -0
- data/test/integration/service_bus/subscriptions/read_delete_message_from_subscription_test.rb +36 -0
- data/test/integration/service_bus/subscriptions/subscription_test.rb +31 -0
- data/test/integration/service_bus/subscriptions/unlock_message_from_subscription_test.rb +43 -0
- data/test/integration/service_bus/topics/create_topic_test.rb +25 -0
- data/test/integration/service_bus/topics/delete_topic_test.rb +25 -0
- data/test/integration/service_bus/topics/get_topic_test.rb +23 -0
- data/test/integration/service_bus/topics/list_topics_test.rb +39 -0
- data/test/integration/service_bus/topics/send_message_to_topic_test.rb +23 -0
- data/test/integration/tables/auth_test.rb +29 -0
- data/test/integration/tables/creating_tables_test.rb +16 -0
- data/test/integration/tables/delete_entity_test.rb +39 -0
- data/test/integration/tables/deleting_table_test.rb +22 -0
- data/test/integration/tables/insert_entity_test.rb +23 -0
- data/test/integration/tables/merge_entity_test.rb +28 -0
- data/test/integration/tables/query_entities_test.rb +131 -0
- data/test/integration/tables/query_tables_test.rb +63 -0
- data/test/integration/tables/update_entity_test.rb +54 -0
- data/test/integration/test_helper.rb +14 -0
- data/test/support/blobs.rb +12 -0
- data/test/support/env.rb +5 -0
- data/test/support/fixtures.rb +22 -0
- data/test/support/stubs.rb +28 -0
- data/test/support/table_names.rb +44 -0
- data/test/test_helper.rb +10 -0
- data/test/unit/atom_test.rb +58 -0
- data/test/unit/auth_test.rb +24 -0
- data/test/unit/blobs/blob_test.rb +5 -0
- data/test/unit/blobs/container_test.rb +67 -0
- data/test/unit/blobs/service_test.rb +17 -0
- data/test/unit/blobs/shared_access_signature_test.rb +66 -0
- data/test/unit/blobs_test.rb +156 -0
- data/test/unit/core/service_test.rb +57 -0
- data/test/unit/core/utils/interval_test.rb +70 -0
- data/test/unit/core/utils/queryable_test.rb +69 -0
- data/test/unit/core/utils/storage_service_properties_test.rb +66 -0
- data/test/unit/error_test.rb +39 -0
- data/test/unit/queues/message_test.rb +40 -0
- data/test/unit/queues/queue_test.rb +64 -0
- data/test/unit/queues/service_properties.rb +35 -0
- data/test/unit/request_test.rb +38 -0
- data/test/unit/response_test.rb +43 -0
- data/test/unit/service_bus/auth/authorizer_test.rb +27 -0
- data/test/unit/service_bus/auth/wrap_token_test.rb +28 -0
- data/test/unit/service_bus/queues/queue_test.rb +38 -0
- data/test/unit/service_bus/topics/topic_test.rb +33 -0
- data/test/unit/service_runtime/data/goalstate.xml +9 -0
- data/test/unit/service_runtime/data/roleenvironmentdata.xml +29 -0
- data/test/unit/service_runtime/data/runtime.xml +6 -0
- data/test/unit/service_runtime/role_environment_test.rb +144 -0
- data/test/unit/tables/auth/shared_key_lite_test.rb +39 -0
- data/test/unit/tables/auth/shared_key_test.rb +45 -0
- data/test/unit/tables/entities_collection_test.rb +39 -0
- data/test/unit/tables/entity_test.rb +72 -0
- data/test/unit/tables/table_test.rb +57 -0
- data/test/unit/tables_test.rb +302 -0
- data/test/unit/types_test.rb +67 -0
- metadata +310 -47
- data/LICENSE +0 -0
- data/README +0 -0
@@ -0,0 +1,67 @@
|
|
1
|
+
require "test_helper"
|
2
|
+
require "azure/tables/types"
|
3
|
+
|
4
|
+
describe Azure::Tables::Types do
|
5
|
+
subject do
|
6
|
+
Azure::Tables::Types
|
7
|
+
end
|
8
|
+
|
9
|
+
describe ".type_of" do
|
10
|
+
def self.returns_type_for(type, value)
|
11
|
+
it "returns #{type} for #{value.inspect}" do
|
12
|
+
subject.type_of(value).must_equal type
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
returns_type_for "Edm.Double", 2.2
|
17
|
+
|
18
|
+
returns_type_for "Edm.Int32", 10
|
19
|
+
returns_type_for "Edm.Int32", 2147483647
|
20
|
+
returns_type_for "Edm.Int32", -2147483647
|
21
|
+
returns_type_for "Edm.Int64", 2147483648
|
22
|
+
returns_type_for "Edm.Int64", -2147483648
|
23
|
+
|
24
|
+
returns_type_for "Edm.String", "test"
|
25
|
+
|
26
|
+
returns_type_for "Edm.DateTime", Time.now
|
27
|
+
returns_type_for "Edm.DateTime", Time.now.to_date
|
28
|
+
returns_type_for "Edm.DateTime", Time.now.to_datetime
|
29
|
+
|
30
|
+
returns_type_for "Edm.Boolean", true
|
31
|
+
returns_type_for "Edm.Boolean", false
|
32
|
+
|
33
|
+
returns_type_for "Edm.Guid", Azure::Tables::GUID.new("guid")
|
34
|
+
end
|
35
|
+
|
36
|
+
describe ".cast" do
|
37
|
+
def self.casts_from_type(value, type, result)
|
38
|
+
it "converts #{value.inspect} (as #{type}) to #{result.inspect}" do
|
39
|
+
subject.cast(value, type).must_equal result
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
casts_from_type "2.2", "Edm.Double", 2.2
|
44
|
+
|
45
|
+
casts_from_type "10", "Edm.Int32", 10
|
46
|
+
casts_from_type "2147483647", "Edm.Int32", 2147483647
|
47
|
+
casts_from_type "-2147483647", "Edm.Int32", -2147483647
|
48
|
+
casts_from_type "2147483648", "Edm.Int64", 2147483648
|
49
|
+
casts_from_type "-2147483648", "Edm.Int64", -2147483648
|
50
|
+
|
51
|
+
casts_from_type "test", "Edm.String", "test"
|
52
|
+
casts_from_type "test", nil, "test"
|
53
|
+
|
54
|
+
casts_from_type "18:00", "Edm.DateTime", Time.parse("18:00")
|
55
|
+
casts_from_type "2012-10-10", "Edm.DateTime", Time.parse("2012-10-10")
|
56
|
+
casts_from_type "2012-10-10T18:00Z", "Edm.DateTime", Time.parse("2012-10-10T18:00Z")
|
57
|
+
|
58
|
+
casts_from_type "true", "Edm.Boolean", true
|
59
|
+
casts_from_type "True", "Edm.Boolean", true
|
60
|
+
casts_from_type "TRUE", "Edm.Boolean", true
|
61
|
+
casts_from_type "false", "Edm.Boolean", false
|
62
|
+
casts_from_type "False", "Edm.Boolean", false
|
63
|
+
casts_from_type "FALSE", "Edm.Boolean", false
|
64
|
+
|
65
|
+
casts_from_type "guid", "Edm.Guid", Azure::Tables::GUID.new("guid")
|
66
|
+
end
|
67
|
+
end
|
metadata
CHANGED
@@ -1,69 +1,332 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: azure
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 0
|
8
|
-
- 0
|
9
|
-
- 0
|
10
|
-
version: 0.0.0
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
13
|
-
-
|
7
|
+
authors:
|
8
|
+
- Microsoft
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
date: 2012-05-02 00:00:00 -03:00
|
12
|
+
date: 2012-06-27 00:00:00.000000000 -07:00
|
19
13
|
default_executable:
|
20
|
-
dependencies:
|
21
|
-
|
22
|
-
|
23
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: uuid
|
17
|
+
requirement: &2165777220 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '2.0'
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: *2165777220
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: ratom
|
28
|
+
requirement: &2165775460 !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.6'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: *2165775460
|
37
|
+
- !ruby/object:Gem::Dependency
|
38
|
+
name: nokogiri
|
39
|
+
requirement: &2165775000 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
41
|
+
requirements:
|
42
|
+
- - ~>
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: '1.5'
|
45
|
+
type: :runtime
|
46
|
+
prerelease: false
|
47
|
+
version_requirements: *2165775000
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: mime-types
|
50
|
+
requirement: &2165774540 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '1.0'
|
56
|
+
type: :runtime
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *2165774540
|
59
|
+
- !ruby/object:Gem::Dependency
|
60
|
+
name: rake
|
61
|
+
requirement: &2165774160 !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
type: :development
|
68
|
+
prerelease: false
|
69
|
+
version_requirements: *2165774160
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: minitest
|
72
|
+
requirement: &2165772920 !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: '3.0'
|
78
|
+
type: :development
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *2165772920
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: em-minitest-spec
|
83
|
+
requirement: &2165771820 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ! '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
type: :development
|
90
|
+
prerelease: false
|
91
|
+
version_requirements: *2165771820
|
92
|
+
description: Services and ruby SDKs to access the Windows Azure platform.
|
93
|
+
email: azure@microsoft.com
|
24
94
|
executables: []
|
25
|
-
|
26
95
|
extensions: []
|
27
|
-
|
28
96
|
extra_rdoc_files: []
|
29
|
-
|
30
|
-
|
31
|
-
-
|
32
|
-
-
|
97
|
+
files:
|
98
|
+
- Gemfile
|
99
|
+
- Gemfile.lock
|
100
|
+
- README.md
|
101
|
+
- Rakefile
|
33
102
|
- azure.gemspec
|
103
|
+
- lib/azure.rb
|
104
|
+
- lib/azure/atom.rb
|
105
|
+
- lib/azure/auth.rb
|
106
|
+
- lib/azure/blobs.rb
|
107
|
+
- lib/azure/blobs/blob.rb
|
108
|
+
- lib/azure/blobs/container.rb
|
109
|
+
- lib/azure/blobs/service.rb
|
110
|
+
- lib/azure/blobs/shared_access_signature.rb
|
111
|
+
- lib/azure/blobs/uri.rb
|
112
|
+
- lib/azure/configuration.rb
|
113
|
+
- lib/azure/core/auth/shared_key.rb
|
114
|
+
- lib/azure/core/auth/shared_key_lite.rb
|
115
|
+
- lib/azure/core/collection.rb
|
116
|
+
- lib/azure/core/service.rb
|
117
|
+
- lib/azure/core/signer.rb
|
118
|
+
- lib/azure/core/utils/interval.rb
|
119
|
+
- lib/azure/core/utils/queryable.rb
|
120
|
+
- lib/azure/core/utils/storage_service_properties.rb
|
121
|
+
- lib/azure/core/utils/string.rb
|
122
|
+
- lib/azure/error.rb
|
123
|
+
- lib/azure/queues.rb
|
124
|
+
- lib/azure/queues/message.rb
|
125
|
+
- lib/azure/queues/queue.rb
|
126
|
+
- lib/azure/queues/service.rb
|
127
|
+
- lib/azure/queues/service_properties.rb
|
128
|
+
- lib/azure/queues/uri.rb
|
129
|
+
- lib/azure/request.rb
|
130
|
+
- lib/azure/response.rb
|
131
|
+
- lib/azure/service_bus.rb
|
132
|
+
- lib/azure/service_bus/auth/authorizer.rb
|
133
|
+
- lib/azure/service_bus/auth/uri.rb
|
134
|
+
- lib/azure/service_bus/auth/wrap.rb
|
135
|
+
- lib/azure/service_bus/auth/wrap_service.rb
|
136
|
+
- lib/azure/service_bus/auth/wrap_token.rb
|
137
|
+
- lib/azure/service_bus/auth/wrap_token_manager.rb
|
138
|
+
- lib/azure/service_bus/brokered_message.rb
|
139
|
+
- lib/azure/service_bus/brokered_message_serializer.rb
|
140
|
+
- lib/azure/service_bus/queues.rb
|
141
|
+
- lib/azure/service_bus/queues/queue.rb
|
142
|
+
- lib/azure/service_bus/queues/queue_serializer.rb
|
143
|
+
- lib/azure/service_bus/queues/service.rb
|
144
|
+
- lib/azure/service_bus/queues/uri.rb
|
145
|
+
- lib/azure/service_bus/rules.rb
|
146
|
+
- lib/azure/service_bus/rules/rule.rb
|
147
|
+
- lib/azure/service_bus/rules/service.rb
|
148
|
+
- lib/azure/service_bus/rules/uri.rb
|
149
|
+
- lib/azure/service_bus/service_bus_service.rb
|
150
|
+
- lib/azure/service_bus/subscriptions.rb
|
151
|
+
- lib/azure/service_bus/subscriptions/service.rb
|
152
|
+
- lib/azure/service_bus/subscriptions/subscription.rb
|
153
|
+
- lib/azure/service_bus/subscriptions/subscription_serializer.rb
|
154
|
+
- lib/azure/service_bus/subscriptions/uri.rb
|
155
|
+
- lib/azure/service_bus/topics.rb
|
156
|
+
- lib/azure/service_bus/topics/service.rb
|
157
|
+
- lib/azure/service_bus/topics/topic.rb
|
158
|
+
- lib/azure/service_bus/topics/topic_serializer.rb
|
159
|
+
- lib/azure/service_bus/topics/uri.rb
|
160
|
+
- lib/azure/service_runtime/client/goal_state_pipe_monitor.rb
|
161
|
+
- lib/azure/service_runtime/client/goal_state_protocol.rb
|
162
|
+
- lib/azure/service_runtime/client/runtime_client.rb
|
163
|
+
- lib/azure/service_runtime/deployment.rb
|
164
|
+
- lib/azure/service_runtime/local_resource.rb
|
165
|
+
- lib/azure/service_runtime/role.rb
|
166
|
+
- lib/azure/service_runtime/role_environment.rb
|
167
|
+
- lib/azure/service_runtime/role_environment_change.rb
|
168
|
+
- lib/azure/service_runtime/role_instance.rb
|
169
|
+
- lib/azure/service_runtime/role_instance_endpoint.rb
|
170
|
+
- lib/azure/tables.rb
|
171
|
+
- lib/azure/tables/auth/shared_key.rb
|
172
|
+
- lib/azure/tables/auth/shared_key_lite.rb
|
173
|
+
- lib/azure/tables/entities_collection.rb
|
174
|
+
- lib/azure/tables/entity.rb
|
175
|
+
- lib/azure/tables/service.rb
|
176
|
+
- lib/azure/tables/table.rb
|
177
|
+
- lib/azure/tables/tables_collection.rb
|
178
|
+
- lib/azure/tables/types.rb
|
179
|
+
- lib/azure/tables/uri.rb
|
180
|
+
- test/fixtures/32px-fulls-black.jpg
|
181
|
+
- test/fixtures/all_containers.xml
|
182
|
+
- test/fixtures/all_tables.xml
|
183
|
+
- test/fixtures/create_table_response_entry.xml
|
184
|
+
- test/fixtures/error.xml
|
185
|
+
- test/fixtures/insert_entity_response_entry.xml
|
186
|
+
- test/fixtures/messages.xml
|
187
|
+
- test/fixtures/query_entities_empty_response.xml
|
188
|
+
- test/fixtures/query_entities_response.xml
|
189
|
+
- test/fixtures/queue_service_properties.xml
|
190
|
+
- test/fixtures/queue_service_properties_original.xml
|
191
|
+
- test/fixtures/queues.xml
|
192
|
+
- test/fixtures/sb_default_create_queue_response.xml
|
193
|
+
- test/fixtures/sb_default_create_topic_response.xml
|
194
|
+
- test/fixtures/sb_get_access_token_response.txt
|
195
|
+
- test/fixtures/sb_queues_runtime_peek_message_response_headers.txt
|
196
|
+
- test/integration/blobs/auth_test.rb
|
197
|
+
- test/integration/blobs/blob_test.rb
|
198
|
+
- test/integration/blobs/clear_page_range_test.rb
|
199
|
+
- test/integration/blobs/copy_test.rb
|
200
|
+
- test/integration/blobs/create_blobs_test.rb
|
201
|
+
- test/integration/blobs/create_container_test.rb
|
202
|
+
- test/integration/blobs/create_snapshot_test.rb
|
203
|
+
- test/integration/blobs/delete_blob_snapshots_test.rb
|
204
|
+
- test/integration/blobs/delete_blobs_test.rb
|
205
|
+
- test/integration/blobs/delete_container_test.rb
|
206
|
+
- test/integration/blobs/delete_snapshot_test.rb
|
207
|
+
- test/integration/blobs/get_blob_snapshot_test.rb
|
208
|
+
- test/integration/blobs/get_blobs_test.rb
|
209
|
+
- test/integration/blobs/get_page_range_test.rb
|
210
|
+
- test/integration/blobs/list_blobs_test.rb
|
211
|
+
- test/integration/blobs/list_containers_test.rb
|
212
|
+
- test/integration/blobs/manage_blob_leases_test.rb
|
213
|
+
- test/integration/blobs/manage_blob_metadata_test.rb
|
214
|
+
- test/integration/blobs/manage_blob_properties_test.rb
|
215
|
+
- test/integration/blobs/manage_blob_service_properties_test.rb
|
216
|
+
- test/integration/blobs/manage_container_metadata_test.rb
|
217
|
+
- test/integration/blobs/manage_container_permissions_test.rb
|
218
|
+
- test/integration/blobs/update_page_range_test.rb
|
219
|
+
- test/integration/queues/clear_messages_test.rb
|
220
|
+
- test/integration/queues/create_queue_test.rb
|
221
|
+
- test/integration/queues/delete_message_test.rb
|
222
|
+
- test/integration/queues/delete_queue_test.rb
|
223
|
+
- test/integration/queues/get_messages_test.rb
|
224
|
+
- test/integration/queues/list_queues_test.rb
|
225
|
+
- test/integration/queues/manage_queue_metadata_test.rb
|
226
|
+
- test/integration/queues/manage_queue_service_properties_test.rb
|
227
|
+
- test/integration/queues/peek_messages_test.rb
|
228
|
+
- test/integration/queues/put_message_test.rb
|
229
|
+
- test/integration/queues/update_message_test.rb
|
230
|
+
- test/integration/service_bus/auth_test.rb
|
231
|
+
- test/integration/service_bus/queues/create_queue_test.rb
|
232
|
+
- test/integration/service_bus/queues/delete_message_from_queue_test.rb
|
233
|
+
- test/integration/service_bus/queues/delete_queue_test.rb
|
234
|
+
- test/integration/service_bus/queues/get_queue_test.rb
|
235
|
+
- test/integration/service_bus/queues/list_queues_test.rb
|
236
|
+
- test/integration/service_bus/queues/peek_message_from_queue_test.rb
|
237
|
+
- test/integration/service_bus/queues/read_and_delete_message_from_queue_test.rb
|
238
|
+
- test/integration/service_bus/queues/send_message_to_queue_test.rb
|
239
|
+
- test/integration/service_bus/queues/unlock_message_from_queue_test.rb
|
240
|
+
- test/integration/service_bus/rules/create_rule_test.rb
|
241
|
+
- test/integration/service_bus/rules/delete_rule_test.rb
|
242
|
+
- test/integration/service_bus/rules/get_rule_test.rb
|
243
|
+
- test/integration/service_bus/rules/list_rules_test.rb
|
244
|
+
- test/integration/service_bus/rules/rule_test.rb
|
245
|
+
- test/integration/service_bus/subscriptions/create_subscription_test.rb
|
246
|
+
- test/integration/service_bus/subscriptions/delete_message_from_subscription_test.rb
|
247
|
+
- test/integration/service_bus/subscriptions/delete_subscription_test.rb
|
248
|
+
- test/integration/service_bus/subscriptions/fetch_subscription_test.rb
|
249
|
+
- test/integration/service_bus/subscriptions/list_subscriptions_test.rb
|
250
|
+
- test/integration/service_bus/subscriptions/peek_lock_message_from_subscription_test.rb
|
251
|
+
- test/integration/service_bus/subscriptions/read_delete_message_from_subscription_test.rb
|
252
|
+
- test/integration/service_bus/subscriptions/subscription_test.rb
|
253
|
+
- test/integration/service_bus/subscriptions/unlock_message_from_subscription_test.rb
|
254
|
+
- test/integration/service_bus/topics/create_topic_test.rb
|
255
|
+
- test/integration/service_bus/topics/delete_topic_test.rb
|
256
|
+
- test/integration/service_bus/topics/get_topic_test.rb
|
257
|
+
- test/integration/service_bus/topics/list_topics_test.rb
|
258
|
+
- test/integration/service_bus/topics/send_message_to_topic_test.rb
|
259
|
+
- test/integration/tables/auth_test.rb
|
260
|
+
- test/integration/tables/creating_tables_test.rb
|
261
|
+
- test/integration/tables/delete_entity_test.rb
|
262
|
+
- test/integration/tables/deleting_table_test.rb
|
263
|
+
- test/integration/tables/insert_entity_test.rb
|
264
|
+
- test/integration/tables/merge_entity_test.rb
|
265
|
+
- test/integration/tables/query_entities_test.rb
|
266
|
+
- test/integration/tables/query_tables_test.rb
|
267
|
+
- test/integration/tables/update_entity_test.rb
|
268
|
+
- test/integration/test_helper.rb
|
269
|
+
- test/support/blobs.rb
|
270
|
+
- test/support/env.rb
|
271
|
+
- test/support/fixtures.rb
|
272
|
+
- test/support/stubs.rb
|
273
|
+
- test/support/table_names.rb
|
274
|
+
- test/test_helper.rb
|
275
|
+
- test/unit/atom_test.rb
|
276
|
+
- test/unit/auth_test.rb
|
277
|
+
- test/unit/blobs/blob_test.rb
|
278
|
+
- test/unit/blobs/container_test.rb
|
279
|
+
- test/unit/blobs/service_test.rb
|
280
|
+
- test/unit/blobs/shared_access_signature_test.rb
|
281
|
+
- test/unit/blobs_test.rb
|
282
|
+
- test/unit/core/service_test.rb
|
283
|
+
- test/unit/core/utils/interval_test.rb
|
284
|
+
- test/unit/core/utils/queryable_test.rb
|
285
|
+
- test/unit/core/utils/storage_service_properties_test.rb
|
286
|
+
- test/unit/error_test.rb
|
287
|
+
- test/unit/queues/message_test.rb
|
288
|
+
- test/unit/queues/queue_test.rb
|
289
|
+
- test/unit/queues/service_properties.rb
|
290
|
+
- test/unit/request_test.rb
|
291
|
+
- test/unit/response_test.rb
|
292
|
+
- test/unit/service_bus/auth/authorizer_test.rb
|
293
|
+
- test/unit/service_bus/auth/wrap_token_test.rb
|
294
|
+
- test/unit/service_bus/queues/queue_test.rb
|
295
|
+
- test/unit/service_bus/topics/topic_test.rb
|
296
|
+
- test/unit/service_runtime/data/goalstate.xml
|
297
|
+
- test/unit/service_runtime/data/roleenvironmentdata.xml
|
298
|
+
- test/unit/service_runtime/data/runtime.xml
|
299
|
+
- test/unit/service_runtime/role_environment_test.rb
|
300
|
+
- test/unit/tables/auth/shared_key_lite_test.rb
|
301
|
+
- test/unit/tables/auth/shared_key_test.rb
|
302
|
+
- test/unit/tables/entities_collection_test.rb
|
303
|
+
- test/unit/tables/entity_test.rb
|
304
|
+
- test/unit/tables/table_test.rb
|
305
|
+
- test/unit/tables_test.rb
|
306
|
+
- test/unit/types_test.rb
|
34
307
|
has_rdoc: true
|
35
|
-
homepage:
|
308
|
+
homepage: http://azure.com
|
36
309
|
licenses: []
|
37
|
-
|
38
310
|
post_install_message:
|
39
311
|
rdoc_options: []
|
40
|
-
|
41
|
-
require_paths:
|
312
|
+
require_paths:
|
42
313
|
- lib
|
43
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
314
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
44
315
|
none: false
|
45
|
-
requirements:
|
46
|
-
- -
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
|
49
|
-
|
50
|
-
- 0
|
51
|
-
version: "0"
|
52
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
316
|
+
requirements:
|
317
|
+
- - ! '>='
|
318
|
+
- !ruby/object:Gem::Version
|
319
|
+
version: '0'
|
320
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
53
321
|
none: false
|
54
|
-
requirements:
|
55
|
-
- -
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
|
58
|
-
segments:
|
59
|
-
- 0
|
60
|
-
version: "0"
|
322
|
+
requirements:
|
323
|
+
- - ! '>='
|
324
|
+
- !ruby/object:Gem::Version
|
325
|
+
version: '0'
|
61
326
|
requirements: []
|
62
|
-
|
63
327
|
rubyforge_project:
|
64
|
-
rubygems_version: 1.
|
328
|
+
rubygems_version: 1.6.2
|
65
329
|
signing_key:
|
66
330
|
specification_version: 3
|
67
|
-
summary: Windows Azure
|
331
|
+
summary: Implementation of several Windows Azure SDKs in ruby.
|
68
332
|
test_files: []
|
69
|
-
|
data/LICENSE
DELETED
File without changes
|
data/README
DELETED
File without changes
|