capistrano-mercurial-ext 0.0.1 → 0.0.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 +13 -1
- data/capistrano-mercurial-ext.gemspec +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
@@ -1 +1,13 @@
|
|
1
|
-
|
1
|
+
begin
|
2
|
+
require 'jeweler'
|
3
|
+
Jeweler::Tasks.new do |gemspec|
|
4
|
+
gemspec.name = "capistrano-mercurial-ext"
|
5
|
+
gemspec.summary = %q{Pull and clone commands extended implementation}
|
6
|
+
gemspec.description = %q{Replacement for the rails mercurial scm implementation which ships with Capistrano, allows you to configure pull and clone commands}
|
7
|
+
gemspec.email = ["anton.roubtsov@gmail.com"]
|
8
|
+
gemspec.homepage = "https://github.com/rubtsov/capistrano-mercurial-ext/"
|
9
|
+
gemspec.authors = ["Anton Rubtsov"]
|
10
|
+
end
|
11
|
+
rescue LoadError
|
12
|
+
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
13
|
+
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "capistrano-mercurial-ext"
|
3
|
-
spec.version = "0.0.
|
3
|
+
spec.version = "0.0.2"
|
4
4
|
spec.authors = ["Anton Rubtsov"]
|
5
5
|
spec.email = ["anton.roubtsov@gmail.com"]
|
6
6
|
spec.description = %q{Replacement for the rails mercurial scm implementation which ships with Capistrano, allows you to configure pull and clone commands}
|