We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 437a79c commit d2f6854Copy full SHA for d2f6854
Rakefile
@@ -11,6 +11,10 @@ def command?(command)
11
system("type #{command} > /dev/null 2>&1")
12
end
13
14
+require 'rubygems'
15
+require 'bundler/setup'
16
+require 'bundler/gem_tasks'
17
+
18
19
#
20
# Tests
@@ -51,20 +55,3 @@ begin
51
55
require 'sdoc_helpers'
52
56
rescue LoadError
53
57
54
-
-#
-# Publishing
58
59
60
-desc "Push a new version to Gemcutter"
61
-task :publish do
62
- require 'resque/version'
63
64
- sh "gem build resque.gemspec"
65
- sh "gem push resque-#{Resque::Version}.gem"
66
- sh "git tag v#{Resque::Version}"
67
- sh "git push origin v#{Resque::Version}"
68
- sh "git push origin master"
69
- sh "git clean -fd"
70
-end
0 commit comments