forked from segar23/aria_billing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aria_api.gemspec
29 lines (24 loc) · 1.01 KB
/
aria_api.gemspec
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
28
29
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "aria_api/version"
Gem::Specification.new do |s|
s.name = "aria_api"
s.version = AriaApi::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Aria Systems, Inc"]
s.email = ["[email protected]"]
s.homepage = ""
s.summary = %q{Ruby Wrap for the aria subscriptions and billing system}
s.description = %q{Ruby Wrap for the aria subscriptions and billing system}
s.rubyforge_project = "aria_api"
s.files = `git ls-files`.split("\n").delete_if { |f| f.match /vcr_cassettes/ }
s.test_files = `git ls-files -- spec/*`.split("\n").delete_if { |f| f.match /vcr_cassettes/ }
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency "httparty"
s.add_dependency "json"
s.add_dependency "savon", "~> 2.1.0"
["rake", "rspec", "vcr", "webmock"].each do |dev_dependency|
s.add_dependency dev_dependency
end
end