minitest-spec-rails 3.1.2 → 4.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/.travis.yml +9 -6
  2. data/Appraisals +17 -0
  3. data/CHANGELOG.md +3 -12
  4. data/Gemfile +1 -3
  5. data/README.md +111 -2
  6. data/Rakefile +8 -0
  7. data/gemfiles/rails30.gemfile +7 -0
  8. data/gemfiles/rails30.gemfile.lock +94 -0
  9. data/gemfiles/rails31.gemfile +7 -0
  10. data/gemfiles/rails31.gemfile.lock +105 -0
  11. data/gemfiles/rails32.gemfile +7 -0
  12. data/gemfiles/rails32.gemfile.lock +104 -0
  13. data/gemfiles/rails40.gemfile +7 -0
  14. data/gemfiles/rails40.gemfile.lock +107 -0
  15. data/lib/minitest-spec-rails.rb +4 -5
  16. data/lib/minitest-spec-rails/init/action_controller.rb +11 -19
  17. data/lib/minitest-spec-rails/init/action_mailer.rb +5 -22
  18. data/lib/minitest-spec-rails/init/action_view.rb +15 -33
  19. data/lib/minitest-spec-rails/init/active_support.rb +11 -19
  20. data/lib/minitest-spec-rails/railtie.rb +17 -0
  21. data/lib/minitest-spec-rails/version.rb +1 -1
  22. data/lib/test/unit.rb +5 -0
  23. data/lib/test/unit/assertions.rb +5 -0
  24. data/lib/test/unit/testcase.rb +31 -0
  25. data/minitest-spec-rails.gemspec +3 -4
  26. data/test/cases/action_dispatch_test.rb +2 -2
  27. data/test/cases/active_support_test.rb +5 -17
  28. data/test/cases/minitest_spec_rails_test.rb +11 -0
  29. data/test/dummy_app/app/controllers/users_controller.rb +0 -4
  30. data/test/dummy_app/app/helpers/application_helper.rb +1 -0
  31. data/test/dummy_app/app/mailers/user_mailer.rb +10 -0
  32. data/test/dummy_app/app/models/user.rb +0 -3
  33. data/test/dummy_app/app/views/users/{index.rhtml → index.html.erb} +0 -0
  34. data/test/dummy_app/config/database.yml +5 -2
  35. data/test/dummy_app/config/routes.rb +3 -5
  36. data/test/dummy_app/init.rb +32 -8
  37. data/test/dummy_app/{db/schema.rb → tmp/.gitkeep} +0 -0
  38. data/test/dummy_tests/application_controller_test.rb +23 -67
  39. data/test/dummy_tests/integration_test.rb +22 -13
  40. data/test/dummy_tests/user_mailer_test.rb +27 -65
  41. data/test/dummy_tests/user_test.rb +14 -50
  42. data/test/dummy_tests/users_controller_test.rb +6 -13
  43. data/test/dummy_tests/users_helper_test.rb +19 -55
  44. data/test/support/shared_test_case_behavior.rb +16 -10
  45. data/test/test_helper.rb +2 -2
  46. data/test/test_helper_dummy.rb +2 -0
  47. metadata +33 -75
  48. data/Guardfile +0 -7
  49. data/lib/minitest-spec-rails/dsl.rb +0 -52
  50. data/lib/minitest-spec-rails/init/action_dispatch.rb +0 -17
  51. data/lib/minitest-spec-rails/init/mini_shoulda.rb +0 -47
  52. data/lib/minitest-spec-rails/rails.rb +0 -7
  53. data/test/cases/mini_shoulda_test.rb +0 -38
  54. data/test/dummy_app/app/helpers/foos_helper.rb +0 -5
  55. data/test/dummy_app/app/models/post.rb +0 -6
  56. data/test/dummy_app/app/models/user_mailer.rb +0 -10
  57. data/test/dummy_app/app/views/user_mailer/welcome.erb +0 -1
  58. data/test/dummy_app/config/boot.rb +0 -126
  59. data/test/dummy_app/config/environment.rb +0 -12
  60. data/test/dummy_app/config/environments/test.rb +0 -28
  61. data/test/dummy_app/config/initializers/new_rails_defaults.rb +0 -15
  62. data/test/dummy_app/lib/library.rb +0 -2
  63. data/test/dummy_app/log/.keep +0 -0
  64. data/test/dummy_app/public/.htaccess +0 -40
  65. data/test/dummy_app/public/404.html +0 -30
  66. data/test/dummy_app/public/422.html +0 -30
  67. data/test/dummy_app/public/500.html +0 -30
  68. data/test/dummy_app/script/console +0 -3
  69. data/test/dummy_app/script/generate +0 -3
  70. data/test/dummy_tests/foo_helper_test.rb +0 -12
  71. data/test/dummy_tests/library_test.rb +0 -16
