sinatra-pages 0.7.3 → 0.7.4
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 +4 -4
- metadata +1 -1
data/Rakefile
CHANGED
@@ -17,12 +17,12 @@ end
|
|
17
17
|
|
18
18
|
desc "Install the generated Gem into your system."
|
19
19
|
task :install => [:clean, :package] do
|
20
|
-
sh 'gem19 install pkg/*.gem'
|
20
|
+
sh 'gem19 install pkg/*.gem --no-ri --no-rdoc'
|
21
21
|
end
|
22
22
|
|
23
23
|
namespace :deployment do
|
24
|
-
desc "Deployment on Github and my own Server."
|
25
|
-
task :
|
24
|
+
desc "Deployment on both Github and my own Server repository."
|
25
|
+
task :repositories do
|
26
26
|
sh 'git checkout master'
|
27
27
|
sh 'git merge development'
|
28
28
|
sh 'git push rock-n-code master --tags'
|
@@ -37,7 +37,7 @@ namespace :deployment do
|
|
37
37
|
end
|
38
38
|
|
39
39
|
desc "Deployment on Github and Gemcutter."
|
40
|
-
task :deploy => ['deployment:
|
40
|
+
task :deploy => ['deployment:repositories', 'deployment:gemcutter']
|
41
41
|
|
42
42
|
desc 'Functional testing with RSpec.'
|
43
43
|
Spec::Rake::SpecTask.new :spec do |task|
|