minitest-great_expectations 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/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# Minitest::GreatExpectations [](https://travis-ci.org/mceachen/minitest-great_expectations)
|
1
|
+
# Minitest::GreatExpectations [](https://travis-ci.org/mceachen/minitest-great_expectations)
|
2
2
|
|
3
|
-
Adds several generally helpful assertions to minitest and minitest-spec that you might be used to
|
3
|
+
Adds several generally helpful assertions to [minitest](http://docs.seattlerb.org/minitest/) and minitest-spec that you might be used to
|
4
4
|
having, especially if you're coming from rspec:
|
5
5
|
|
6
6
|
``` ruby
|
@@ -15,7 +15,16 @@ These may make it into minitest proper, someday.
|
|
15
15
|
|
16
16
|
Add this line to your application's Gemfile:
|
17
17
|
|
18
|
-
|
18
|
+
``` ruby
|
19
|
+
gem 'minitest-great_expectations'
|
20
|
+
```
|
21
|
+
|
22
|
+
Add this to your ```minitest_helper.rb```:
|
23
|
+
|
24
|
+
``` ruby
|
25
|
+
require 'minitest/autorun'
|
26
|
+
require 'minitest/great_expectations'
|
27
|
+
```
|
19
28
|
|
20
29
|
And then execute:
|
21
30
|
|
@@ -31,6 +40,10 @@ And then execute:
|
|
31
40
|
|
32
41
|
## Changelog
|
33
42
|
|
43
|
+
### 0.0.2
|
44
|
+
|
45
|
+
* Added proper require, and moved into correct subdirectories
|
46
|
+
|
34
47
|
### 0.0.1
|
35
48
|
|
36
49
|
* First whack
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'minitest
|
4
|
+
require 'minitest/great_expectations/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |gem|
|
7
7
|
gem.name = "minitest-great_expectations"
|
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
17
|
gem.test_files = gem.files.grep(%r{^test/})
|
18
|
-
gem.require_paths =
|
18
|
+
gem.require_paths = %w(lib)
|
19
19
|
|
20
20
|
gem.add_development_dependency 'rake'
|
21
21
|
gem.add_development_dependency 'yard'
|
data/test/minitest_helper.rb
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
require 'minitest/autorun'
|
2
|
-
require 'minitest
|
2
|
+
require 'minitest/great_expectations'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: minitest-great_expectations
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-01-
|
12
|
+
date: 2013-01-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -73,8 +73,8 @@ files:
|
|
73
73
|
- LICENSE.txt
|
74
74
|
- README.md
|
75
75
|
- Rakefile
|
76
|
-
- lib/minitest
|
77
|
-
- lib/minitest
|
76
|
+
- lib/minitest/great_expectations.rb
|
77
|
+
- lib/minitest/great_expectations/version.rb
|
78
78
|
- minitest-great_expectations.gemspec
|
79
79
|
- test/great_expectations_test.rb
|
80
80
|
- test/minitest_helper.rb
|
@@ -92,7 +92,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
92
|
version: '0'
|
93
93
|
segments:
|
94
94
|
- 0
|
95
|
-
hash:
|
95
|
+
hash: 4394966027857673618
|
96
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
97
97
|
none: false
|
98
98
|
requirements:
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
version: '0'
|
102
102
|
segments:
|
103
103
|
- 0
|
104
|
-
hash:
|
104
|
+
hash: 4394966027857673618
|
105
105
|
requirements: []
|
106
106
|
rubyforge_project:
|
107
107
|
rubygems_version: 1.8.23
|