shoulda-matchers 3.0.0.rc1 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +2 -3
  3. data/Gemfile.lock +12 -41
  4. data/NEWS.md +118 -26
  5. data/README.md +34 -11
  6. data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +0 -0
  7. data/doc_config/yard/templates/default/fulldoc/html/css/style.css +4 -0
  8. data/gemfiles/4.0.0.gemfile +2 -3
  9. data/gemfiles/4.0.0.gemfile.lock +47 -77
  10. data/gemfiles/4.0.1.gemfile +2 -3
  11. data/gemfiles/4.0.1.gemfile.lock +51 -79
  12. data/gemfiles/4.1.gemfile +2 -3
  13. data/gemfiles/4.1.gemfile.lock +73 -103
  14. data/gemfiles/4.2.gemfile +2 -3
  15. data/gemfiles/4.2.gemfile.lock +90 -124
  16. data/lib/shoulda/matchers.rb +1 -0
  17. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +6 -8
  18. data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +1 -3
  19. data/lib/shoulda/matchers/action_controller/flash_store.rb +1 -8
  20. data/lib/shoulda/matchers/action_controller/permit_matcher.rb +140 -88
  21. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +2 -5
  22. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +5 -10
  23. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +2 -4
  24. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +1 -3
  25. data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +3 -5
  26. data/lib/shoulda/matchers/action_controller/route_matcher.rb +5 -7
  27. data/lib/shoulda/matchers/action_controller/set_flash_matcher.rb +35 -9
  28. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +3 -3
  29. data/lib/shoulda/matchers/active_model.rb +57 -1
  30. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +2 -5
  31. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +162 -54
  32. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +5 -2
  33. data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +1 -3
  34. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +24 -11
  35. data/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +4 -3
  36. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +0 -2
  37. data/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +4 -3
  38. data/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +2 -1
  39. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +15 -13
  40. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +3 -3
  41. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +3 -3
  42. data/lib/shoulda/matchers/active_model/validate_exclusion_of_matcher.rb +4 -4
  43. data/lib/shoulda/matchers/active_model/validate_inclusion_of_matcher.rb +8 -8
  44. data/lib/shoulda/matchers/active_model/validate_length_of_matcher.rb +8 -8
  45. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +12 -14
  46. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +10 -4
  47. data/lib/shoulda/matchers/active_model/validation_matcher.rb +0 -3
  48. data/lib/shoulda/matchers/active_model/validator.rb +0 -8
  49. data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +4 -6
  50. data/lib/shoulda/matchers/active_record/association_matcher.rb +58 -43
  51. data/lib/shoulda/matchers/active_record/define_enum_for_matcher.rb +2 -2
  52. data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +3 -5
  53. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +3 -5
  54. data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +1 -4
  55. data/lib/shoulda/matchers/active_record/serialize_matcher.rb +3 -5
  56. data/lib/shoulda/matchers/active_record/validate_uniqueness_of_matcher.rb +7 -7
  57. data/lib/shoulda/matchers/doublespeak/double.rb +10 -1
  58. data/lib/shoulda/matchers/doublespeak/double_collection.rb +13 -5
  59. data/lib/shoulda/matchers/doublespeak/method_call.rb +10 -1
  60. data/lib/shoulda/matchers/doublespeak/object_double.rb +2 -1
  61. data/lib/shoulda/matchers/doublespeak/world.rb +10 -0
  62. data/lib/shoulda/matchers/error.rb +4 -0
  63. data/lib/shoulda/matchers/independent/delegate_method_matcher.rb +11 -10
  64. data/lib/shoulda/matchers/integrations/libraries.rb +1 -0
  65. data/lib/shoulda/matchers/integrations/libraries/action_controller.rb +1 -1
  66. data/lib/shoulda/matchers/integrations/libraries/active_model.rb +1 -1
  67. data/lib/shoulda/matchers/integrations/libraries/active_record.rb +1 -1
  68. data/lib/shoulda/matchers/integrations/libraries/rails.rb +2 -1
  69. data/lib/shoulda/matchers/integrations/libraries/routing.rb +27 -0
  70. data/lib/shoulda/matchers/integrations/test_frameworks/active_support_test_case.rb +1 -1
  71. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_4.rb +1 -1
  72. data/lib/shoulda/matchers/integrations/test_frameworks/minitest_5.rb +1 -1
  73. data/lib/shoulda/matchers/integrations/test_frameworks/missing_test_framework.rb +1 -1
  74. data/lib/shoulda/matchers/integrations/test_frameworks/rspec.rb +2 -2
  75. data/lib/shoulda/matchers/integrations/test_frameworks/test_unit.rb +1 -1
  76. data/lib/shoulda/matchers/routing.rb +10 -0
  77. data/lib/shoulda/matchers/version.rb +1 -1
  78. data/script/SUPPORTED_VERSIONS +1 -1
  79. data/spec/acceptance/independent_matchers_spec.rb +103 -42
  80. data/spec/doublespeak_spec_helper.rb +5 -1
  81. data/spec/support/acceptance/adds_shoulda_matchers_to_project.rb +34 -11
  82. data/spec/support/acceptance/helpers/rspec_helpers.rb +9 -13
  83. data/spec/support/acceptance/helpers/step_helpers.rb +13 -0
  84. data/spec/support/acceptance/matchers/have_output.rb +1 -1
  85. data/spec/support/acceptance/matchers/indicate_number_of_tests_was_run_matcher.rb +1 -1
  86. data/spec/support/tests/command_runner.rb +5 -1
  87. data/spec/support/unit/helpers/active_record_versions.rb +0 -4
  88. data/spec/support/unit/shared_examples/set_session_or_flash.rb +8 -3
  89. data/spec/unit/shoulda/matchers/action_controller/permit_matcher_spec.rb +198 -39
  90. data/spec/unit/shoulda/matchers/action_controller/route_matcher_spec.rb +269 -102
  91. data/spec/unit/shoulda/matchers/action_controller/set_flash_matcher_spec.rb +24 -0
  92. data/spec/unit/shoulda/matchers/active_model/allow_value_matcher_spec.rb +118 -101
  93. data/spec/unit/shoulda/matchers/active_model/disallow_value_matcher_spec.rb +0 -82
  94. data/spec/unit/shoulda/matchers/active_model/numericality_matchers/comparison_matcher_spec.rb +148 -121
  95. data/spec/unit/shoulda/matchers/active_model/validate_acceptance_of_matcher_spec.rb +20 -8
  96. data/spec/unit/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +64 -183
  97. data/spec/unit/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +14 -0
  98. data/spec/unit/shoulda/matchers/doublespeak/double_collection_spec.rb +60 -0
  99. data/spec/unit/shoulda/matchers/doublespeak/double_spec.rb +23 -7
  100. data/spec/unit/shoulda/matchers/routing/route_matcher_spec.rb +242 -0
  101. data/spec/unit_spec_helper.rb +4 -0
  102. data/tasks/documentation.rb +35 -0
  103. metadata +9 -8
  104. data/Guardfile +0 -5
  105. data/cucumber.yml +0 -1
  106. data/lib/shoulda/matchers/active_model/validator_with_captured_range_error.rb +0 -12
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/pry/pry.git
3
- revision: f0cbec507111743fdbc273735ea4f0f6164a5b21
3
+ revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
4
  specs:
