-
Notifications
You must be signed in to change notification settings - Fork 465
/
chronic.gemspec
25 lines (22 loc) · 960 Bytes
/
chronic.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
$:.unshift File.expand_path('../lib', __FILE__)
require 'chronic/version'
Gem::Specification.new do |s|
s.name = 'chronic'
s.version = Chronic::VERSION
s.rubyforge_project = 'chronic'
s.summary = 'Natural language date/time parsing.'
s.description = 'Chronic is a natural language date/time parser written in pure Ruby.'
s.authors = ['Tom Preston-Werner', 'Lee Jarvis']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://github.com/mojombo/chronic'
s.license = 'MIT'
s.rdoc_options = ['--charset=UTF-8']
s.extra_rdoc_files = %w[README.md HISTORY.md LICENSE]
s.files = `git ls-files`.split($/)
s.test_files = `git ls-files -- test`.split($/)
s.add_runtime_dependency 'numerizer', '~> 0.2'
s.add_development_dependency 'rake', '>= 10'
s.add_development_dependency 'simplecov', '~> 0'
s.add_development_dependency 'minitest', '~> 5.0'
s.add_development_dependency 'activesupport', '>= 4.0'
end