migration_test_helper 0.1.0 → 1.0.0
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 +6 -1
- metadata +1 -1
data/Rakefile
CHANGED
|
@@ -16,7 +16,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
|
|
|
16
16
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
GEM_VERSION = '
|
|
19
|
+
GEM_VERSION = '1.0.0'
|
|
20
20
|
|
|
21
21
|
Hoe.new('migration_test_helper',GEM_VERSION) do |p|
|
|
22
22
|
p.author = "Micah Alles"
|
|
@@ -37,6 +37,11 @@ test database.
|
|
|
37
37
|
p.rubyforge_name = 'migrationtest'
|
|
38
38
|
end
|
|
39
39
|
|
|
40
|
+
desc "Generate and upload api docs to rubyforge"
|
|
41
|
+
task :upload_doc => :rerdoc do
|
|
42
|
+
sh "scp -r rdoc/* rubyforge.org:/var/www/gforge-projects/migrationtest/"
|
|
43
|
+
end
|
|
44
|
+
|
|
40
45
|
desc "Release from current trunk"
|
|
41
46
|
task :plugin_release do
|
|
42
47
|
require 'fileutils'
|
metadata
CHANGED