5
5
  pry (0.10.1)
6
6
  coderay (~> 1.1.0)
@@ -27,7 +27,7 @@ GEM
27
27
  activerecord-deprecated_finders (~> 1.0.2)
28
28
  activesupport (= 4.0.0)
29
29
  arel (~> 4.0.0)
30
- activerecord-deprecated_finders (1.0.3)
30
+ activerecord-deprecated_finders (1.0.4)
31
31
  activeresource (4.0.0)
32
32
  activemodel (~> 4.0)
33
33
  activesupport (~> 4.0)
@@ -38,60 +38,39 @@ GEM
38
38
  multi_json (~> 1.3)
39
39
  thread_safe (~> 0.1)
40
40
  tzinfo (~> 0.3.37)
41
- ansi (1.4.3)
42
- appraisal (1.0.2)
41
+ ansi (1.5.0)
42
+ appraisal (2.1.0)
43
43
  bundler
44
44
  rake
45
45
  thor (>= 0.14.0)
46
46
  arel (4.0.2)
47
47
  bcrypt-ruby (3.0.1)
48
48
  builder (3.1.4)
49
- byebug (4.0.4)
49
+ byebug (5.0.0)
50
50
  columnize (= 0.9.0)
51
- celluloid (0.16.0)
52
- timers (~> 4.0.0)
53
51
  coderay (1.1.0)