@@ -1,9 +1,12 @@
1
1
  rvm:
2
2
  - 1.8.7
3
3
  - 1.9.3
4
- before_install:
5
- - gem update --system 1.8.25
6
- - gem install bundler
7
- - bundle --version
8
- before_script:
9
- - bundle install
4
+ gemfile:
5
+ - gemfiles/rails30.gemfile
6
+ - gemfiles/rails31.gemfile
7
+ - gemfiles/rails32.gemfile
8
+ - gemfiles/rails40.gemfile
9
+ matrix:
10
+ exclude:
11
+ - rvm: 1.8.7
12
+ gemfile: gemfiles/rails40.gemfile
@@ -0,0 +1,17 @@
1
+
2
+ appraise 'rails30' do
3
+ gem 'rails', '~> 3.0.0'
4
+ end
5
+
6
+ appraise 'rails31' do
7
+ gem 'rails', '~> 3.1.0'
8
+ end
9
+
10
+ appraise 'rails32' do
11
+ gem 'rails', '~> 3.2.0'
12
+ end
13
+
14
+ appraise 'rails40' do
15
+ gem 'rails', :github => 'rails/rails'
16
+ end
17
+
@@ -1,17 +1,8 @@
1
1
 
2
- ## v3.1.2
2
+ ## v4.3.0
3
3
 
4
- * Register non ActiveRecord::Base classes correctly. Thanks @mptre.
5
-
6
-
7
- ## v3.1.1
8
-
9
- * Only use a TU shim for Ruby 1.8. See README for info.
10
-
11
-
12
- ## v3.1.0
13
-
14
- * Reborn and back! Fully supports Rails 2.3.
4
+ * All new MiniTest::Spec for Rails!!! Tested to the hilt!!!
5
+ * Track MiniTest's major/minior version number.
15
6
 
16
7
 
17
8
  ## v3.0.7
data/Gemfile CHANGED
@@ -1,6 +1,4 @@
1
- source 'https://rubygems.org'
1
+ source :rubygems
2
2
 
3
3
  gemspec
4
4
 
5
- gem 'minitest-spec-rails-tu-shim' if RUBY_VERSION < '1.9'
6
-
data/README.md CHANGED
@@ -3,8 +3,117 @@
3
3
 
4
4
  # Make Rails Use MiniTest::Spec!
5
5
 
6
- Always read the latest:
7
6
 
