technicalpickles-jeweler 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/VERSION.yml +1 -1
- data/bin/jeweler +15 -0
- metadata +2 -1
data/Rakefile
CHANGED
@@ -14,7 +14,7 @@ begin
|
|
14
14
|
s.homepage = "http://github.com/technicalpickles/jeweler"
|
15
15
|
s.description = "Simple and opinionated helper for creating Rubygem projects on GitHub"
|
16
16
|
s.authors = ["Josh Nichols", "Dan Croak"]
|
17
|
-
s.files = FileList["[A-Z]*", "{generators,lib,test}/**/*"]
|
17
|
+
s.files = FileList["[A-Z]*", "{bin,generators,lib,test}/**/*"]
|
18
18
|
end
|
19
19
|
rescue LoadError
|
20
20
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
data/VERSION.yml
CHANGED
data/bin/jeweler
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'rubygems'
|
3
|
+
|
4
|
+
$:.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
5
|
+
require 'jeweler'
|
6
|
+
|
7
|
+
unless ARGV.size == 1
|
8
|
+
puts "jeweler takes one argument, a GitHub clone URL, like git@github.com:technicalpickles/the-perfect-gem.git"
|
9
|
+
exit 1
|
10
|
+
end
|
11
|
+
|
12
|
+
github_remote = ARGV.first
|
13
|
+
generator = Jeweler::Generator.new github_remote
|
14
|
+
generator.run
|
15
|
+
generator.gitify
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: technicalpickles-jeweler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Nichols
|
@@ -27,6 +27,7 @@ files:
|
|
27
27
|
- README.markdown
|
28
28
|
- TODO
|
29
29
|
- VERSION.yml
|
30
|
+
- bin/jeweler
|
30
31
|
- lib/jeweler
|
31
32
|
- lib/jeweler/bumping.rb
|
32
33
|
- lib/jeweler/errors.rb
|