54
52
  coffee-rails (4.0.1)
55
53
  coffee-script (>= 2.2.0)
56
54
  railties (>= 4.0.0, < 5.0)
57
- coffee-script (2.3.0)
55
+ coffee-script (2.4.1)
58
56
  coffee-script-source
59
57
  execjs
60
- coffee-script-source (1.9.0)
58
+ coffee-script-source (1.9.1.1)
61
59
  columnize (0.9.0)
62
60
  diff-lcs (1.2.5)
63
61
  erubis (2.7.0)
64
- execjs (2.3.0)
65
- ffi (1.9.8)
66
- formatador (0.2.5)
67
- guard (2.12.5)
68
- formatador (>= 0.2.4)
69
- listen (~> 2.7)
70
- lumberjack (~> 1.0)
71
- nenv (~> 0.1)
72
- notiffany (~> 0.0)
73
- pry (>= 0.9.12)
74
- shellany (~> 0.0)
75
- thor (>= 0.18.1)
76
- guard-yard (2.1.4)
77
- guard (>= 1.1.0)
78
- yard (>= 0.7.0)
79
- hashie (3.3.2)
62
+ execjs (2.6.0)
63
+ fssm (0.2.10)
64
+ hashie (3.4.2)
80
65
  hike (1.2.3)
81
- hitimes (1.2.2)
82
66
  i18n (0.7.0)
83
67
  jbuilder (1.5.3)
84
68
  activesupport (>= 3.0.0)
85
69
  multi_json (>= 1.2.0)
86
- jquery-rails (3.1.2)
70
+ jquery-rails (3.1.4)
87
71
  railties (>= 3.0, < 5.0)
88
72
  thor (>= 0.14, < 2.0)
89
- json (1.8.2)
90
- listen (2.10.0)
91
- celluloid (~> 0.16.0)
92
- rb-fsevent (>= 0.9.3)
93
- rb-inotify (>= 0.9)
94
- lumberjack (1.0.9)
73
+ json (1.8.3)
95
74
  mail (2.5.4)
96
75
  mime-types (~> 1.16)
97
76
  treetop (~> 1.4.8)
@@ -103,26 +82,22 @@ GEM
103
82
  builder
104
83
  minitest (>= 2.12, < 5.0)
105
84
  powerbar
106
- multi_json (1.10.1)
107
- nenv (0.2.0)
108
- notiffany (0.0.6)
109
- nenv (~> 0.1)
110
- shellany (~> 0.0)
111
- pg (0.18.1)
85
+ multi_json (1.11.2)
86
+ pg (0.18.3)
112
87
  polyglot (0.3.5)
113
- posix-spawn (0.3.9)
114
- powerbar (1.0.11)
115
- ansi (~> 1.4.0)
88
+ posix-spawn (0.3.11)
89
+ powerbar (1.0.12)
90
+ ansi (~> 1.5.0)
116
91
  hashie (>= 1.1.0)
117
92
  protected_attributes (1.0.3)
118
93
  activemodel (>= 4.0.0, < 5.0)
119
- pry-byebug (3.1.0)
120
- byebug (~> 4.0)
94
+ pry-byebug (3.2.0)
95
+ byebug (~> 5.0)
121
96
  pry (~> 0.10)
