forked from mdsol/crichton-share
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrichton.gemspec
30 lines (27 loc) · 1.1 KB
/
crichton.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
30
$LOAD_PATH.unshift 'lib'
require 'crichton/version'
Gem::Specification.new do |s|
s.name = 'crichton'
s.version = Crichton::VERSION::STRING
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'It has the knowledge of Hypermedia from the Ancients.'
s.homepage = 'http://github.com//crichton'
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.executables = ['rdlint']
s.description = <<-DESC
Crichton is a library to simplify implementing Hypermedia APIs.
DESC
s.add_dependency('rake')
s.add_dependency('builder', '>= 3.0.0')
s.add_dependency('nokogiri', '>= 1.6.0')
s.add_dependency('activesupport', '>= 3.2.0')
s.add_dependency('addressable', '~> 2.3.0')
s.add_dependency('dice_bag', '~> 0.8')
s.add_dependency('diffy', '~> 3.0.1')
s.add_dependency('colorize', '~> 0.6.0')
s.add_dependency('i18n', '>= 0.6.5')
end