technicalpickles-jeweler 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.markdown +4 -0
- data/README.markdown +1 -1
- data/VERSION.yml +1 -1
- data/bin/jeweler +2 -2
- metadata +1 -1
data/ChangeLog.markdown
CHANGED
data/README.markdown
CHANGED
@@ -24,7 +24,7 @@ It's easy to get up and running. Update your instantiate a `Jeweler::Tasks`, and
|
|
24
24
|
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
|
25
25
|
end
|
26
26
|
|
27
|
-
In this example, `s` is a Gem::Specification object. See the
|
27
|
+
In this example, `s` is a Gem::Specification object. See the [GemSpec reference](http://www.rubygems.org/read/chapter/20) for values of interest.
|
28
28
|
|
29
29
|
## Kicking off a new project
|
30
30
|
|
data/VERSION.yml
CHANGED
data/bin/jeweler
CHANGED
@@ -28,8 +28,8 @@ class JewelerOpts < Hash
|
|
28
28
|
self[:testing_framework] = :testunit
|
29
29
|
end
|
30
30
|
|
31
|
-
o.on('--
|
32
|
-
self[:testing_framework] = :
|
31
|
+
o.on('--minitest', 'generate minitest tests') do
|
32
|
+
self[:testing_framework] = :minitest
|
33
33
|
end
|
34
34
|
|
35
35
|
o.on('--rspec', 'generate rspec tests') do
|