chronic.gemspec in chronic-0.3.0 vs chronic.gemspec in chronic-0.4.0
- old
+ new
@@ -1,24 +1,17 @@
Gem::Specification.new do |s|
- s.specification_version = 2 if s.respond_to? :specification_version=
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.rubygems_version = '1.3.5'
-
s.name = 'chronic'
- s.version = '0.3.0'
- s.date = '2010-10-22'
+ s.version = '0.4.0'
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"]
- s.email = 'tom@mojombo.com'
+ s.authors = ["Tom Preston-Werner", "Lee Jarvis"]
+ s.email = ['tom@mojombo.com', 'lee@jarvis.co']
s.homepage = 'http://github.com/mojombo/chronic'
- s.require_paths = %w[lib]
-
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md HISTORY.md LICENSE]
# = MANIFEST =
s.files = %w[
@@ -31,11 +24,12 @@
chronic.gemspec
lib/chronic.rb
lib/chronic/chronic.rb
lib/chronic/grabber.rb
lib/chronic/handlers.rb
- lib/chronic/numerizer/numerizer.rb
+ lib/chronic/mini_date.rb
+ lib/chronic/numerizer.rb
lib/chronic/ordinal.rb
lib/chronic/pointer.rb
lib/chronic/repeater.rb
lib/chronic/repeaters/repeater_day.rb
lib/chronic/repeaters/repeater_day_name.rb
@@ -53,10 +47,13 @@
lib/chronic/repeaters/repeater_weekday.rb
lib/chronic/repeaters/repeater_weekend.rb
lib/chronic/repeaters/repeater_year.rb
lib/chronic/scalar.rb
lib/chronic/separator.rb
+ lib/chronic/span.rb
+ lib/chronic/tag.rb
lib/chronic/time_zone.rb
+ lib/chronic/token.rb
test/helper.rb
test/test_Chronic.rb
test/test_DaylightSavings.rb
test/test_Handler.rb
test/test_Numerizer.rb