resumetools 0.2.7.0 → 0.2.7.6

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,6 @@
1
+ 2009-10-19 (Version 0.2.7.5)
2
+ * Enclosed ResumeParser in module
3
+
1
4
  2009-09-30 (Version 0.2.7)
2
5
  * Added encodings for Ruby 1.9 compatibility
3
6
 
data/Rakefile CHANGED
@@ -6,34 +6,8 @@ require 'rubygems'
6
6
  require 'rake'
7
7
  require 'rake/testtask'
8
8
  require 'rake/rdoctask'
9
- require 'rake/packagetask'
10
- require 'rake/gempackagetask'
11
9
  require 'spec/rake/spectask'
12
10
 
13
11
  require File.join(File.dirname(__FILE__), 'lib', 'resumetools', 'version')
14
12
 
15
- PKG_DISPLAY_NAME = "ResumeTools"
16
- PKG_NAME = PKG_DISPLAY_NAME.downcase
17
- PKG_VERSION = ResumeTools::VERSION::STRING
18
- PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
19
- RELEASE_NAME = "REL #{PKG_VERSION}"
20
- PKG_SUMMARY = "Resume generation and writing tools"
21
- PKG_DESCRIPTION = <<-DESC
22
- Resume generation and writing tools
23
- DESC
24
-
25
- PKG_FILES = FileList[
26
- "examples/**/*",
27
- "lib/**/*",
28
- "spec/**/*",
29
- "vendor/**/*",
30
- "tasks/**/*",
31
- "fonts/**/*",
32
- "[A-Z]*",
33
- "README.md",
34
- "Rakefile"
35
- ].exclude(/[_\.]git$/, 'TODO')
36
- WINDOWS = (RUBY_PLATFORM =~ /mswin|win32|mingw|bccwin|cygwin/) rescue false
37
- SUDO = WINDOWS ? '' : ('sudo' unless ENV['SUDOLESS'])
38
-
39
13
  Dir["tasks/**/*.rake"].each { |task| load task }