virgild-resumetools 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/{grammars → resumetools/grammars}/resume.treetop +0 -0
- data/lib/{resume → resumetools/resume}/pdf.rb +0 -0
- data/lib/{resume → resumetools/resume}/resume.rb +0 -0
- data/lib/{resume → resumetools/resume}/text_reader.rb +0 -0
- data/lib/resumetools/version.rb +1 -1
- data/lib/resumetools.rb +3 -3
- data/spec/grammar_spec.rb +3 -3
- data/spec/read_resume_spec.rb +2 -2
- metadata +9 -10
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/resumetools/version.rb
CHANGED
data/lib/resumetools.rb
CHANGED
@@ -29,6 +29,6 @@ require "extlib"
|
|
29
29
|
require "uuidtools"
|
30
30
|
|
31
31
|
require "resumetools/version"
|
32
|
-
require "resume/resume"
|
33
|
-
require "resume/text_reader"
|
34
|
-
require "resume/pdf"
|
32
|
+
require "resumetools/resume/resume"
|
33
|
+
require "resumetools/resume/text_reader"
|
34
|
+
require "resumetools/resume/pdf"
|
data/spec/grammar_spec.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require File.join(File.dirname(__FILE__), "spec_helper")
|
2
2
|
require "treetop"
|
3
3
|
|
4
|
-
Treetop.load File.join(File.dirname(__FILE__), "../lib/grammars/resume.treetop")
|
4
|
+
Treetop.load File.join(File.dirname(__FILE__), "../lib/resumetools/grammars/resume.treetop")
|
5
5
|
|
6
6
|
describe "Resume Grammar" do
|
7
7
|
before(:all) do
|
@@ -28,8 +28,8 @@ describe "Resume Grammar" do
|
|
28
28
|
@result.should_not be_nil
|
29
29
|
end
|
30
30
|
|
31
|
-
it "should have
|
32
|
-
elements_with_type(:item).length.should ==
|
31
|
+
it "should have 29 items" do
|
32
|
+
elements_with_type(:item).length.should == 29
|
33
33
|
end
|
34
34
|
|
35
35
|
it "should have 2 paragraphs" do
|
data/spec/read_resume_spec.rb
CHANGED
@@ -50,8 +50,8 @@ describe "Creating a resume from a text" do
|
|
50
50
|
@resume.sections[3].should have(3).periods
|
51
51
|
end
|
52
52
|
|
53
|
-
it "should have
|
54
|
-
@resume.sections[3].periods[0].should have(
|
53
|
+
it "should have 3 items in the Systems Engineer period" do
|
54
|
+
@resume.sections[3].periods[0].should have(3).items
|
55
55
|
end
|
56
56
|
|
57
57
|
it "should have proper dates" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: virgild-resumetools
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Virgil Dimaguila
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-01 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -73,13 +73,13 @@ extra_rdoc_files: []
|
|
73
73
|
files:
|
74
74
|
- examples/sample.pdf
|
75
75
|
- examples/sample.resume
|
76
|
-
- lib/grammars
|
77
|
-
- lib/grammars/resume.treetop
|
78
|
-
- lib/resume
|
79
|
-
- lib/resume/pdf.rb
|
80
|
-
- lib/resume/resume.rb
|
81
|
-
- lib/resume/text_reader.rb
|
82
76
|
- lib/resumetools
|
77
|
+
- lib/resumetools/grammars
|
78
|
+
- lib/resumetools/grammars/resume.treetop
|
79
|
+
- lib/resumetools/resume
|
80
|
+
- lib/resumetools/resume/pdf.rb
|
81
|
+
- lib/resumetools/resume/resume.rb
|
82
|
+
- lib/resumetools/resume/text_reader.rb
|
83
83
|
- lib/resumetools/version.rb
|
84
84
|
- lib/resumetools.rb
|
85
85
|
- spec/grammar_spec.rb
|
@@ -99,7 +99,6 @@ files:
|
|
99
99
|
- README.md
|
100
100
|
has_rdoc: false
|
101
101
|
homepage: http://virgild.github.com/resumetools
|
102
|
-
licenses:
|
103
102
|
post_install_message:
|
104
103
|
rdoc_options: []
|
105
104
|
|
@@ -120,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
119
|
requirements: []
|
121
120
|
|
122
121
|
rubyforge_project:
|
123
|
-
rubygems_version: 1.
|
122
|
+
rubygems_version: 1.2.0
|
124
123
|
signing_key:
|
125
124
|
specification_version: 3
|
126
125
|
summary: Resume generation and writing tools
|