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 CHANGED
@@ -1,3 +1,7 @@
1
+ # jeweler 0.8.1
2
+
3
+ * Fixed minitest generator
4
+
1
5
  # jeweler 0.8.0
2
6
 
3
7
  * Generator:
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 documentation for what possible values you can set on it.
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
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 0
2
+ :patch: 1
3
3
  :major: 0
4
4
  :minor: 8
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('--miniunit', 'generate mini/unit tests') do
32
- self[:testing_framework] = :miniunit
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
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.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Nichols