122
- pygments.rb (0.6.2)
97
+ pygments.rb (0.6.3)
123
98
  posix-spawn (~> 0.3.6)
124
99
  yajl-ruby (~> 1.2.0)
125
- rack (1.5.2)
100
+ rack (1.5.5)
126
101
  rack-test (0.6.3)
127
102
  rack (>= 1.0)
128
103
  rails (4.0.0)
@@ -141,29 +116,25 @@ GEM
141
116
  rake (>= 0.8.7)
142
117
  thor (>= 0.18.1, < 2.0)
143
118
  rake (10.4.2)
144
- rb-fsevent (0.9.4)
145
- rb-inotify (0.9.5)
146
- ffi (>= 0.5.0)
147
119
  rdoc (4.2.0)
148
- json (~> 1.4)
149
- redcarpet (3.2.2)
150
- rspec-core (3.2.0)
151
- rspec-support (~> 3.2.0)
152
- rspec-expectations (3.2.0)
120
+ redcarpet (3.3.2)
121
+ rspec-core (3.3.2)
122
+ rspec-support (~> 3.3.0)
123
+ rspec-expectations (3.3.1)
153
124
  diff-lcs (>= 1.2.0, < 2.0)
154
- rspec-support (~> 3.2.0)
155
- rspec-mocks (3.2.0)
125
+ rspec-support (~> 3.3.0)
126
+ rspec-mocks (3.3.2)
156
127
  diff-lcs (>= 1.2.0, < 2.0)
157
- rspec-support (~> 3.2.0)
158
- rspec-rails (3.2.0)
159
- actionpack (>= 3.0, <= 4.2)
160
- activesupport (>= 3.0, <= 4.2)
161
- railties (>= 3.0, <= 4.2)
162
- rspec-core (~> 3.2.0)
163
- rspec-expectations (~> 3.2.0)
164
- rspec-mocks (~> 3.2.0)
165
- rspec-support (~> 3.2.0)
166
- rspec-support (3.2.1)
128
+ rspec-support (~> 3.3.0)
129
+ rspec-rails (3.3.3)
130
+ actionpack (>= 3.0, < 4.3)
131
+ activesupport (>= 3.0, < 4.3)
132
+ railties (>= 3.0, < 4.3)
133
+ rspec-core (~> 3.3.0)
134
+ rspec-expectations (~> 3.3.0)
135
+ rspec-mocks (~> 3.3.0)
136
+ rspec-support (~> 3.3.0)
137
+ rspec-support (3.3.0)
167
138
  sass (3.2.19)
168
139
  sass-rails (4.0.5)
169
140
  railties (>= 4.0.0, < 5.0)
@@ -173,13 +144,12 @@ GEM
173
144
  sdoc (0.4.1)
174
145
  json (~> 1.7, >= 1.7.7)
175
146
  rdoc (~> 4.0)
176
- shellany (0.0.1)
177
147
  shoulda-context (1.2.1)
178
148
  slop (3.6.0)
179
- spring (1.2.0)
149
+ spring (1.4.0)
180
150
  spring-commands-rspec (1.0.4)
181
151
  spring (>= 0.9.1)
182
- sprockets (2.12.3)
152
+ sprockets (2.12.4)
183
153
  hike (~> 1.2)
184
154
  multi_json (~> 1.0)
185
155
  rack (~> 1.0)
@@ -190,17 +160,15 @@ GEM
190
160
  sprockets (~> 2.8)
191
161
  sqlite3 (1.3.10)
192
162
  thor (0.19.1)
193
- thread_safe (0.3.4)
163
+ thread_safe (0.3.5)
194
164
  tilt (1.4.1)
195
- timers (4.0.1)
196
- hitimes
197
165
  treetop (1.4.15)
198
166
  polyglot
199
167
  polyglot (>= 0.3.1)
200
168
  turbolinks (2.5.3)
201
169
  coffee-rails
