public
Fork of mojombo/chronic
Description: Chronic is a pure Ruby natural language date parser.
Homepage: http://chronic.rubyforge.org
Clone URL: git://github.com/technoweenie/chronic.git
technoweenie (author)
Sat Mar 22 17:16:00 -0700 2008
commit  b593ed54d0196dd44d272d7f8b0c97c4e018142a
tree    8435dfbd66b263db33cef200ff1f4270f3618f66
parent  9979458a4c4e8010d3c3c84b616a28f128bc7f82
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