azure-contrib 0.0.4 → 0.0.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3408ec217379118490c2b1bbdbb5533867147f0
4
- data.tar.gz: 292322bf83ed08ca6fcde67cf4121443ce9c32a2
3
+ metadata.gz: 79d1a25193ce98780233e25782630302921bb83e
4
+ data.tar.gz: 3b1ddddfcd1657da4d8ff1239d24909360cc0248
5
5
  SHA512:
6
- metadata.gz: 21affeb234d163474e4574651be05e3006171f14283d4677b5a554d9345062e747eb08fe17a67d0bc007a2e7ada39692792b841cc7b882eb002eb84e05e40a58
7
- data.tar.gz: 765ac7f5785440d9da055912709797333e73cba0e025a37b16cd0562cbea1fffde69d23bdce6d0a64b2e14fdbcc3036197b49fafced98f7fe733e6fd1076de4a
6
+ metadata.gz: 653680a637a6a50a13947980340479d237e22f0825d2e5cf78e759fe5e95c891e68598d70c7e9c30c322480a88efd17095d5a30cbeb718086c5d2d9beff881d3
7
+ data.tar.gz: 48ae55f885b476450ad80f5b70da5d27e03d00b24f5b13d077247b476f94cd04dd79b7a3e47e14e5402698360c3dd23f0fea541e445653ef0bfb28b6546f055b
@@ -1,7 +1,7 @@
1
1
  # coding: utf-8
2
2
  lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'azure/contrib/version'
4
+ require 'azure-contrib/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "azure-contrib"
File without changes
@@ -1,5 +1,5 @@
1
1
  module Azure
2
2
  module Contrib
3
- VERSION = "0.0.4"
3
+ VERSION = "0.0.5"
4
4
  end
5
5
  end
@@ -0,0 +1,12 @@
1
+ require 'azure'
2
+ require File.join(File.dirname(__FILE__), 'azure-contrib', 'version')
3
+
4
+
5
+ module Azure
6
+ module Contrib
7
+ # Your code goes here...
8
+ end
9
+ end
10
+
11
+ require File.join(File.dirname(__FILE__), 'azure-contrib', 'shared_access_signature')
12
+ require File.join(File.dirname(__FILE__), 'azure-contrib', 'blob_service')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure-contrib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Michael
@@ -107,10 +107,10 @@ files:
107
107
  - README.md
108
108
  - Rakefile
109
109
  - azure-contrib.gemspec
110
- - lib/azure/blob_service.rb
111
- - lib/azure/contrib.rb
112
- - lib/azure/contrib/auth/shared_access_signature.rb
113
- - lib/azure/contrib/version.rb
110
+ - lib/azure-contrib.rb
111
+ - lib/azure-contrib/blob_service.rb
112
+ - lib/azure-contrib/shared_access_signature.rb
113
+ - lib/azure-contrib/version.rb
114
114
  homepage: ''
115
115
  licenses:
116
116
  - MIT
data/lib/azure/contrib.rb DELETED
@@ -1,12 +0,0 @@
1
- require 'azure'
2
- require "azure/contrib/version"
3
-
4
-
5
- module Azure
6
- module Contrib
7
- # Your code goes here...
8
- end
9
- end
10
-
11
- require "azure/contrib/auth/shared_access_signature"
12
- require File.join(File.dirname(__FILE__), 'blob_service')