8
- https://github.com/metaskills/minitest-spec-rails#for-rails-23
7
+ Rails 4 was on its way to using MiniTest::Spec as the superclass for ActiveSupport::TestCase. But in one of many reversals, the work was [pulled by this commit](http://github.com/rails/rails/commit/b22c527e65a41da59dbfcb078968069c6fae5086). DHH says that [Rails is omakase](http://david.heinemeierhansson.com/2012/rails-is-omakase.html) and I am cool with that. But since Ruby is wide open for us to change it and we are free in DHH's words to "freedom patch" what we see fit, we can fix Rails.
9
8
 
9
+ The minitest-spec-rails gem makes it easy to use the MiniTest::Spec DSL within your existing Rails 3 or 4 test suite. It does this by forcing ActiveSupport::TestCase to subclass MiniTest::Spec.
10
+
11
+ [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.png)](http://travis-ci.org/metaskills/minitest-spec-rails)
12
+
13
+
14
+ ## Usage
15
+
16
+ Existing or new Rails 3 or 4 applications that use the default Rails testing structure can simply drop in the minitest-spec-gem and start writing their tests in the new spec DSL. Since MinitTest::Spec is built on top of MiniTest::Unit, a replacement for Test::Unit, all of your existing tests will continue to work.
17
+
18
+ This gem uses no generators and does not require you to write your tests in a new directory or file structure. It is completely different than [minitest-rails](https://github.com/blowmage/minitest-rails) which is setup more like RSpec in the way it bolts on the side of Rails. The goal of this project is to make Rails 3 or 4 applications just work as if rails-core had decided to support MiniTest::Spec. Eventually that day will come and if it does, all your tests will still work! So bundle up and get started!
19
+
20
+ ```ruby
21
+ gem 'minitest-spec-rails'
22
+ ```
23
+
24
+
25
+ ## Test Styles
26
+
27
+ This <a href="http://cheat.errtheblog.com/s/minitest">cheat sheet</a> shows both the MiniTest::Unit assertions along with the MiniTest::Spec assertion syntax. Remember, MiniTest::Spec is build on top of MiniTest::Unit which is a Test::Unit replacement. That means you can mix and match styles as you upgrade from Test::Unit to a more modern style. For example, both of these would work in MiniTest::Spec and are interchangeable.
28
+
29
+ ```ruby
30
+ # MiniTest::Unit Assertion Style:
31
+ assert_equal 100, foo
32
+
33
+ # MiniTest::Spec Assertion Style:
34
+ foo.must_equal 100
35
+ ```
36
+
37
+ All existing Rails test cases that subclass ActiveSupport::TestCase will continue to work and I personally suggest that you still use what I call the subclass convention vs the outer describe test case convention. However either will work.
38
+
39
+ ```ruby
40
+ require 'test_helper'
41
+ class UserTest < ActiveSupport::TestCase
42
+ let(:user_ken) { User.create! :email => 'ken@metaskills.net' }
43
+ it 'works' do
44
+ user_ken.must_be_instance_of User
45
+ end
46
+ end
47
+ ```
48
+
49
+ ```ruby
50
+ require 'test_helper'
51
+ describe User do
52
+ # This will work too.
53
+ end
54
+ ```
55
+
56
+ Just for reference, here is a full list of each of Rails test case classes and the matching describe alternative if one exists. Remember, names are important when using the describe syntax. So you can not have a mailer named `FooBar` and expect it to work with the outer describe spec style since there is no way to map the spec type based on an existing naming convention.
57
+
58
+ ```ruby
59
+ # Model Test
60
+ class UserTest < ActiveSupport::TestCase
61
+ end
62
+ describe User do
63
+ end
64
+
65
+ # Controller Test
66
+ class UsersControllerTest < ActionController::TestCase
67
+ end
68
+ describe UsersController do
69
+ end
70
+
71
+ # Integration Tests - Must use subclass style!
72
+ class IntegrationTest < ActionDispatch::IntegrationTest
73
+ end
74
+
75
+ # Mailer Test
76
+ class UserMailerTest < ActionMailer::TestCase
77
+ end
78
+ describe UserMailer do
79
+ end
80
+
81
+ # View Helper Test
82
+ class UsersHelperTest < ActionView::TestCase
83
+ end
84
+ describe UsersHelper do
85
+ end
86
+ ```
87
+
88
+
89
+
90
+ ## Gotchas
91
+
92
+ If you are upgrading from Test::Unit, there are a few missing assertions that have been renamed or are no longer available within MiniTest.
93
+
94
+ * The method `assert_raise` is renamed `assert_raises`.
95
+ * There is no method `assert_nothing_raised`. There are good reasons for this on [Ryan's blog entry](http://blog.zenspider.com/blog/2012/01/assert_nothing_tested.html).
96
+
97
+ If you are using minitest-spec-rails with Rails 3.0, then your controller or mailer tests will need to use the `tests` interface for the test to be setup correct within sub `describe` blocks. I think this is a bug with `class_attribute` within Rails 3.0. Rails 3.1 and higher does not exhibit this problem.
98
+
99
+
100
+ ## Contributing
101
+
102
+ The minitest-spec-rails gem is fully tested from Rails 3.0 to 4 and upward. We run our tests on [Travis CI](http://travis-ci.org/metaskills/minitest-spec-rails) in both Ruby 1.8 and 1.9. If you detect a problem, open up a github issue or fork the repo and help out. After you fork or clone the repository, the following commands will get you up and running on the test suite.
103
+
104
+ ```shell
105
+ $ bundle install
106
+ $ bundle exec rake appraisal:setup
107
+ $ bundle exec rake appraisal test
108
+ ```
109
+
110
+ We use the [appraisal](https://github.com/thoughtbot/appraisal) gem from Thoughtbot to help us generate the individual gemfiles for each Rails version and to run the tests locally against each generated Gemfile. The `rake appraisal test` command actually runs our test suite against all Rails versions in our `Appraisal` file. If you want to run the tests for a specific Rails version, use `rake -T` for a list. For example, the following command will run the tests for Rails 3.2 only.
111
+
112
+ ```shell
113
+ $ bundle exec rake appraisal:rails32 test
114
+ ```
115
+
116
+ Our current build status is:
117
+
118
+ [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.png)](http://travis-ci.org/metaskills/minitest-spec-rails)
10
119
 
data/Rakefile CHANGED
@@ -1,6 +1,7 @@
1
1
  require 'rubygems'
2
2
  require 'bundler/gem_tasks'
3
3
  require 'rake/testtask'
4
+ require 'appraisal'
4
5
 
5
6
  Rake::TestTask.new do |t|
6
7
  t.libs = ['lib','test']
@@ -9,3 +10,10 @@ Rake::TestTask.new do |t|
9
10
  end
10
11
 
11
12
  task :default => :test
13
+
14
+ desc "Setup Appraisal."
15
+ task 'appraisal:setup' do
16
+ Rake::Task['appraisal:cleanup'].invoke
17
+ Rake::Task['appraisal:gemfiles'].invoke
18
+ Rake::Task['appraisal:install'].invoke
19
+ end
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source :rubygems
4
+
5
+ gem "rails", "~> 3.0.0"
6
+
7
+ gemspec :path=>"../"
@@ -0,0 +1,94 @@
1
+ PATH
2
+ remote: /Users/kencollins/Repositories/minitest-spec-rails
3
+ specs:
4
+ minitest-spec-rails (4.3.0)
5
+ minitest (~> 4.3)
6
+ rails (>= 3.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ abstract (1.0.0)
12
+ actionmailer (3.0.19)
13
+ actionpack (= 3.0.19)
14
+ mail (~> 2.2.19)
15
+ actionpack (3.0.19)
16
+ activemodel (= 3.0.19)
17
+ activesupport (= 3.0.19)
18
+ builder (~> 2.1.2)
19
+ erubis (~> 2.6.6)
20
+ i18n (~> 0.5.0)
21
+ rack (~> 1.2.5)
22
+ rack-mount (~> 0.6.14)
23
+ rack-test (~> 0.5.7)
24
+ tzinfo (~> 0.3.23)
25
+ activemodel (3.0.19)
26
+ activesupport (= 3.0.19)
27
+ builder (~> 2.1.2)
28
+ i18n (~> 0.5.0)
29
+ activerecord (3.0.19)
30
+ activemodel (= 3.0.19)
31
+ activesupport (= 3.0.19)
32
+ arel (~> 2.0.10)
33
+ tzinfo (~> 0.3.23)
34
+ activeresource (3.0.19)
35
+ activemodel (= 3.0.19)
36
+ activesupport (= 3.0.19)
37
+ activesupport (3.0.19)
38
+ appraisal (0.5.1)
39
+ bundler
40
+ rake
41
+ arel (2.0.10)
42
+ builder (2.1.2)
43
+ erubis (2.6.6)
44
+ abstract (>= 1.0.0)
45
+ i18n (0.5.0)
46
+ json (1.7.6)
47
+ mail (2.2.19)
48
+ activesupport (>= 2.3.6)
49
+ i18n (>= 0.4.0)
50
+ mime-types (~> 1.16)
51
+ treetop (~> 1.4.8)
52
+ mime-types (1.19)
53
+ minitest (4.4.0)
54
+ minitest-emoji (1.0.0)
55
+ polyglot (0.3.3)
56
+ rack (1.2.7)
57
+ rack-mount (0.6.14)
58
+ rack (>= 1.0.0)
59
+ rack-test (0.5.7)
60
+ rack (>= 1.0)
61
+ rails (3.0.19)
62
+ actionmailer (= 3.0.19)
63
+ actionpack (= 3.0.19)
64
+ activerecord (= 3.0.19)
65
+ activeresource (= 3.0.19)
66
+ activesupport (= 3.0.19)
67
+ bundler (~> 1.0)
68
+ railties (= 3.0.19)
69
+ railties (3.0.19)
70
+ actionpack (= 3.0.19)
71
+ activesupport (= 3.0.19)
72
+ rake (>= 0.8.7)
73
+ rdoc (~> 3.4)
74
+ thor (~> 0.14.4)
75
+ rake (10.0.3)
76
+ rdoc (3.12)
77
+ json (~> 1.4)
78
+ sqlite3 (1.3.7)
79
+ thor (0.14.6)
80
+ treetop (1.4.12)
81
+ polyglot
82
+ polyglot (>= 0.3.1)
83
+ tzinfo (0.3.35)
84
+
85
+ PLATFORMS
86
+ ruby
87
+
88
+ DEPENDENCIES
89
+ appraisal
90
+ minitest-emoji
91
+ minitest-spec-rails!
92
+ rails (~> 3.0.0)
93
+ rake
94
+ sqlite3
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source :rubygems
4
+
5
+ gem "rails", "~> 3.1.0"
6
+
7
+ gemspec :path=>"../"
@@ -0,0 +1,105 @@
1
+ PATH
2
+ remote: /Users/kencollins/Repositories/minitest-spec-rails
3
+ specs:
4
+ minitest-spec-rails (4.3.0)
5
+ minitest (~> 4.3)
6
+ rails (>= 3.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (3.1.10)
12
+ actionpack (= 3.1.10)
13
+ mail (~> 2.3.3)
14
+ actionpack (3.1.10)
15
+ activemodel (= 3.1.10)
16
+ activesupport (= 3.1.10)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ i18n (~> 0.6)
20
+ rack (~> 1.3.6)
21
+ rack-cache (~> 1.2)
22
+ rack-mount (~> 0.8.2)
23
+ rack-test (~> 0.6.1)
24
+ sprockets (~> 2.0.4)
25
+ activemodel (3.1.10)
26
+ activesupport (= 3.1.10)
27
+ builder (~> 3.0.0)
28
+ i18n (~> 0.6)
29
+ activerecord (3.1.10)
30
+ activemodel (= 3.1.10)
31
+ activesupport (= 3.1.10)
32
+ arel (~> 2.2.3)
33
+ tzinfo (~> 0.3.29)
34
+ activeresource (3.1.10)
35
+ activemodel (= 3.1.10)
36
+ activesupport (= 3.1.10)
37
+ activesupport (3.1.10)
38
+ multi_json (>= 1.0, < 1.3)
39
+ appraisal (0.5.1)
40
+ bundler
41
+ rake
42
+ arel (2.2.3)
43
+ builder (3.0.4)
44
+ erubis (2.7.0)
45
+ hike (1.2.1)
46
+ i18n (0.6.1)
47
+ json (1.7.6)
48
+ mail (2.3.3)
49
+ i18n (>= 0.4.0)
50
+ mime-types (~> 1.16)
51
+ treetop (~> 1.4.8)
52
+ mime-types (1.19)
53
+ minitest (4.4.0)
54
+ minitest-emoji (1.0.0)
55
+ multi_json (1.2.0)
56
+ polyglot (0.3.3)
57
+ rack (1.3.9)
58
+ rack-cache (1.2)
59
+ rack (>= 0.4)
60
+ rack-mount (0.8.3)
61
+ rack (>= 1.0.0)
62
+ rack-ssl (1.3.2)
63
+ rack
64
+ rack-test (0.6.2)
65
+ rack (>= 1.0)
66
+ rails (3.1.10)
67
+ actionmailer (= 3.1.10)
68
+ actionpack (= 3.1.10)
69
+ activerecord (= 3.1.10)
70
+ activeresource (= 3.1.10)
71
+ activesupport (= 3.1.10)
72
+ bundler (~> 1.0)
73
+ railties (= 3.1.10)
74
+ railties (3.1.10)
75
+ actionpack (= 3.1.10)
76
+ activesupport (= 3.1.10)
77
+ rack-ssl (~> 1.3.2)
78
+ rake (>= 0.8.7)
79
+ rdoc (~> 3.4)
80
+ thor (~> 0.14.6)
81
+ rake (10.0.3)
82
+ rdoc (3.12)
83
+ json (~> 1.4)
84
+ sprockets (2.0.4)
85
+ hike (~> 1.2)
86
+ rack (~> 1.0)
87
+ tilt (~> 1.1, != 1.3.0)
88
+ sqlite3 (1.3.7)
89
+ thor (0.14.6)
90
+ tilt (1.3.3)
91
+ treetop (1.4.12)
92
+ polyglot
93
+ polyglot (>= 0.3.1)
94
+ tzinfo (0.3.35)
95
+
96
+ PLATFORMS
97
+ ruby
98
+
99
+ DEPENDENCIES
100
+ appraisal
101
+ minitest-emoji
102
+ minitest-spec-rails!
103
+ rails (~> 3.1.0)
104
+ rake
105
+ sqlite3
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source :rubygems
4
+
5
+ gem "rails", "~> 3.2.0"
6
+
7
+ gemspec :path=>"../"
@@ -0,0 +1,104 @@
1
+ PATH
2
+ remote: /Users/kencollins/Repositories/minitest-spec-rails
3
+ specs:
4
+ minitest-spec-rails (4.3.0)
5
+ minitest (~> 4.3)
6
+ rails (>= 3.0)
7
+
8
+ GEM
9
+ remote: http://rubygems.org/
10
+ specs:
11
+ actionmailer (3.2.11)
12
+ actionpack (= 3.2.11)
13
+ mail (~> 2.4.4)
14
+ actionpack (3.2.11)
15
+ activemodel (= 3.2.11)
16
+ activesupport (= 3.2.11)
17
+ builder (~> 3.0.0)
18
+ erubis (~> 2.7.0)
19
+ journey (~> 1.0.4)
20
+ rack (~> 1.4.0)
21
+ rack-cache (~> 1.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.2.1)
24
+ activemodel (3.2.11)
25
+ activesupport (= 3.2.11)
26
+ builder (~> 3.0.0)
27
+ activerecord (3.2.11)
28
+ activemodel (= 3.2.11)
29
+ activesupport (= 3.2.11)
30
+ arel (~> 3.0.2)
31
+ tzinfo (~> 0.3.29)
32
+ activeresource (3.2.11)
33
+ activemodel (= 3.2.11)
34
+ activesupport (= 3.2.11)
35
+ activesupport (3.2.11)
36
+ i18n (~> 0.6)
37
+ multi_json (~> 1.0)
38
+ appraisal (0.5.1)
39
+ bundler
40
+ rake
41
+ arel (3.0.2)
42
+ builder (3.0.4)
43
+ erubis (2.7.0)
44
+ hike (1.2.1)
45
+ i18n (0.6.1)
46
+ journey (1.0.4)
47
+ json (1.7.6)
48
+ mail (2.4.4)
49
+ i18n (>= 0.4.0)
50
+ mime-types (~> 1.16)
51
+ treetop (~> 1.4.8)
52
+ mime-types (1.19)
53
+ minitest (4.4.0)
54
+ minitest-emoji (1.0.0)
55
+ multi_json (1.5.0)
56
+ polyglot (0.3.3)
57
+ rack (1.4.4)
58
+ rack-cache (1.2)
59
+ rack (>= 0.4)
60
+ rack-ssl (1.3.2)
61
+ rack
62
+ rack-test (0.6.2)
63
+ rack (>= 1.0)
64
+ rails (3.2.11)
65
+ actionmailer (= 3.2.11)
66
+ actionpack (= 3.2.11)
67
+ activerecord (= 3.2.11)
68
+ activeresource (= 3.2.11)
69
+ activesupport (= 3.2.11)
70
+ bundler (~> 1.0)
71
+ railties (= 3.2.11)
72
+ railties (3.2.11)
73
+ actionpack (= 3.2.11)
74
+ activesupport (= 3.2.11)
75
+ rack-ssl (~> 1.3.2)
76
+ rake (>= 0.8.7)
77
+ rdoc (~> 3.4)
78
+ thor (>= 0.14.6, < 2.0)
79
+ rake (10.0.3)
80
+ rdoc (3.12)
81
+ json (~> 1.4)
82
+ sprockets (2.2.2)
83
+ hike (~> 1.2)
84
+ multi_json (~> 1.0)
85
+ rack (~> 1.0)
86
+ tilt (~> 1.1, != 1.3.0)
87
+ sqlite3 (1.3.7)
88
+ thor (0.16.0)
89
+ tilt (1.3.3)
90
+ treetop (1.4.12)
91
+ polyglot
92
+ polyglot (>= 0.3.1)
93
+ tzinfo (0.3.35)
94
+
95
+ PLATFORMS
96
+ ruby
97
+
98
+ DEPENDENCIES
99
+ appraisal
100
+ minitest-emoji
101
+ minitest-spec-rails!
102
+ rails (~> 3.2.0)
103
+ rake
104
+ sqlite3