minitest-rails 1.0.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.rdoc +24 -0
- data/lib/generators/mini_test/helper/templates/helper_spec.rb +2 -0
- data/lib/minitest/rails/version.rb +1 -1
- data/minitest-rails.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6d0e154d2407f4471ee927d30a1e5bdc7cd7a45d
|
|
4
|
+
data.tar.gz: 1999eb1058b0131d1a9e6ff88ce66df61d65724e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d1d9fd36b7a54fb636a86967c5c928e2085b87750cf12a1595e4d3223ca4dbbbbeec7391f90ea5c78a5c0d1f3e8fa4616719b4587d19041b769650247a1bf25
|
|
7
|
+
data.tar.gz: b6db1bd9f8bad5f998a2d78f194c9ca9b2c29e26596c3e8edcb5f7ea153ad140a5310ac258aa9640de72a776a88de741e79c9745d7901abc2782824db15a82c5
|
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
=== 1.0.1 / 2014-04-15
|
|
2
|
+
|
|
3
|
+
* Add missing module_namespacing to Helper spec
|
|
4
|
+
|
|
5
|
+
https://github.com/blowmage/minitest-rails/compare/v1.0.0...v1.0.1
|
|
6
|
+
|
|
7
|
+
=== 1.0.0 / 2014-04-14
|
|
8
|
+
|
|
9
|
+
Yay! A 1.0.0 release, finally!
|
|
10
|
+
|
|
11
|
+
* New rake tasks
|
|
12
|
+
* rake minitest:quick - Runs default tests without DB prep
|
|
13
|
+
* rake minitest:all - Runs all test
|
|
14
|
+
* rake minitest:all:quick - Runs all tests without DB prep
|
|
15
|
+
* Add 'test' rake tasks if not already defined
|
|
16
|
+
* Set the MT_RAILS_NO_AUTORUN flag to stop autorun from being called
|
|
17
|
+
* Useful for integrating with zeus or other app loaders
|
|
18
|
+
* Support Minitest 5's API
|
|
19
|
+
* Allow use of Minitest::Test instead of MiniTest::Unit::TestCase
|
|
20
|
+
* Add AS::TC assertions and expectations
|
|
21
|
+
* Add MT_RAILS_NO_AUTORUN flag
|
|
22
|
+
|
|
23
|
+
https://github.com/blowmage/minitest-rails/compare/v0.9.2...v1.0.0
|
|
24
|
+
|
|
1
25
|
=== 0.9.2 / 2013-04-05
|
|
2
26
|
|
|
3
27
|
* Fix nested describes in ruby 1.8
|
data/minitest-rails.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: minitest-rails 1.0.
|
|
2
|
+
# stub: minitest-rails 1.0.1.20140414185943 ruby lib
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |s|
|
|
5
5
|
s.name = "minitest-rails"
|
|
6
|
-
s.version = "1.0.
|
|
6
|
+
s.version = "1.0.1.20140414185943"
|
|
7
7
|
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
9
9
|
s.require_paths = ["lib"]
|
|
10
10
|
s.authors = ["Mike Moore"]
|
|
11
|
-
s.date = "2014-04-
|
|
11
|
+
s.date = "2014-04-15"
|
|
12
12
|
s.description = "Adds MiniTest as the default testing library in Rails 3 and 4"
|
|
13
13
|
s.email = ["mike@blowmage.com"]
|
|
14
14
|
s.extra_rdoc_files = ["CHANGELOG.rdoc", "Manifest.txt", "README.rdoc"]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minitest-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Moore
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-04-
|
|
11
|
+
date: 2014-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: minitest
|