validatable 1.5.0 → 1.5.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/rakefile.rb +4 -4
- metadata +1 -1
data/rakefile.rb
CHANGED
|
@@ -16,7 +16,7 @@ Rake::RDocTask.new do |task|
|
|
|
16
16
|
task.rdoc_dir = 'doc'
|
|
17
17
|
task.options << "--line-numbers" << "--inline-source"
|
|
18
18
|
task.rdoc_files.include('README', 'lib/**/*.rb')
|
|
19
|
-
%x[erb README_TEMPLATE > README]
|
|
19
|
+
%x[erb README_TEMPLATE > README] if File.exists?('README_TEMPLATE')
|
|
20
20
|
end
|
|
21
21
|
|
|
22
22
|
desc "Upload RDoc to RubyForge"
|
|
@@ -29,7 +29,7 @@ Gem::manage_gems
|
|
|
29
29
|
specification = Gem::Specification.new do |s|
|
|
30
30
|
s.name = "validatable"
|
|
31
31
|
s.summary = "Validatable is a library for adding validations."
|
|
32
|
-
s.version = "1.5.
|
|
32
|
+
s.version = "1.5.2"
|
|
33
33
|
s.author = 'Jay Fields'
|
|
34
34
|
s.description = "Validatable is a library for adding validations."
|
|
35
35
|
s.email = 'validatable-developer@rubyforge.org'
|
|
@@ -46,6 +46,6 @@ specification = Gem::Specification.new do |s|
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
Rake::GemPackageTask.new(specification) do |package|
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
package.need_zip = false
|
|
50
|
+
package.need_tar = false
|
|
51
51
|
end
|
metadata
CHANGED