forked from phaxio/phaxio-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphaxio.gemspec
More file actions
21 lines (18 loc) · 1.14 KB
/
phaxio.gemspec
File metadata and controls
21 lines (18 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/phaxio/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Sean Behan", "Brett Chalupa"]
gem.email = ["inbox@seanbehan.com", "brettchalupa@gmail.com"]
gem.description = %q{A Ruby Gem for interacting with Phaxio's JSON API. Currently, not all of the Phaxio API calls are supported. The essentials are in place and more will be coming with future versions of this gem.}
gem.summary = %q{A Ruby Gem for interacting with Phaxio's JSON API}
gem.homepage = "http://www.gristmill.io/posts/17-introducing-the-phaxio-gem-an-easy-way-to-use-phaxio-with-ruby"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "phaxio"
gem.require_paths = ["lib"]
gem.version = Phaxio::VERSION
gem.add_runtime_dependency "httmultiparty", "~> 0.3.8"
gem.add_development_dependency "fakeweb", "~> 1.3.0"
gem.add_development_dependency "rake", "~> 0.9.2.2"
end