akamai_api 0.1.0 → 0.1.1

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: 05749989fb5d5d5044e107dcb316294da2527c5d
4
- data.tar.gz: 8f92d043cacc95919066b09dcf8c04f04c7b3983
3
+ metadata.gz: e808bab22100f62956f5006c1ba29d1fb22577db
4
+ data.tar.gz: bfa20069a4011e136c8d6a81b983a9c6ec4599c2
5
5
  SHA512:
6
- metadata.gz: 288616d2301a49c4b7a0aa2c2efc3c3d3169403d1d86df57486ea3f2d39741bc11ec854a4ec653e1bb0a61f0b69083e566b5dcc88da8dc049b03cec7ada6f971
7
- data.tar.gz: 1255972a4a6a76673fa630736783c4ba5f1d5706afe61c3f7e087ca9cdccf158e7944c194049a470bafeec34e76799c8197d61ddb8a1f289d3edefa948d9c41f
6
+ metadata.gz: 28c2e41dea359a7194fba6eebd36a4e0283e2d4e410126da8d51e5a0605ee5bcd15eeb230014ee8ec4365f9e3579c3f5ad9239b1b58e7724ffc998ad98f4d298
7
+ data.tar.gz: ed23b76abba84de88cdff67d0af10b64ecadbd56e9c93165f6d99db6b9d43c8efb01a4a0464fde468905191b418f73821762754991d0c12e91256a5b51fbdb59
data/README.md CHANGED
@@ -194,4 +194,4 @@ You can specify the following optional arguments in args: file_name, notes, vers
194
194
  })
195
195
  ```
196
196
 
197
- - Run specs with `thor spec`
197
+ - Run specs with `thor spec` or use `guard`
data/akamai_api.gemspec CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
10
10
  gem.email = ["nicola@nicolaracco.com"]
11
11
  gem.description = %q{Ruby toolkit to work with Akamai Content Control Utility API}
12
12
  gem.summary = %q{Ruby toolkit to work with Akamai Content Control Utility API}
13
- gem.homepage = ""
13
+ gem.homepage = 'https://github.com/nicolaracco/akamai_api'
14
14
 
15
15
  gem.files = `git ls-files`.split($/)
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -18,9 +18,9 @@ Gem::Specification.new do |gem|
18
18
  gem.require_paths = ["lib"]
19
19
  gem.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
20
20
 
21
- gem.add_dependency 'activesupport', '>= 2.3.9', '< 4.0'
21
+ gem.add_dependency 'activesupport', '>= 2.3.9', '< 5.0'
22
22
  gem.add_dependency 'thor', '>= 0.14.0', '< 2.0'
23
- gem.add_dependency 'savon', '~> 2.2.0'
23
+ gem.add_dependency 'savon', '~> 2.3.0'
24
24
  gem.add_dependency 'builder', '~> 3.0'
25
25
 
26
26
  gem.add_development_dependency 'rspec', '~> 2.11'
@@ -43,6 +43,7 @@ module AkamaiApi
43
43
  :notes => options[:notes],
44
44
  :property_exact_match => !options[:no_exact_match],
45
45
  :property_type => options[:property_type],
46
+ :emails => options[:emails]
46
47
  }
47
48
  id = AkamaiApi::EccuRequest.publish_file property, source, args
48
49
  puts 'Request correctly published. Details:'
@@ -1,3 +1,3 @@
1
1
  module AkamaiApi
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/akamai_api.rb CHANGED
@@ -1,9 +1,9 @@
1
1
  require 'savon'
2
2
 
3
3
  %w(version cp_code soap_body ccu_response ccu eccu_request).each do |file|
4
- require File.expand_path "../akamai_api/#{file}", __FILE__
4
+ require "akamai_api/#{file}"
5
5
  end
6
6
 
7
7
  module AkamaiApi
8
8
  def self.config; @config ||= { :auth => ['', ''], :log => false }; end
9
- end
9
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akamai_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicola Racco
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-25 00:00:00.000000000 Z
11
+ date: 2014-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 2.3.9
20
20
  - - <
21
21
  - !ruby/object:Gem::Version
22
- version: '4.0'
22
+ version: '5.0'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 2.3.9
30
30
  - - <
31
31
  - !ruby/object:Gem::Version
32
- version: '4.0'
32
+ version: '5.0'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: thor
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -56,14 +56,14 @@ dependencies:
56
56
  requirements:
57
57
  - - ~>
58
58
  - !ruby/object:Gem::Version
59
- version: 2.2.0
59
+ version: 2.3.0
60
60
  type: :runtime
61
61
  prerelease: false
62
62
  version_requirements: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ~>
65
65
  - !ruby/object:Gem::Version
66
- version: 2.2.0
66
+ version: 2.3.0
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: builder
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -159,7 +159,7 @@ files:
159
159
  - wsdls/ccuapi.wsdl
160
160
  - wsdls/cpcode.wsdl
161
161
  - wsdls/eccu.wsdl
162
- homepage: ''
162
+ homepage: https://github.com/nicolaracco/akamai_api
163
163
  licenses: []
164
164
  metadata: {}
165
165
  post_install_message:
@@ -178,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
178
  version: '0'
179
179
  requirements: []
180
180
  rubyforge_project:
181
- rubygems_version: 2.0.5
181
+ rubygems_version: 2.2.2
182
182
  signing_key:
183
183
  specification_version: 4
184
184
  summary: Ruby toolkit to work with Akamai Content Control Utility API
@@ -201,3 +201,4 @@ test_files:
201
201
  - spec/lib/akamai_api/soap_body_spec.rb
202
202
  - spec/spec_helper.rb
203
203
  - spec/support/savon_backports.rb
204
+ has_rdoc: