forked from phaxio/phaxio-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphaxio.gemspec
23 lines (20 loc) · 932 Bytes
/
phaxio.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/phaxio/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Julien Negrotto"]
gem.email = ["[email protected]"]
gem.description = %q{Official ruby gem for interacting with Phaxio's API.}
gem.summary = %q{Official ruby gem for interacting with Phaxio's API.}
gem.homepage = "https://github.com/phaxio/phaxio-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.licenses = ['MIT']
gem.required_ruby_version = '>= 2.0'
gem.add_dependency 'faraday', '~> 0.10'
gem.add_dependency 'mime-types', '~> 3.0'
gem.add_dependency 'activesupport'
end