202
- tzinfo (0.3.43)
203
- uglifier (2.7.0)
170
+ tzinfo (0.3.44)
171
+ uglifier (2.7.2)
204
172
  execjs (>= 0.3.0)
205
173
  json (>= 1.8.0)
206
174
  yajl-ruby (1.2.1)
@@ -213,12 +181,11 @@ DEPENDENCIES
213
181
  activerecord-jdbc-adapter
214
182
  activerecord-jdbcsqlite3-adapter
215
183
  activeresource (= 4.0.0)
216
- appraisal (~> 1.0)
184
+ appraisal (~> 2.0)
217
185
  bcrypt-ruby (~> 3.0.0)
218
186
  bundler (~> 1.1)
219
187
  coffee-rails (~> 4.0.0)
220
- guard
221
- guard-yard
188
+ fssm
222
189
  jbuilder (~> 1.2)
223
190
  jdbc-sqlite3
224
191
  jquery-rails
@@ -245,3 +212,6 @@ DEPENDENCIES
245
212
  turbolinks
246
213
  uglifier (>= 1.3.0)
247
214
  yard
215
+
216
+ BUNDLED WITH
217
+ 1.10.6
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "appraisal", "~> 1.0"
5
+ gem "appraisal", "~> 2.0"
6
6
  gem "bundler", "~> 1.1"
7
7
  gem "pry", :github => "pry/pry"
8
8
  gem "pry-byebug"
@@ -12,8 +12,7 @@ gem "rspec-expectations", ">= 3.2.0", "< 4"
12
12
  gem "yard"
13
13
  gem "redcarpet"
14
14
  gem "pygments.rb"
15
- gem "guard"
16
- gem "guard-yard"
15
+ gem "fssm"
17
16
  gem "rspec-rails", ">= 3.2.0", "< 4"
18
17
  gem "shoulda-context", "~> 1.2.0"
19
18
  gem "sqlite3", :platform => :ruby
@@ -1,6 +1,6 @@
1
1
  GIT
2
2
  remote: git://github.com/pry/pry.git
3
- revision: f0cbec507111743fdbc273735ea4f0f6164a5b21
3
+ revision: 3c138cbf94a44f7a6696afdab1ab5149d7541974
4
4
  specs:
5
5
  pry (0.10.1)
6
6
  coderay (~> 1.1.0)
@@ -27,7 +27,7 @@ GEM
27
27
  activerecord-deprecated_finders (~> 1.0.2)
28
28
  activesupport (= 4.0.1)
29
29
  arel (~> 4.0.0)
30
- activerecord-deprecated_finders (1.0.3)
30
+ activerecord-deprecated_finders (1.0.4)
31
31
  activeresource (4.0.0)
32
32
  activemodel (~> 4.0)
33
33
  activesupport (~> 4.0)
@@ -38,60 +38,41 @@ GEM
38
38
  multi_json (~> 1.3)
39
39
  thread_safe (~> 0.1)
40
40
  tzinfo (~> 0.3.37)
41
- ansi (1.4.3)
42
- appraisal (1.0.2)
41
+ ansi (1.5.0)
42
+ appraisal (2.1.0)
43
43
  bundler
44
44
  rake
45
45
  thor (>= 0.14.0)
46
46
  arel (4.0.2)
47
- bcrypt-ruby (3.1.2)
47
+ bcrypt (3.1.10)
48
+ bcrypt-ruby (3.1.5)
49
+ bcrypt (>= 3.1.3)
48
50
  builder (3.1.4)
49
- byebug (4.0.4)
51
+ byebug (5.0.0)
50
52
  columnize (= 0.9.0)
51
- celluloid (0.16.0)
52
- timers (~> 4.0.0)
53
53
  coderay (1.1.0)
54
54
  coffee-rails (4.0.1)
55
55
  coffee-script (>= 2.2.0)
56
56
  railties (>= 4.0.0, < 5.0)
57
- coffee-script (2.3.0)
57
+ coffee-script (2.4.1)
58
58
  coffee-script-source
59
59
  execjs
