public
Fork of mojombo/chronic
Description: "Chronic is a pure Ruby natural language date parser." + improvements, corrections, speedups, and additions
Homepage: http://chronic.rubyforge.org
Clone URL: git://github.com/jf/chronic.git
Search Repo:
commit  b3382e7beab6f04d77366630be20a2c4cc55842e
tree    ce8f58cecb1e085c07df30d6757a37fab99dd8e0
parent  7de50dc8b16d413b3f1d47887c30b8b873e032d0
chronic / chronic.gemspec
100644 21 lines (20 sloc) 0.594 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'
 
SPEC = Gem::Specification.new do |s|
  s.name = 'chronic'
  s.version = '0.1.5'
  s.author = 'Tom Preston-Werner'
  s.email = 'tom@rubyisawesome.com'
  s.homepage = 'http://chronic.rubyforge.org'
  s.platform = Gem::Platform::RUBY
  s.summary = "A natural language date parser"
  candidates = Dir["{lib,test}/**/*"]
  s.files = candidates.delete_if do |item|
    item.include?('.svn')
  end
  s.require_path = "lib"
  s.autorequire = "chronic"
  s.test_file = "test/suite.rb"
  s.has_rdoc = true
  s.extra_rdoc_files = ['README']
  s.rdoc_options << '--main' << 'README'
end