mxhero-api 0.0.1 → 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.
- data/Gemfile.lock +1 -1
- data/lib/{mxhero_api.rb → mxhero-api.rb} +0 -0
- data/mxhero-api.gemspec +4 -1
- metadata +16 -4
data/Gemfile.lock
CHANGED
|
File without changes
|
data/mxhero-api.gemspec
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
|
|
1
2
|
Gem::Specification.new do |gem|
|
|
2
3
|
gem.name = 'mxhero-api'
|
|
3
|
-
gem.version = '0.
|
|
4
|
+
gem.version = '0.1.1'
|
|
4
5
|
gem.authors = ['Maximiliano Dello Russo']
|
|
5
6
|
gem.email = ['maxidr@mxhero.com']
|
|
6
7
|
gem.summary = %q{A MxHero API client for ruby}
|
|
@@ -8,6 +9,8 @@ Gem::Specification.new do |gem|
|
|
|
8
9
|
gem.homepage = 'http://github.com/mxhero/mxhero-api'
|
|
9
10
|
|
|
10
11
|
gem.files = `git ls-files`.split($\)
|
|
12
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
13
|
+
gem.require_paths = ["lib"]
|
|
11
14
|
|
|
12
15
|
gem.add_development_dependency('vcr', '2.5.0')
|
|
13
16
|
gem.add_development_dependency('webmock', '1.11.0')
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mxhero-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-07-
|
|
12
|
+
date: 2013-07-12 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: vcr
|
|
@@ -70,7 +70,7 @@ files:
|
|
|
70
70
|
- Gemfile.lock
|
|
71
71
|
- README.md
|
|
72
72
|
- Rakefile
|
|
73
|
-
- lib/
|
|
73
|
+
- lib/mxhero-api.rb
|
|
74
74
|
- mxhero-api.gemspec
|
|
75
75
|
- test/fixtures/api/create_rule_alredy_exist.yml
|
|
76
76
|
- test/fixtures/api/create_rule_for_domain.yml
|
|
@@ -108,5 +108,17 @@ rubygems_version: 1.8.23
|
|
|
108
108
|
signing_key:
|
|
109
109
|
specification_version: 3
|
|
110
110
|
summary: A MxHero API client for ruby
|
|
111
|
-
test_files:
|
|
111
|
+
test_files:
|
|
112
|
+
- test/fixtures/api/create_rule_alredy_exist.yml
|
|
113
|
+
- test/fixtures/api/create_rule_for_domain.yml
|
|
114
|
+
- test/fixtures/api/create_rule_success.yml
|
|
115
|
+
- test/fixtures/api/domain_rule.yml
|
|
116
|
+
- test/fixtures/api/domains.yml
|
|
117
|
+
- test/fixtures/api/rules_for_domain.yml
|
|
118
|
+
- test/fixtures/api/service_create_footer.yml
|
|
119
|
+
- test/fixtures/api/service_footer_for_domain.yml
|
|
120
|
+
- test/fixtures/api/update_rule.yml
|
|
121
|
+
- test/helper.rb
|
|
122
|
+
- test/test_mxhero_api.rb
|
|
123
|
+
- test/test_mxhero_api_response.rb
|
|
112
124
|
has_rdoc:
|