minitest-rails 0.3 → 0.5
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/.travis.yml +4 -2
- data/LICENSE +1 -1
- data/Manifest.txt +5 -8
- data/README.rdoc +11 -29
- data/Rakefile +3 -3
- data/gemfiles/3.0.gemfile +1 -1
- data/gemfiles/3.0.gemfile.lock +35 -35
- data/gemfiles/3.1.gemfile +1 -1
- data/gemfiles/3.1.gemfile.lock +35 -35
- data/gemfiles/3.2.gemfile +1 -1
- data/gemfiles/3.2.gemfile.lock +39 -38
- data/gemfiles/4.0.gemfile +8 -0
- data/gemfiles/4.0.gemfile.lock +104 -0
- data/lib/generators/mini_test.rb +25 -12
- data/lib/generators/mini_test/controller/templates/controller_test.rb +1 -1
- data/lib/generators/mini_test/helper/templates/helper_test.rb +2 -2
- data/lib/generators/mini_test/install/install_generator.rb +1 -1
- data/lib/generators/mini_test/install/templates/test/minitest_helper.rb +3 -9
- data/lib/generators/mini_test/integration/integration_generator.rb +2 -2
- data/lib/generators/mini_test/integration/templates/integration_spec.rb +2 -2
- data/lib/generators/mini_test/integration/templates/integration_test.rb +1 -1
- data/lib/generators/mini_test/mailer/templates/mailer_test.rb +1 -1
- data/lib/generators/mini_test/model/templates/model_test.rb +1 -1
- data/lib/generators/mini_test/scaffold/templates/controller_test.rb +1 -1
- data/lib/minitest/rails.rb +109 -20
- data/lib/minitest/rails/constant_lookup.rb +41 -44
- data/lib/minitest/rails/tasks/minitest.rake +22 -51
- data/lib/minitest/rails/test_case.rb +93 -0
- data/lib/minitest/rails/testing.rb +39 -0
- data/lib/minitest/rails/version.rb +1 -1
- data/minitest-rails.gemspec +11 -11
- data/tasks/gemfiles.rake +2 -1
- data/tasks/test.rake +6 -0
- data/test/generators/test_controller_generator.rb +10 -39
- data/test/generators/test_helper_generator.rb +8 -35
- data/test/generators/test_install_generator.rb +4 -27
- data/test/generators/test_mailer_generator.rb +5 -29
- data/test/generators/test_model_generator.rb +7 -32
- data/test/generators/test_scaffold_generator.rb +5 -29
- data/test/helper.rb +35 -0
- data/test/rails/action_controller/test_controllers.rb +4 -14
- data/test/rails/action_controller/test_spec_type.rb +3 -7
- data/test/rails/action_dispatch/test_spec_type.rb +16 -11
- data/test/rails/action_mailer/test_mailers.rb +4 -8
- data/test/rails/action_mailer/test_spec_type.rb +3 -8
- data/test/rails/action_view/test_helpers.rb +4 -7
- data/test/rails/action_view/test_spec_type.rb +3 -10
- data/test/rails/active_support/test_spec_type.rb +2 -7
- data/test/rails/test_constant_lookup.rb +2 -5
- data/test/test_sanity.rb +1 -2
- metadata +33 -36
- data/gemfiles/minitest_tu_shim.rb +0 -4
- data/lib/minitest/rails/action_controller.rb +0 -28
- data/lib/minitest/rails/action_dispatch.rb +0 -41
- data/lib/minitest/rails/action_mailer.rb +0 -26
- data/lib/minitest/rails/action_view.rb +0 -23
- data/lib/minitest/rails/active_support.rb +0 -70
- data/lib/minitest/rails/declarative.rb +0 -27
- data/lib/minitest/rails/mochaing.rb +0 -11
data/.travis.yml
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
---
|
2
|
-
|
2
|
+
before_install:
|
3
3
|
- gem install hoe-travis --no-rdoc --no-ri
|
4
|
-
-
|
4
|
+
- gem install bundler --pre --no-rdoc --no-ri
|
5
|
+
before_script:
|
5
6
|
- rake travis:before -t
|
6
7
|
language: ruby
|
7
8
|
notifications:
|
@@ -14,4 +15,5 @@ gemfile:
|
|
14
15
|
- gemfiles/3.0.gemfile
|
15
16
|
- gemfiles/3.1.gemfile
|
16
17
|
- gemfiles/3.2.gemfile
|
18
|
+
- gemfiles/4.0.gemfile
|
17
19
|
script: rake travis
|
data/LICENSE
CHANGED
data/Manifest.txt
CHANGED
@@ -12,7 +12,8 @@ gemfiles/3.1.gemfile
|
|
12
12
|
gemfiles/3.1.gemfile.lock
|
13
13
|
gemfiles/3.2.gemfile
|
14
14
|
gemfiles/3.2.gemfile.lock
|
15
|
-
gemfiles/
|
15
|
+
gemfiles/4.0.gemfile
|
16
|
+
gemfiles/4.0.gemfile.lock
|
16
17
|
lib/autotest/discover.rb
|
17
18
|
lib/autotest/fixtures.rb
|
18
19
|
lib/autotest/migrate.rb
|
@@ -41,16 +42,11 @@ lib/generators/mini_test/scaffold/templates/controller_spec.rb
|
|
41
42
|
lib/generators/mini_test/scaffold/templates/controller_test.rb
|
42
43
|
lib/minitest-rails.rb
|
43
44
|
lib/minitest/rails.rb
|
44
|
-
lib/minitest/rails/action_controller.rb
|
45
|
-
lib/minitest/rails/action_dispatch.rb
|
46
|
-
lib/minitest/rails/action_mailer.rb
|
47
|
-
lib/minitest/rails/action_view.rb
|
48
|
-
lib/minitest/rails/active_support.rb
|
49
45
|
lib/minitest/rails/constant_lookup.rb
|
50
|
-
lib/minitest/rails/declarative.rb
|
51
|
-
lib/minitest/rails/mochaing.rb
|
52
46
|
lib/minitest/rails/tasks/minitest.rake
|
53
47
|
lib/minitest/rails/tasks/sub_test_task.rb
|
48
|
+
lib/minitest/rails/test_case.rb
|
49
|
+
lib/minitest/rails/testing.rb
|
54
50
|
lib/minitest/rails/version.rb
|
55
51
|
minitest-rails.gemspec
|
56
52
|
tasks/gemfiles.rake
|
@@ -61,6 +57,7 @@ test/generators/test_install_generator.rb
|
|
61
57
|
test/generators/test_mailer_generator.rb
|
62
58
|
test/generators/test_model_generator.rb
|
63
59
|
test/generators/test_scaffold_generator.rb
|
60
|
+
test/helper.rb
|
64
61
|
test/rails/action_controller/test_controllers.rb
|
65
62
|
test/rails/action_controller/test_spec_type.rb
|
66
63
|
test/rails/action_dispatch/test_spec_type.rb
|
data/README.rdoc
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
= minitest-rails
|
2
2
|
|
3
|
-
MiniTest integration for Rails 3
|
3
|
+
MiniTest integration for Rails 3 and 4
|
4
4
|
|
5
|
-
{<img src="https://secure.travis-ci.org/blowmage/minitest-rails.png" alt="Build Status" />}[http://travis-ci.org/blowmage/minitest-rails]
|
5
|
+
{<img src="https://secure.travis-ci.org/blowmage/minitest-rails.png" alt="Build Status" />}[http://travis-ci.org/blowmage/minitest-rails]<br>
|
6
|
+
{<img src="https://codeclimate.com/badge.png" />}[https://codeclimate.com/github/blowmage/minitest-rails]
|
6
7
|
|
7
8
|
== Install
|
8
9
|
|
@@ -32,15 +33,13 @@ This will add the <tt>minitest_helper.rb</tt> file to the <tt>test</tt> director
|
|
32
33
|
|
33
34
|
== Usage
|
34
35
|
|
35
|
-
|
36
|
-
|
37
|
-
Your test classes will inherit from MiniTest::Rails::ActiveSupport::TestCase a opposed to ActiveSupport::TestCase.
|
38
|
-
You can use the MiniTest::Spec DSL.
|
36
|
+
This project aims to enable MiniTest within the Rails TestCase classes.
|
37
|
+
Your test will continue to inherit from <tt>ActiveSupport::TestCase</tt>, which will now support the spec DSL.
|
39
38
|
You can generate test files with the standard model, controller, resource, and other generators:
|
40
39
|
|
41
40
|
rails generate model User
|
42
41
|
|
43
|
-
And you can specify generating the tests using the MiniTest::Spec DSL on any of the generators by providing the <tt>--spec</tt> option:
|
42
|
+
And you can specify generating the tests using the <tt>MiniTest::Spec</tt> DSL on any of the generators by providing the <tt>--spec</tt> option:
|
44
43
|
|
45
44
|
rails generate model User --spec
|
46
45
|
|
@@ -54,32 +53,15 @@ You can also set these as defaults by adding the following to the <tt>config/app
|
|
54
53
|
g.test_framework :mini_test, :spec => true, :fixture => false
|
55
54
|
end
|
56
55
|
|
57
|
-
== Overriding Test::Unit
|
58
|
-
|
59
|
-
Of course, you may not want to maintain separate Test::Unit and MiniTest tests.
|
60
|
-
If this is the behavior you are wanting, simply add the following to your <tt>test_helper.rb</tt> file:
|
61
|
-
|
62
|
-
require "minitest/rails"
|
63
|
-
MiniTest::Rails.override_testunit!
|
64
|
-
|
65
56
|
== Capybara
|
66
57
|
|
67
|
-
You can use Capybara
|
68
|
-
|
69
|
-
group :test, :development do
|
70
|
-
gem 'minitest-rails'
|
71
|
-
gem 'minitest-rails-capybara'
|
72
|
-
end
|
73
|
-
|
74
|
-
And add the following to your test helper file:
|
75
|
-
|
76
|
-
require "minitest/rails/capybara"
|
77
|
-
|
78
|
-
See the <tt>minitest-rails-capybara</tt> project for more information.
|
58
|
+
You can use Capybara for feature tests by adding <tt>minitest-rails-capybara</tt> as a dependency. See the README for more information: https://github.com/blowmage/minitest-rails-capybara
|
79
59
|
|
80
60
|
== Incompatibilities
|
81
61
|
|
82
|
-
|
62
|
+
Efforts have been made to be compatible with Ruby 1.8.7, but some rough edges may remain. You have been warned.
|
63
|
+
|
64
|
+
Existing tests that call <tt>describe</tt> will not work, since <tt>describe</tt> is used by <tt>MiniTest::Spec</tt> blocks.
|
83
65
|
|
84
66
|
== Get Involved
|
85
67
|
|
@@ -89,7 +71,7 @@ https://groups.google.com/group/minitest-rails
|
|
89
71
|
|
90
72
|
== License
|
91
73
|
|
92
|
-
Copyright (c)
|
74
|
+
Copyright (c) 2013 Mike Moore
|
93
75
|
|
94
76
|
Permission is hereby granted, free of charge, to any person obtaining
|
95
77
|
a copy of this software and associated documentation files (the
|
data/Rakefile
CHANGED
@@ -11,8 +11,8 @@ Hoe.plugins.delete :rubyforge
|
|
11
11
|
Hoe.spec 'minitest-rails' do
|
12
12
|
developer 'Mike Moore', 'mike@blowmage.com'
|
13
13
|
|
14
|
-
self.summary = 'MiniTest integration for Rails 3
|
15
|
-
self.description = 'Adds MiniTest as the default testing library in Rails 3
|
14
|
+
self.summary = 'MiniTest integration for Rails 3 and 4'
|
15
|
+
self.description = 'Adds MiniTest as the default testing library in Rails 3 and 4'
|
16
16
|
self.urls = ['http://blowmage.com/minitest-rails']
|
17
17
|
|
18
18
|
self.history_file = "CHANGELOG.rdoc"
|
@@ -20,7 +20,7 @@ Hoe.spec 'minitest-rails' do
|
|
20
20
|
self.testlib = :minitest
|
21
21
|
|
22
22
|
dependency 'minitest', '~> 4.0'
|
23
|
-
dependency 'rails', '
|
23
|
+
dependency 'rails', '>= 3.0'
|
24
24
|
dependency 'fakefs', '~> 0.4', :dev
|
25
25
|
end
|
26
26
|
|
data/gemfiles/3.0.gemfile
CHANGED
data/gemfiles/3.0.gemfile.lock
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/blowmage/codez/minitest-rails
|
3
3
|
specs:
|
4
|
-
minitest-rails (0.
|
4
|
+
minitest-rails (0.5.20130110235401)
|
5
5
|
minitest (~> 4.0)
|
6
|
-
rails (
|
6
|
+
rails (>= 3.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
11
|
abstract (1.0.0)
|
12
|
-
actionmailer (3.0.
|
13
|
-
actionpack (= 3.0.
|
12
|
+
actionmailer (3.0.19)
|
13
|
+
actionpack (= 3.0.19)
|
14
14
|
mail (~> 2.2.19)
|
15
|
-
actionpack (3.0.
|
16
|
-
activemodel (= 3.0.
|
17
|
-
activesupport (= 3.0.
|
15
|
+
actionpack (3.0.19)
|
16
|
+
activemodel (= 3.0.19)
|
17
|
+
activesupport (= 3.0.19)
|
18
18
|
builder (~> 2.1.2)
|
19
19
|
erubis (~> 2.6.6)
|
20
20
|
i18n (~> 0.5.0)
|
@@ -22,63 +22,63 @@ GEM
|
|
22
22
|
rack-mount (~> 0.6.14)
|
23
23
|
rack-test (~> 0.5.7)
|
24
24
|
tzinfo (~> 0.3.23)
|
25
|
-
activemodel (3.0.
|
26
|
-
activesupport (= 3.0.
|
25
|
+
activemodel (3.0.19)
|
26
|
+
activesupport (= 3.0.19)
|
27
27
|
builder (~> 2.1.2)
|
28
28
|
i18n (~> 0.5.0)
|
29
|
-
activerecord (3.0.
|
30
|
-
activemodel (= 3.0.
|
31
|
-
activesupport (= 3.0.
|
29
|
+
activerecord (3.0.19)
|
30
|
+
activemodel (= 3.0.19)
|
31
|
+
activesupport (= 3.0.19)
|
32
32
|
arel (~> 2.0.10)
|
33
33
|
tzinfo (~> 0.3.23)
|
34
|
-
activeresource (3.0.
|
35
|
-
activemodel (= 3.0.
|
36
|
-
activesupport (= 3.0.
|
37
|
-
activesupport (3.0.
|
34
|
+
activeresource (3.0.19)
|
35
|
+
activemodel (= 3.0.19)
|
36
|
+
activesupport (= 3.0.19)
|
37
|
+
activesupport (3.0.19)
|
38
38
|
arel (2.0.10)
|
39
39
|
builder (2.1.2)
|
40
40
|
erubis (2.6.6)
|
41
41
|
abstract (>= 1.0.0)
|
42
|
-
fakefs (0.4.
|
43
|
-
hoe (3.
|
44
|
-
rake (
|
42
|
+
fakefs (0.4.2)
|
43
|
+
hoe (3.4.0)
|
44
|
+
rake (>= 0.8, < 11.0)
|
45
45
|
i18n (0.5.0)
|
46
|
-
json (1.7.
|
46
|
+
json (1.7.6)
|
47
47
|
mail (2.2.19)
|
48
48
|
activesupport (>= 2.3.6)
|
49
49
|
i18n (>= 0.4.0)
|
50
50
|
mime-types (~> 1.16)
|
51
51
|
treetop (~> 1.4.8)
|
52
52
|
mime-types (1.19)
|
53
|
-
minitest (4.
|
53
|
+
minitest (4.4.0)
|
54
54
|
polyglot (0.3.3)
|
55
|
-
rack (1.2.
|
55
|
+
rack (1.2.6)
|
56
56
|
rack-mount (0.6.14)
|
57
57
|
rack (>= 1.0.0)
|
58
58
|
rack-test (0.5.7)
|
59
59
|
rack (>= 1.0)
|
60
|
-
rails (3.0.
|
61
|
-
actionmailer (= 3.0.
|
62
|
-
actionpack (= 3.0.
|
63
|
-
activerecord (= 3.0.
|
64
|
-
activeresource (= 3.0.
|
65
|
-
activesupport (= 3.0.
|
60
|
+
rails (3.0.19)
|
61
|
+
actionmailer (= 3.0.19)
|
62
|
+
actionpack (= 3.0.19)
|
63
|
+
activerecord (= 3.0.19)
|
64
|
+
activeresource (= 3.0.19)
|
65
|
+
activesupport (= 3.0.19)
|
66
66
|
bundler (~> 1.0)
|
67
|
-
railties (= 3.0.
|
68
|
-
railties (3.0.
|
69
|
-
actionpack (= 3.0.
|
70
|
-
activesupport (= 3.0.
|
67
|
+
railties (= 3.0.19)
|
68
|
+
railties (3.0.19)
|
69
|
+
actionpack (= 3.0.19)
|
70
|
+
activesupport (= 3.0.19)
|
71
71
|
rake (>= 0.8.7)
|
72
72
|
rdoc (~> 3.4)
|
73
73
|
thor (~> 0.14.4)
|
74
|
-
rake (0.
|
74
|
+
rake (10.0.3)
|
75
75
|
rdoc (3.12)
|
76
76
|
json (~> 1.4)
|
77
77
|
thor (0.14.6)
|
78
78
|
treetop (1.4.12)
|
79
79
|
polyglot
|
80
80
|
polyglot (>= 0.3.1)
|
81
|
-
tzinfo (0.3.
|
81
|
+
tzinfo (0.3.35)
|
82
82
|
|
83
83
|
PLATFORMS
|
84
84
|
ruby
|
@@ -87,5 +87,5 @@ DEPENDENCIES
|
|
87
87
|
fakefs (~> 0.4)
|
88
88
|
hoe (~> 3.0)
|
89
89
|
minitest-rails!
|
90
|
-
rails (~> 3.0.
|
90
|
+
rails (~> 3.0.19)
|
91
91
|
rdoc (~> 3.10)
|
data/gemfiles/3.1.gemfile
CHANGED
data/gemfiles/3.1.gemfile.lock
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/blowmage/codez/minitest-rails
|
3
3
|
specs:
|
4
|
-
minitest-rails (0.
|
4
|
+
minitest-rails (0.5.20130110235401)
|
5
5
|
minitest (~> 4.0)
|
6
|
-
rails (
|
6
|
+
rails (>= 3.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (3.1.
|
12
|
-
actionpack (= 3.1.
|
11
|
+
actionmailer (3.1.10)
|
12
|
+
actionpack (= 3.1.10)
|
13
13
|
mail (~> 2.3.3)
|
14
|
-
actionpack (3.1.
|
15
|
-
activemodel (= 3.1.
|
16
|
-
activesupport (= 3.1.
|
14
|
+
actionpack (3.1.10)
|
15
|
+
activemodel (= 3.1.10)
|
16
|
+
activesupport (= 3.1.10)
|
17
17
|
builder (~> 3.0.0)
|
18
18
|
erubis (~> 2.7.0)
|
19
19
|
i18n (~> 0.6)
|
@@ -22,38 +22,38 @@ GEM
|
|
22
22
|
rack-mount (~> 0.8.2)
|
23
23
|
rack-test (~> 0.6.1)
|
24
24
|
sprockets (~> 2.0.4)
|
25
|
-
activemodel (3.1.
|
26
|
-
activesupport (= 3.1.
|
25
|
+
activemodel (3.1.10)
|
26
|
+
activesupport (= 3.1.10)
|
27
27
|
builder (~> 3.0.0)
|
28
28
|
i18n (~> 0.6)
|
29
|
-
activerecord (3.1.
|
30
|
-
activemodel (= 3.1.
|
31
|
-
activesupport (= 3.1.
|
29
|
+
activerecord (3.1.10)
|
30
|
+
activemodel (= 3.1.10)
|
31
|
+
activesupport (= 3.1.10)
|
32
32
|
arel (~> 2.2.3)
|
33
33
|
tzinfo (~> 0.3.29)
|
34
|
-
activeresource (3.1.
|
35
|
-
activemodel (= 3.1.
|
36
|
-
activesupport (= 3.1.
|
37
|
-
activesupport (3.1.
|
34
|
+
activeresource (3.1.10)
|
35
|
+
activemodel (= 3.1.10)
|
36
|
+
activesupport (= 3.1.10)
|
37
|
+
activesupport (3.1.10)
|
38
38
|
multi_json (>= 1.0, < 1.3)
|
39
39
|
arel (2.2.3)
|
40
40
|
builder (3.0.4)
|
41
41
|
erubis (2.7.0)
|
42
|
-
fakefs (0.4.
|
42
|
+
fakefs (0.4.2)
|
43
43
|
hike (1.2.1)
|
44
|
-
hoe (3.
|
45
|
-
rake (
|
44
|
+
hoe (3.4.0)
|
45
|
+
rake (>= 0.8, < 11.0)
|
46
46
|
i18n (0.6.1)
|
47
|
-
json (1.7.
|
47
|
+
json (1.7.6)
|
48
48
|
mail (2.3.3)
|
49
49
|
i18n (>= 0.4.0)
|
50
50
|
mime-types (~> 1.16)
|
51
51
|
treetop (~> 1.4.8)
|
52
52
|
mime-types (1.19)
|
53
|
-
minitest (4.
|
53
|
+
minitest (4.4.0)
|
54
54
|
multi_json (1.2.0)
|
55
55
|
polyglot (0.3.3)
|
56
|
-
rack (1.3.
|
56
|
+
rack (1.3.8)
|
57
57
|
rack-cache (1.2)
|
58
58
|
rack (>= 0.4)
|
59
59
|
rack-mount (0.8.3)
|
@@ -62,22 +62,22 @@ GEM
|
|
62
62
|
rack
|
63
63
|
rack-test (0.6.2)
|
64
64
|
rack (>= 1.0)
|
65
|
-
rails (3.1.
|
66
|
-
actionmailer (= 3.1.
|
67
|
-
actionpack (= 3.1.
|
68
|
-
activerecord (= 3.1.
|
69
|
-
activeresource (= 3.1.
|
70
|
-
activesupport (= 3.1.
|
65
|
+
rails (3.1.10)
|
66
|
+
actionmailer (= 3.1.10)
|
67
|
+
actionpack (= 3.1.10)
|
68
|
+
activerecord (= 3.1.10)
|
69
|
+
activeresource (= 3.1.10)
|
70
|
+
activesupport (= 3.1.10)
|
71
71
|
bundler (~> 1.0)
|
72
|
-
railties (= 3.1.
|
73
|
-
railties (3.1.
|
74
|
-
actionpack (= 3.1.
|
75
|
-
activesupport (= 3.1.
|
72
|
+
railties (= 3.1.10)
|
73
|
+
railties (3.1.10)
|
74
|
+
actionpack (= 3.1.10)
|
75
|
+
activesupport (= 3.1.10)
|
76
76
|
rack-ssl (~> 1.3.2)
|
77
77
|
rake (>= 0.8.7)
|
78
78
|
rdoc (~> 3.4)
|
79
79
|
thor (~> 0.14.6)
|
80
|
-
rake (0.
|
80
|
+
rake (10.0.3)
|
81
81
|
rdoc (3.12)
|
82
82
|
json (~> 1.4)
|
83
83
|
sprockets (2.0.4)
|
@@ -89,7 +89,7 @@ GEM
|
|
89
89
|
treetop (1.4.12)
|
90
90
|
polyglot
|
91
91
|
polyglot (>= 0.3.1)
|
92
|
-
tzinfo (0.3.
|
92
|
+
tzinfo (0.3.35)
|
93
93
|
|
94
94
|
PLATFORMS
|
95
95
|
ruby
|
@@ -98,5 +98,5 @@ DEPENDENCIES
|
|
98
98
|
fakefs (~> 0.4)
|
99
99
|
hoe (~> 3.0)
|
100
100
|
minitest-rails!
|
101
|
-
rails (~> 3.1.
|
101
|
+
rails (~> 3.1.10)
|
102
102
|
rdoc (~> 3.10)
|
data/gemfiles/3.2.gemfile
CHANGED
data/gemfiles/3.2.gemfile.lock
CHANGED
@@ -1,85 +1,86 @@
|
|
1
1
|
PATH
|
2
2
|
remote: /Users/blowmage/codez/minitest-rails
|
3
3
|
specs:
|
4
|
-
minitest-rails (0.
|
4
|
+
minitest-rails (0.5.20130110235401)
|
5
5
|
minitest (~> 4.0)
|
6
|
-
rails (
|
6
|
+
rails (>= 3.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: http://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (3.2.
|
12
|
-
actionpack (= 3.2.
|
11
|
+
actionmailer (3.2.11)
|
12
|
+
actionpack (= 3.2.11)
|
13
13
|
mail (~> 2.4.4)
|
14
|
-
actionpack (3.2.
|
15
|
-
activemodel (= 3.2.
|
16
|
-
activesupport (= 3.2.
|
14
|
+
actionpack (3.2.11)
|
15
|
+
activemodel (= 3.2.11)
|
16
|
+
activesupport (= 3.2.11)
|
17
17
|
builder (~> 3.0.0)
|
18
18
|
erubis (~> 2.7.0)
|
19
19
|
journey (~> 1.0.4)
|
20
20
|
rack (~> 1.4.0)
|
21
21
|
rack-cache (~> 1.2)
|
22
22
|
rack-test (~> 0.6.1)
|
23
|
-
sprockets (~> 2.1
|
24
|
-
activemodel (3.2.
|
25
|
-
activesupport (= 3.2.
|
23
|
+
sprockets (~> 2.2.1)
|
24
|
+
activemodel (3.2.11)
|
25
|
+
activesupport (= 3.2.11)
|
26
26
|
builder (~> 3.0.0)
|
27
|
-
activerecord (3.2.
|
28
|
-
activemodel (= 3.2.
|
29
|
-
activesupport (= 3.2.
|
27
|
+
activerecord (3.2.11)
|
28
|
+
activemodel (= 3.2.11)
|
29
|
+
activesupport (= 3.2.11)
|
30
30
|
arel (~> 3.0.2)
|
31
31
|
tzinfo (~> 0.3.29)
|
32
|
-
activeresource (3.2.
|
33
|
-
activemodel (= 3.2.
|
34
|
-
activesupport (= 3.2.
|
35
|
-
activesupport (3.2.
|
32
|
+
activeresource (3.2.11)
|
33
|
+
activemodel (= 3.2.11)
|
34
|
+
activesupport (= 3.2.11)
|
35
|
+
activesupport (3.2.11)
|
36
36
|
i18n (~> 0.6)
|
37
37
|
multi_json (~> 1.0)
|
38
38
|
arel (3.0.2)
|
39
39
|
builder (3.0.4)
|
40
40
|
erubis (2.7.0)
|
41
|
-
fakefs (0.4.
|
41
|
+
fakefs (0.4.2)
|
42
42
|
hike (1.2.1)
|
43
|
-
hoe (3.
|
44
|
-
rake (
|
43
|
+
hoe (3.4.0)
|
44
|
+
rake (>= 0.8, < 11.0)
|
45
45
|
i18n (0.6.1)
|
46
46
|
journey (1.0.4)
|
47
|
-
json (1.7.
|
47
|
+
json (1.7.6)
|
48
48
|
mail (2.4.4)
|
49
49
|
i18n (>= 0.4.0)
|
50
50
|
mime-types (~> 1.16)
|
51
51
|
treetop (~> 1.4.8)
|
52
52
|
mime-types (1.19)
|
53
|
-
minitest (4.
|
54
|
-
multi_json (1.
|
53
|
+
minitest (4.4.0)
|
54
|
+
multi_json (1.5.0)
|
55
55
|
polyglot (0.3.3)
|
56
|
-
rack (1.4.
|
56
|
+
rack (1.4.3)
|
57
57
|
rack-cache (1.2)
|
58
58
|
rack (>= 0.4)
|
59
59
|
rack-ssl (1.3.2)
|
60
60
|
rack
|
61
61
|
rack-test (0.6.2)
|
62
62
|
rack (>= 1.0)
|
63
|
-
rails (3.2.
|
64
|
-
actionmailer (= 3.2.
|
65
|
-
actionpack (= 3.2.
|
66
|
-
activerecord (= 3.2.
|
67
|
-
activeresource (= 3.2.
|
68
|
-
activesupport (= 3.2.
|
63
|
+
rails (3.2.11)
|
64
|
+
actionmailer (= 3.2.11)
|
65
|
+
actionpack (= 3.2.11)
|
66
|
+
activerecord (= 3.2.11)
|
67
|
+
activeresource (= 3.2.11)
|
68
|
+
activesupport (= 3.2.11)
|
69
69
|
bundler (~> 1.0)
|
70
|
-
railties (= 3.2.
|
71
|
-
railties (3.2.
|
72
|
-
actionpack (= 3.2.
|
73
|
-
activesupport (= 3.2.
|
70
|
+
railties (= 3.2.11)
|
71
|
+
railties (3.2.11)
|
72
|
+
actionpack (= 3.2.11)
|
73
|
+
activesupport (= 3.2.11)
|
74
74
|
rack-ssl (~> 1.3.2)
|
75
75
|
rake (>= 0.8.7)
|
76
76
|
rdoc (~> 3.4)
|
77
77
|
thor (>= 0.14.6, < 2.0)
|
78
|
-
rake (0.
|
78
|
+
rake (10.0.3)
|
79
79
|
rdoc (3.12)
|
80
80
|
json (~> 1.4)
|
81
|
-
sprockets (2.
|
81
|
+
sprockets (2.2.2)
|
82
82
|
hike (~> 1.2)
|
83
|
+
multi_json (~> 1.0)
|
83
84
|
rack (~> 1.0)
|
84
85
|
tilt (~> 1.1, != 1.3.0)
|
85
86
|
thor (0.16.0)
|
@@ -87,7 +88,7 @@ GEM
|
|
87
88
|
treetop (1.4.12)
|
88
89
|
polyglot
|
89
90
|
polyglot (>= 0.3.1)
|
90
|
-
tzinfo (0.3.
|
91
|
+
tzinfo (0.3.35)
|
91
92
|
|
92
93
|
PLATFORMS
|
93
94
|
ruby
|
@@ -96,5 +97,5 @@ DEPENDENCIES
|
|
96
97
|
fakefs (~> 0.4)
|
97
98
|
hoe (~> 3.0)
|
98
99
|
minitest-rails!
|
99
|
-
rails (~> 3.2.
|
100
|
+
rails (~> 3.2.11)
|
100
101
|
rdoc (~> 3.10)
|