60
- coffee-script-source (1.9.0)
60
+ coffee-script-source (1.9.1.1)
61
61
  columnize (0.9.0)
62
62
  diff-lcs (1.2.5)
63
63
  erubis (2.7.0)
64
- execjs (2.3.0)
65
- ffi (1.9.8)
66
- formatador (0.2.5)
67
- guard (2.12.5)
68
- formatador (>= 0.2.4)
69
- listen (~> 2.7)
70
- lumberjack (~> 1.0)
71
- nenv (~> 0.1)
72
- notiffany (~> 0.0)
73
- pry (>= 0.9.12)
74
- shellany (~> 0.0)
75
- thor (>= 0.18.1)
76
- guard-yard (2.1.4)
77
- guard (>= 1.1.0)
78
- yard (>= 0.7.0)
79
- hashie (3.3.2)
64
+ execjs (2.6.0)
65
+ fssm (0.2.10)
66
+ hashie (3.4.2)
80
67
  hike (1.2.3)
81
- hitimes (1.2.2)
82
68
  i18n (0.7.0)
83
69
  jbuilder (1.5.3)
84
70
  activesupport (>= 3.0.0)
85
71
  multi_json (>= 1.2.0)
86
- jquery-rails (3.1.2)
72
+ jquery-rails (3.1.4)
87
73
  railties (>= 3.0, < 5.0)
88
74
  thor (>= 0.14, < 2.0)
89
- json (1.8.2)
90
- listen (2.10.0)
91
- celluloid (~> 0.16.0)
92
- rb-fsevent (>= 0.9.3)
93
- rb-inotify (>= 0.9)
94
- lumberjack (1.0.9)
75
+ json (1.8.3)
95
76
  mail (2.5.4)
96
77
  mime-types (~> 1.16)
97
78
  treetop (~> 1.4.8)
@@ -103,26 +84,22 @@ GEM
103
84
  builder
104
85
  minitest (>= 2.12, < 5.0)
105
86
  powerbar
106
- multi_json (1.10.1)
107
- nenv (0.2.0)
108
- notiffany (0.0.6)
109
- nenv (~> 0.1)
110
- shellany (~> 0.0)
111
- pg (0.18.1)
87
+ multi_json (1.11.2)
88
+ pg (0.18.3)
112
89
  polyglot (0.3.5)
113
- posix-spawn (0.3.9)
114
- powerbar (1.0.11)
115
- ansi (~> 1.4.0)
90
+ posix-spawn (0.3.11)
91
+ powerbar (1.0.12)
92
+ ansi (~> 1.5.0)
116
93
  hashie (>= 1.1.0)
117
- protected_attributes (1.0.8)
94
+ protected_attributes (1.1.3)
118
95
  activemodel (>= 4.0.1, < 5.0)
119
- pry-byebug (3.1.0)
120
- byebug (~> 4.0)
96
+ pry-byebug (3.2.0)
97
+ byebug (~> 5.0)
121
98
  pry (~> 0.10)
122
- pygments.rb (0.6.2)
99
+ pygments.rb (0.6.3)
123
100
  posix-spawn (~> 0.3.6)
124
101
  yajl-ruby (~> 1.2.0)
125
- rack (1.5.2)
102
+ rack (1.5.5)
126
103
  rack-test (0.6.3)
127
104
  rack (>= 1.0)
128
105
  rails (4.0.1)
@@ -141,29 +118,25 @@ GEM
141
118
  rake (>= 0.8.7)
142
119
  thor (>= 0.18.1, < 2.0)
143
120
  rake (10.4.2)
144
- rb-fsevent (0.9.4)
145
- rb-inotify (0.9.5)
146
- ffi (>= 0.5.0)
147
121
  rdoc (4.2.0)
148
- json (~> 1.4)
149
- redcarpet (3.2.2)
150
- rspec-core (3.2.0)
151
- rspec-support (~> 3.2.0)
152
- rspec-expectations (3.2.0)
122
+ redcarpet (3.3.2)
123
+ rspec-core (3.3.2)
124
+ rspec-support (~> 3.3.0)
125
+ rspec-expectations (3.3.1)
153
126
  diff-lcs (>= 1.2.0, < 2.0)
