eventual 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +3 -2
- data/VERSION +1 -1
- metadata +20 -6
data/Rakefile
CHANGED
@@ -5,12 +5,13 @@ begin
|
|
5
5
|
require 'jeweler'
|
6
6
|
Jeweler::Tasks.new do |gem|
|
7
7
|
gem.name = "eventual"
|
8
|
-
gem.summary = %Q{ Reconocimiento de
|
9
|
-
gem.description = %Q{ Reconocimiento de
|
8
|
+
gem.summary = %Q{ Reconocimiento de fechas y periodos en lenguaje natural. Natural language date and period parsing, currently only in spanish. }
|
9
|
+
gem.description = %Q{ Reconocimiento de fechas y periodos en lenguaje natural. Natural language date and period parsing, currently only in spanish. }
|
10
10
|
gem.email = "macarui@gmail.com"
|
11
11
|
gem.homepage = "http://github.com/maca/eventual"
|
12
12
|
gem.authors = ["Macario Ortega"]
|
13
13
|
gem.post_install_message = %{ \n\n***********************************\nPor favor tenga en cuenta que el API ha cambiado, consulte la página del proyecto: http://github.com/maca/eventual. English implementation is due.\n***********************************\n\n }
|
14
|
+
gem.add_dependency "treetop", ">= 1.4.5"
|
14
15
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
15
16
|
end
|
16
17
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.1
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 5
|
8
|
-
-
|
9
|
-
version: 0.5.
|
8
|
+
- 1
|
9
|
+
version: 0.5.1
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Macario Ortega
|
@@ -18,9 +18,23 @@ date: 2010-07-15 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
|
-
name:
|
21
|
+
name: treetop
|
22
22
|
prerelease: false
|
23
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 1
|
29
|
+
- 4
|
30
|
+
- 5
|
31
|
+
version: 1.4.5
|
32
|
+
type: :runtime
|
33
|
+
version_requirements: *id001
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: rspec
|
36
|
+
prerelease: false
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
24
38
|
requirements:
|
25
39
|
- - ">="
|
26
40
|
- !ruby/object:Gem::Version
|
@@ -30,8 +44,8 @@ dependencies:
|
|
30
44
|
- 9
|
31
45
|
version: 1.2.9
|
32
46
|
type: :development
|
33
|
-
version_requirements: *
|
34
|
-
description: " Reconocimiento de
|
47
|
+
version_requirements: *id002
|
48
|
+
description: " Reconocimiento de fechas y periodos en lenguaje natural. Natural language date and period parsing, currently only in spanish. "
|
35
49
|
email: macarui@gmail.com
|
36
50
|
executables: []
|
37
51
|
|
@@ -86,7 +100,7 @@ rubyforge_project:
|
|
86
100
|
rubygems_version: 1.3.6
|
87
101
|
signing_key:
|
88
102
|
specification_version: 3
|
89
|
-
summary: Reconocimiento de
|
103
|
+
summary: Reconocimiento de fechas y periodos en lenguaje natural. Natural language date and period parsing, currently only in spanish.
|
90
104
|
test_files:
|
91
105
|
- spec/es_eventual_spec.rb
|
92
106
|
- spec/spec_helper.rb
|