-
-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add/upadate methods to Cloudflare API v1.1.1
* Deprecate zone_ips method * Remove zone_grab method * Fix service_mode in rec_new and rec_edit methods, service_mode parameter takes boolean values * Add full_zone_set API * Remove host_child_new method * Add sub_status parameter to zone_list method
- Loading branch information
Showing
4 changed files
with
62 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,23 +3,23 @@ $LOAD_PATH.push File.expand_path("../lib", __FILE__) | |
require 'cloudflare/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'cloudflare' | ||
s.version = CloudFlare::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
s.name = 'cloudflare' | ||
s.version = CloudFlare::VERSION | ||
s.platform = Gem::Platform::RUBY | ||
|
||
s.description = 'A Ruby wrapper for the CloudFlare API.' | ||
s.summary = 'A Ruby wrapper for the CloudFlare API.' | ||
s.authors = ['Marcin Prokop'] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/b4k3r/cloudflare' | ||
s.licenses = ['MIT'] | ||
s.description = 'A Ruby wrapper for the CloudFlare API.' | ||
s.summary = 'A Ruby wrapper for the CloudFlare API.' | ||
s.authors = ['Marcin Prokop'] | ||
s.email = '[email protected]' | ||
s.homepage = 'https://github.com/b4k3r/cloudflare' | ||
s.licenses = ['MIT'] | ||
|
||
s.files = `git ls-files`.split("\n") | ||
s.test_files = ['test/test_cloudflare.rb'] | ||
s.rdoc_options = ['--main', 'README.md', '--charset=UTF-8'] | ||
s.extra_rdoc_files = ['README.md', 'LICENSE'] | ||
s.files = `git ls-files`.split("\n") | ||
s.test_files = ['test/test_cloudflare.rb'] | ||
s.rdoc_options = ['--main', 'README.md', '--charset=UTF-8'] | ||
s.extra_rdoc_files = ['README.md', 'LICENSE'] | ||
|
||
s.required_ruby_version = '>= 1.9.0' | ||
s.add_runtime_dependency 'json', '~> 1' | ||
s.add_development_dependency 'rake' | ||
s.required_ruby_version = '>= 1.9.0' | ||
s.add_runtime_dependency 'json', '~> 1' | ||
s.add_development_dependency 'rake' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,5 +19,5 @@ | |
# THE SOFTWARE. | ||
|
||
module CloudFlare | ||
VERSION = '2.0.3' | ||
VERSION = '2.1.0' | ||
end |