154
- rspec-support (~> 3.2.0)
155
- rspec-mocks (3.2.0)
127
+ rspec-support (~> 3.3.0)
128
+ rspec-mocks (3.3.2)
156
129
  diff-lcs (>= 1.2.0, < 2.0)
157
- rspec-support (~> 3.2.0)
158
- rspec-rails (3.2.0)
159
- actionpack (>= 3.0, <= 4.2)
160
- activesupport (>= 3.0, <= 4.2)
161
- railties (>= 3.0, <= 4.2)
162
- rspec-core (~> 3.2.0)
163
- rspec-expectations (~> 3.2.0)
164
- rspec-mocks (~> 3.2.0)
165
- rspec-support (~> 3.2.0)
166
- rspec-support (3.2.1)
130
+ rspec-support (~> 3.3.0)
131
+ rspec-rails (3.3.3)
132
+ actionpack (>= 3.0, < 4.3)
133
+ activesupport (>= 3.0, < 4.3)
134
+ railties (>= 3.0, < 4.3)
135
+ rspec-core (~> 3.3.0)
136
+ rspec-expectations (~> 3.3.0)
137
+ rspec-mocks (~> 3.3.0)
138
+ rspec-support (~> 3.3.0)
139
+ rspec-support (3.3.0)
167
140
  sass (3.2.19)
168
141
  sass-rails (4.0.5)
169
142
  railties (>= 4.0.0, < 5.0)
@@ -173,13 +146,12 @@ GEM
173
146
  sdoc (0.4.1)
174
147
  json (~> 1.7, >= 1.7.7)
175
148
  rdoc (~> 4.0)
176
- shellany (0.0.1)
177
149
  shoulda-context (1.2.1)
178
150
  slop (3.6.0)
179
- spring (1.2.0)
151
+ spring (1.4.0)
180
152
  spring-commands-rspec (1.0.4)
181
153
  spring (>= 0.9.1)
182
- sprockets (2.12.3)
154
+ sprockets (2.12.4)
183
155
  hike (~> 1.2)
184
156
  multi_json (~> 1.0)
185
157
  rack (~> 1.0)
@@ -190,17 +162,15 @@ GEM
190
162
  sprockets (~> 2.8)
191
163
  sqlite3 (1.3.10)
192
164
  thor (0.19.1)
193
- thread_safe (0.3.4)
165
+ thread_safe (0.3.5)
194
166
  tilt (1.4.1)
195
- timers (4.0.1)
196
- hitimes
197
167
  treetop (1.4.15)
198
168
  polyglot
199
169
  polyglot (>= 0.3.1)
200
170
  turbolinks (2.5.3)
201
171
  coffee-rails
202
- tzinfo (0.3.43)
203
- uglifier (2.7.0)
172
+ tzinfo (0.3.44)
173
+ uglifier (2.7.2)
204
174
  execjs (>= 0.3.0)
205
175
  json (>= 1.8.0)
206
176
  yajl-ruby (1.2.1)
@@ -213,12 +183,11 @@ DEPENDENCIES
213
183
  activerecord-jdbc-adapter
214
184
  activerecord-jdbcsqlite3-adapter
215
185
  activeresource (= 4.0.0)
216
- appraisal (~> 1.0)
186
+ appraisal (~> 2.0)
217
187
  bcrypt-ruby (~> 3.1.2)
218
188
  bundler (~> 1.1)
219
189
  coffee-rails (~> 4.0.0)
220
- guard
221
- guard-yard
190
+ fssm
222
191
  jbuilder (~> 1.2)
223
192
  jdbc-sqlite3
224
193
  jquery-rails
@@ -245,3 +214,6 @@ DEPENDENCIES
245
214
  turbolinks
246
215
  uglifier (>= 1.3.0)
247
216
  yard
217
+
218
+ BUNDLED WITH
219
+ 1.10.6