forked from spreedly/spreedly-core-ruby
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathspreedly-core-ruby.gemspec
More file actions
27 lines (23 loc) · 1.26 KB
/
spreedly-core-ruby.gemspec
File metadata and controls
27 lines (23 loc) · 1.26 KB
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
26
27
$LOAD_PATH.unshift 'lib'
require "spreedly-core-ruby/version"
Gem::Specification.new do |s|
s.name = "spreedly-core-ruby"
s.version = SpreedlyCore::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = "Ruby interface for Spreedly Core"
s.homepage = "http://github.com/spreedly/spreedly-core-ruby"
s.email = "support@spreedly.com"
s.authors = [ "Spreedly", "403 Labs" ]
s.description = "Spreedly Core is a cloud service that allows you to store credit cards and run transactions against them, enabling you to accept payments on your website while avoiding all liability and PCI compliance requirements."
s.files = %w( README.md Rakefile LICENSE )
s.files += Dir.glob("lib/**/*")
s.files += Dir.glob("bin/**/*")
s.files += Dir.glob("man/**/*")
s.files += Dir.glob("test/**/*")
s.add_runtime_dependency 'httparty', '~> 0.0'
s.add_runtime_dependency 'activesupport', '~> 3.0'
s.add_runtime_dependency 'builder'
s.add_development_dependency "ruby-debug#{RUBY_VERSION =~ /1.9.\d/ ? "19" : ""}"
s.add_development_dependency 'rake', '0.8.7'
s.add_development_dependency 'webmock', '~> 1.6.2'
end