forked from socketry/cloudflare
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcloudflare.gemspec
More file actions
25 lines (21 loc) · 850 Bytes
/
cloudflare.gemspec
File metadata and controls
25 lines (21 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$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.description = 'A Ruby wrapper for the CloudFlare API.'
s.summary = 'A Ruby wrapper for the CloudFlare API.'
s.authors = ['Marcin Prokop']
s.email = 'marcin@prokop.co'
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.required_ruby_version = '>= 1.9.0'
s.add_runtime_dependency 'json', '~> 1'
s.add_development_dependency 'rake'
end