forked from mdsol/farscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
farscape.gemspec
25 lines (22 loc) · 943 Bytes
/
farscape.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
$LOAD_PATH.unshift 'lib'
require 'farscape/version'
Gem::Specification.new do |s|
s.name = 'farscape'
s.version = Farscape::VERSION::STRING
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'It shoots through wormholes and takes you to unknown places in the universe!'
s.homepage = 'https://github.com//farscape'
s.email = ''
s.authors = ['Mark W. Foster']
s.files = ['lib/**/*', 'spec/**/*', 'tasks/**/*', '[A-Z]*'].map { |glob| Dir[glob] }.inject([], &:+)
s.require_paths = ['lib']
s.rdoc_options = ['--main', 'README.md']
s.description = <<-DESC
Farscape is a library that simplifies consuming Hypermedia API responses.
DESC
s.add_dependency('rake')
s.add_dependency('activesupport', '>= 3.2.0')
s.add_dependency('addressable', '~> 2.3.0')
s.add_dependency('dice_bag', '~> 0.7.0')
s.add_dependency('faraday', '~> 0.8.8')
end