shoulda-matchers 2.6.1 → 2.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +9 -0
  4. data/.yardopts +8 -0
  5. data/Appraisals +82 -33
  6. data/Gemfile +18 -2
  7. data/Gemfile.lock +13 -1
  8. data/NEWS.md +27 -2
  9. data/README.md +83 -1329
  10. data/Rakefile +118 -1
  11. data/cucumber.yml +1 -0
  12. data/doc_config/gh-pages/index.html.erb +9 -0
  13. data/doc_config/yard/setup.rb +22 -0
  14. data/doc_config/yard/templates/default/fulldoc/html/css/bootstrap.css +5967 -0
  15. data/doc_config/yard/templates/default/fulldoc/html/css/full_list.css +12 -0
  16. data/doc_config/yard/templates/default/fulldoc/html/css/global.css +45 -0
  17. data/doc_config/yard/templates/default/fulldoc/html/css/solarized.css +69 -0
  18. data/doc_config/yard/templates/default/fulldoc/html/css/style.css +283 -0
  19. data/doc_config/yard/templates/default/fulldoc/html/full_list.erb +32 -0
  20. data/doc_config/yard/templates/default/fulldoc/html/full_list_class.erb +1 -0
  21. data/doc_config/yard/templates/default/fulldoc/html/full_list_method.erb +8 -0
  22. data/doc_config/yard/templates/default/fulldoc/html/js/app.js +298 -0
  23. data/doc_config/yard/templates/default/fulldoc/html/js/full_list.js +1 -0
  24. data/doc_config/yard/templates/default/fulldoc/html/js/jquery.stickyheaders.js +289 -0
  25. data/doc_config/yard/templates/default/fulldoc/html/js/underscore.min.js +6 -0
  26. data/doc_config/yard/templates/default/fulldoc/html/setup.rb +8 -0
  27. data/doc_config/yard/templates/default/layout/html/breadcrumb.erb +14 -0
  28. data/doc_config/yard/templates/default/layout/html/fonts.erb +1 -0
  29. data/doc_config/yard/templates/default/layout/html/layout.erb +23 -0
  30. data/doc_config/yard/templates/default/layout/html/search.erb +13 -0
  31. data/doc_config/yard/templates/default/layout/html/setup.rb +40 -0
  32. data/doc_config/yard/templates/default/method_details/html/source.erb +10 -0
  33. data/doc_config/yard/templates/default/module/html/box_info.erb +31 -0
  34. data/docs.watchr +5 -0
  35. data/features/rails_integration.feature +32 -0
  36. data/features/step_definitions/rails_steps.rb +55 -9
  37. data/features/support/env.rb +1 -0
  38. data/gemfiles/3.0.gemfile +13 -1
  39. data/gemfiles/3.0.gemfile.lock +13 -1
  40. data/gemfiles/3.1.gemfile +17 -2
  41. data/gemfiles/3.1.gemfile.lock +31 -2
  42. data/gemfiles/3.1_1.9.2.gemfile +33 -0
  43. data/gemfiles/3.1_1.9.2.gemfile.lock +203 -0
  44. data/gemfiles/3.2.gemfile +18 -2
  45. data/gemfiles/3.2.gemfile.lock +32 -2
  46. data/gemfiles/3.2_1.9.2.gemfile +32 -0
  47. data/gemfiles/3.2_1.9.2.gemfile.lock +200 -0
  48. data/gemfiles/4.0.0.gemfile +20 -1
  49. data/gemfiles/4.0.0.gemfile.lock +46 -2
  50. data/gemfiles/4.0.1.gemfile +20 -1
  51. data/gemfiles/4.0.1.gemfile.lock +46 -2
  52. data/gemfiles/4.1.gemfile +21 -2
  53. data/gemfiles/4.1.gemfile.lock +47 -4
  54. data/lib/shoulda/matchers/action_controller.rb +0 -20
  55. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +119 -28
  56. data/lib/shoulda/matchers/action_controller/filter_param_matcher.rb +22 -6
  57. data/lib/shoulda/matchers/action_controller/redirect_to_matcher.rb +43 -10
  58. data/lib/shoulda/matchers/action_controller/render_template_matcher.rb +40 -13
  59. data/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb +63 -11
  60. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +34 -1
  61. data/lib/shoulda/matchers/action_controller/respond_with_matcher.rb +84 -15
  62. data/lib/shoulda/matchers/action_controller/route_matcher.rb +84 -28
  63. data/lib/shoulda/matchers/action_controller/route_params.rb +4 -3
  64. data/lib/shoulda/matchers/action_controller/set_session_matcher.rb +76 -13
  65. data/lib/shoulda/matchers/action_controller/set_the_flash_matcher.rb +147 -13
  66. data/lib/shoulda/matchers/action_controller/strong_parameters_matcher.rb +148 -2
  67. data/lib/shoulda/matchers/active_model.rb +0 -25
  68. data/lib/shoulda/matchers/active_model/allow_mass_assignment_of_matcher.rb +66 -9
  69. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +161 -19
  70. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +5 -5
  71. data/lib/shoulda/matchers/active_model/ensure_exclusion_of_matcher.rb +92 -13
  72. data/lib/shoulda/matchers/active_model/ensure_inclusion_of_matcher.rb +218 -16
  73. data/lib/shoulda/matchers/active_model/ensure_length_of_matcher.rb +198 -32
  74. data/lib/shoulda/matchers/active_model/errors.rb +5 -2
  75. data/lib/shoulda/matchers/active_model/exception_message_finder.rb +1 -1
  76. data/lib/shoulda/matchers/active_model/have_secure_password_matcher.rb +29 -8
  77. data/lib/shoulda/matchers/active_model/helpers.rb +20 -8
  78. data/lib/shoulda/matchers/active_model/numericality_matchers.rb +9 -0
  79. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +4 -6
  80. data/lib/shoulda/matchers/active_model/numericality_matchers/even_number_matcher.rb +4 -3
  81. data/lib/shoulda/matchers/active_model/numericality_matchers/numeric_type_matcher.rb +3 -2
  82. data/lib/shoulda/matchers/active_model/numericality_matchers/odd_number_matcher.rb +4 -3
  83. data/lib/shoulda/matchers/active_model/numericality_matchers/only_integer_matcher.rb +4 -3
  84. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +52 -14
  85. data/lib/shoulda/matchers/active_model/validate_acceptance_of_matcher.rb +51 -13
  86. data/lib/shoulda/matchers/active_model/validate_confirmation_of_matcher.rb +53 -7
  87. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +275 -19
  88. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +84 -14
  89. data/lib/shoulda/matchers/active_model/validate_uniqueness_of_matcher.rb +170 -41
  90. data/lib/shoulda/matchers/active_model/validation_matcher.rb +20 -15
  91. data/lib/shoulda/matchers/active_model/validation_message_finder.rb +1 -2
  92. data/lib/shoulda/matchers/active_record.rb +1 -12
  93. data/lib/shoulda/matchers/active_record/accept_nested_attributes_for_matcher.rb +89 -15
  94. data/lib/shoulda/matchers/active_record/association_matcher.rb +726 -70
  95. data/lib/shoulda/matchers/active_record/association_matchers.rb +9 -0
  96. data/lib/shoulda/matchers/active_record/association_matchers/counter_cache_matcher.rb +4 -3
  97. data/lib/shoulda/matchers/active_record/association_matchers/dependent_matcher.rb +4 -3
  98. data/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +4 -3
  99. data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +2 -1
  100. data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +4 -3
  101. data/lib/shoulda/matchers/active_record/association_matchers/option_verifier.rb +4 -5
  102. data/lib/shoulda/matchers/active_record/association_matchers/order_matcher.rb +4 -3
  103. data/lib/shoulda/matchers/active_record/association_matchers/source_matcher.rb +4 -3
  104. data/lib/shoulda/matchers/active_record/association_matchers/through_matcher.rb +4 -3
  105. data/lib/shoulda/matchers/active_record/have_db_column_matcher.rb +79 -15
  106. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +64 -15
  107. data/lib/shoulda/matchers/active_record/have_readonly_attribute_matcher.rb +21 -7
  108. data/lib/shoulda/matchers/active_record/serialize_matcher.rb +85 -10
  109. data/lib/shoulda/matchers/assertion_error.rb +7 -1
  110. data/lib/shoulda/matchers/doublespeak.rb +2 -1
  111. data/lib/shoulda/matchers/doublespeak/double.rb +3 -1
  112. data/lib/shoulda/matchers/doublespeak/double_collection.rb +2 -1
  113. data/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +1 -0
  114. data/lib/shoulda/matchers/doublespeak/object_double.rb +2 -1
  115. data/lib/shoulda/matchers/doublespeak/proxy_implementation.rb +2 -1
  116. data/lib/shoulda/matchers/doublespeak/structs.rb +2 -0
  117. data/lib/shoulda/matchers/doublespeak/stub_implementation.rb +2 -1
  118. data/lib/shoulda/matchers/doublespeak/world.rb +3 -4
  119. data/lib/shoulda/matchers/error.rb +1 -0
  120. data/lib/shoulda/matchers/independent/delegate_matcher.rb +108 -20
  121. data/lib/shoulda/matchers/independent/delegate_matcher/stubbed_target.rb +4 -3
  122. data/lib/shoulda/matchers/integrations/nunit_test_case_detection.rb +3 -0
  123. data/lib/shoulda/matchers/rails_shim.rb +3 -2
  124. data/lib/shoulda/matchers/version.rb +2 -1
  125. data/lib/shoulda/matchers/warn.rb +1 -0
  126. data/script/SUPPORTED_VERSIONS +1 -0
  127. data/script/install_gems_in_all_appraisals +14 -0
  128. data/script/run_all_tests +14 -0
  129. data/shoulda-matchers.gemspec +0 -10
  130. data/spec/report_warnings.rb +7 -0
  131. data/spec/shoulda/matchers/action_controller/route_matcher_spec.rb +1 -1
  132. data/spec/shoulda/matchers/action_controller/strong_parameters_matcher_spec.rb +9 -0
  133. data/spec/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +0 -36
  134. data/spec/shoulda/matchers/active_model/validation_message_finder_spec.rb +2 -2
  135. data/spec/shoulda/matchers/doublespeak/double_spec.rb +1 -1
  136. data/spec/shoulda/matchers/doublespeak/world_spec.rb +11 -29
  137. data/spec/shoulda/matchers/doublespeak_spec.rb +3 -3
  138. data/spec/spec_helper.rb +17 -0
  139. data/spec/support/class_builder.rb +4 -0
  140. data/spec/support/test_application.rb +1 -1
  141. data/spec/warnings_spy.rb +64 -0
  142. data/spec/warnings_spy/filesystem.rb +45 -0
  143. data/spec/warnings_spy/partitioner.rb +29 -0
  144. data/spec/warnings_spy/reader.rb +64 -0
  145. data/spec/warnings_spy/reporter.rb +87 -0
  146. metadata +49 -134
@@ -0,0 +1,32 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
+ gem "aruba"
7
+ gem "bourne", "~> 1.3"
8
+ gem "bundler", "~> 1.1"
9
+ gem "cucumber", "~> 1.1"
10
+ gem "pry"
11
+ gem "rake", ">= 0.9.2"
12
+ gem "rspec-rails", ">= 2.13.1", "< 3"
13
+ gem "yard"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
17
+ gem "shoulda-context", "~> 1.2.0"
18
+ gem "sqlite3", :platform=>:ruby
19
+ gem "activerecord-jdbc-adapter", :platform=>:jruby
20
+ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
21
+ gem "jdbc-sqlite3", :platform=>:jruby
22
+ gem "jruby-openssl", :platform=>:jruby
23
+ gem "therubyrhino", :platform=>:jruby
24
+ gem "strong_parameters"
25
+ gem "rails", "~> 3.2.13"
26
+ gem "bcrypt-ruby", "~> 3.0.0"
27
+ gem "jquery-rails"
28
+ gem "sass-rails", "~> 3.2.3"
29
+ gem "coffee-rails", "~> 3.2.1"
30
+ gem "uglifier", ">= 1.0.3"
31
+
32
+ gemspec :path=>".././"
@@ -0,0 +1,200 @@
1
+ PATH
2
+ remote: .././
3
+ specs:
4
+ shoulda-matchers (2.6.2)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.2.18)
11
+ actionpack (= 3.2.18)
12
+ mail (~> 2.5.4)
13
+ actionpack (3.2.18)
14
+ activemodel (= 3.2.18)
15
+ activesupport (= 3.2.18)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ journey (~> 1.0.4)
19
+ rack (~> 1.4.5)
20
+ rack-cache (~> 1.2)
21
+ rack-test (~> 0.6.1)
22
+ sprockets (~> 2.2.1)
23
+ activemodel (3.2.18)
24
+ activesupport (= 3.2.18)
25
+ builder (~> 3.0.0)
26
+ activerecord (3.2.18)
27
+ activemodel (= 3.2.18)
28
+ activesupport (= 3.2.18)
29
+ arel (~> 3.0.2)
30
+ tzinfo (~> 0.3.29)
31
+ activeresource (3.2.18)
32
+ activemodel (= 3.2.18)
33
+ activesupport (= 3.2.18)
34
+ activesupport (3.2.18)
35
+ i18n (~> 0.6, >= 0.6.4)
36
+ multi_json (~> 1.0)
37
+ appraisal (1.0.0)
38
+ bundler
39
+ rake
40
+ thor (>= 0.14.0)
41
+ arel (3.0.3)
42
+ aruba (0.5.4)
43
+ childprocess (>= 0.3.6)
44
+ cucumber (>= 1.1.1)
45
+ rspec-expectations (>= 2.7.0)
46
+ bcrypt-ruby (3.0.1)
47
+ bourne (1.5.0)
48
+ mocha (>= 0.13.2, < 0.15)
49
+ builder (3.0.4)
50
+ childprocess (0.5.3)
51
+ ffi (~> 1.0, >= 1.0.11)
52
+ coderay (1.1.0)
53
+ coffee-rails (3.2.2)
54
+ coffee-script (>= 2.2.0)
55
+ railties (~> 3.2.0)
56
+ coffee-script (2.2.0)
57
+ coffee-script-source
58
+ execjs
59
+ coffee-script-source (1.7.0)
60
+ cucumber (1.3.15)
61
+ builder (>= 2.1.2)
62
+ diff-lcs (>= 1.1.3)
63
+ gherkin (~> 2.12)
64
+ multi_json (>= 1.7.5, < 2.0)
65
+ multi_test (>= 0.1.1)
66
+ diff-lcs (1.2.5)
67
+ erubis (2.7.0)
68
+ execjs (2.2.0)
69
+ ffi (1.9.3)
70
+ gherkin (2.12.2)
71
+ multi_json (~> 1.3)
72
+ hike (1.2.3)
73
+ i18n (0.6.9)
74
+ journey (1.0.4)
75
+ jquery-rails (3.1.0)
76
+ railties (>= 3.0, < 5.0)
77
+ thor (>= 0.14, < 2.0)
78
+ json (1.8.1)
79
+ mail (2.5.4)
80
+ mime-types (~> 1.16)
81
+ treetop (~> 1.4.8)
82
+ metaclass (0.0.4)
83
+ method_source (0.8.2)
84
+ mime-types (1.25.1)
85
+ mocha (0.14.0)
86
+ metaclass (~> 0.0.1)
87
+ multi_json (1.10.1)
88
+ multi_test (0.1.1)
89
+ polyglot (0.3.5)
90
+ posix-spawn (0.3.8)
91
+ pry (0.10.0)
92
+ coderay (~> 1.1.0)
93
+ method_source (~> 0.8.1)
94
+ slop (~> 3.4)
95
+ pygments.rb (0.6.0)
96
+ posix-spawn (~> 0.3.6)
97
+ yajl-ruby (~> 1.1.0)
98
+ rack (1.4.5)
99
+ rack-cache (1.2)
100
+ rack (>= 0.4)
101
+ rack-ssl (1.3.4)
102
+ rack
103
+ rack-test (0.6.2)
104
+ rack (>= 1.0)
105
+ rails (3.2.18)
106
+ actionmailer (= 3.2.18)
107
+ actionpack (= 3.2.18)
108
+ activerecord (= 3.2.18)
109
+ activeresource (= 3.2.18)
110
+ activesupport (= 3.2.18)
111
+ bundler (~> 1.0)
112
+ railties (= 3.2.18)
113
+ railties (3.2.18)
114
+ actionpack (= 3.2.18)
115
+ activesupport (= 3.2.18)
116
+ rack-ssl (~> 1.3.2)
117
+ rake (>= 0.8.7)
118
+ rdoc (~> 3.4)
119
+ thor (>= 0.14.6, < 2.0)
120
+ rake (10.3.2)
121
+ rdoc (3.12.2)
122
+ json (~> 1.4)
123
+ redcarpet (3.1.2)
124
+ rspec-collection_matchers (1.0.0)
125
+ rspec-expectations (>= 2.99.0.beta1)
126
+ rspec-core (2.99.0)
127
+ rspec-expectations (2.99.0)
128
+ diff-lcs (>= 1.1.3, < 2.0)
129
+ rspec-mocks (2.99.1)
130
+ rspec-rails (2.99.0)
131
+ actionpack (>= 3.0)
132
+ activemodel (>= 3.0)
133
+ activesupport (>= 3.0)
134
+ railties (>= 3.0)
135
+ rspec-collection_matchers
136
+ rspec-core (~> 2.99.0)
137
+ rspec-expectations (~> 2.99.0)
138
+ rspec-mocks (~> 2.99.0)
139
+ sass (3.3.8)
140
+ sass-rails (3.2.6)
141
+ railties (~> 3.2.0)
142
+ sass (>= 3.1.10)
143
+ tilt (~> 1.3)
144
+ shoulda-context (1.2.1)
145
+ slop (3.5.0)
146
+ sprockets (2.2.2)
147
+ hike (~> 1.2)
148
+ multi_json (~> 1.0)
149
+ rack (~> 1.0)
150
+ tilt (~> 1.1, != 1.3.0)
151
+ sqlite3 (1.3.9)
152
+ strong_parameters (0.2.3)
153
+ actionpack (~> 3.0)
154
+ activemodel (~> 3.0)
155
+ activesupport (~> 3.0)
156
+ railties (~> 3.0)
157
+ thor (0.19.1)
158
+ tilt (1.4.1)
159
+ treetop (1.4.15)
160
+ polyglot
161
+ polyglot (>= 0.3.1)
162
+ tzinfo (0.3.39)
163
+ uglifier (2.5.1)
164
+ execjs (>= 0.3.0)
165
+ json (>= 1.8.0)
166
+ watchr (0.7)
167
+ yajl-ruby (1.1.0)
168
+ yard (0.8.7.4)
169
+
170
+ PLATFORMS
171
+ ruby
172
+
173
+ DEPENDENCIES
174
+ activerecord-jdbc-adapter
175
+ activerecord-jdbcsqlite3-adapter
176
+ appraisal (~> 1.0.0.beta2)
177
+ aruba
178
+ bcrypt-ruby (~> 3.0.0)
179
+ bourne (~> 1.3)
180
+ bundler (~> 1.1)
181
+ coffee-rails (~> 3.2.1)
182
+ cucumber (~> 1.1)
183
+ jdbc-sqlite3
184
+ jquery-rails
185
+ jruby-openssl
186
+ pry
187
+ pygments.rb
188
+ rails (~> 3.2.13)
189
+ rake (>= 0.9.2)
190
+ redcarpet
191
+ rspec-rails (>= 2.13.1, < 3)
192
+ sass-rails (~> 3.2.3)
193
+ shoulda-context (~> 1.2.0)
194
+ shoulda-matchers!
195
+ sqlite3
196
+ strong_parameters
197
+ therubyrhino
198
+ uglifier (>= 1.0.3)
199
+ watchr
200
+ yard
@@ -2,6 +2,18 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
+ gem "aruba"
7
+ gem "bourne", "~> 1.3"
8
+ gem "bundler", "~> 1.1"
9
+ gem "cucumber", "~> 1.1"
10
+ gem "pry"
11
+ gem "rake", ">= 0.9.2"
12
+ gem "rspec-rails", ">= 2.13.1", "< 3"
13
+ gem "yard"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
5
17
  gem "shoulda-context", "~> 1.2.0"
6
18
  gem "sqlite3", :platform=>:ruby
7
19
  gem "activerecord-jdbc-adapter", :platform=>:jruby
@@ -9,11 +21,18 @@ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
9
21
  gem "jdbc-sqlite3", :platform=>:jruby
10
22
  gem "jruby-openssl", :platform=>:jruby
11
23
  gem "therubyrhino", :platform=>:jruby
24
+ gem "spring"
25
+ gem "spring-commands-rspec"
26
+ gem "uglifier", ">= 1.3.0"
27
+ gem "coffee-rails", "~> 4.0.0"
12
28
  gem "jquery-rails"
29
+ gem "turbolinks"
30
+ gem "jbuilder", "~> 1.2"
31
+ gem "sdoc"
13
32
  gem "activeresource", "4.0.0"
14
33
  gem "protected_attributes"
15
34
  gem "rails", "4.0.0"
16
- gem "sass-rails", "4.0.0"
35
+ gem "sass-rails", "~> 4.0.0"
17
36
  gem "bcrypt-ruby", "~> 3.0.0"
18
37
 
19
38
  gemspec :path=>".././"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.6.1)
4
+ shoulda-matchers (2.6.2)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
@@ -52,6 +52,13 @@ GEM
52
52
  childprocess (0.3.9)
53
53
  ffi (~> 1.0, >= 1.0.11)
54
54
  coderay (1.1.0)
55
+ coffee-rails (4.0.1)
56
+ coffee-script (>= 2.2.0)
57
+ railties (>= 4.0.0, < 5.0)
58
+ coffee-script (2.2.0)
59
+ coffee-script-source
60
+ execjs
61
+ coffee-script-source (1.7.0)
55
62
  cucumber (1.3.10)
56
63
  builder (>= 2.1.2)
57
64
  diff-lcs (>= 1.1.3)
@@ -60,14 +67,19 @@ GEM
60
67
  multi_test (>= 0.0.2)
61
68
  diff-lcs (1.2.5)
62
69
  erubis (2.7.0)
70
+ execjs (2.0.2)
63
71
  ffi (1.9.3)
64
72
  gherkin (2.12.2)
65
73
  multi_json (~> 1.3)
66
74
  hike (1.2.3)
67
75
  i18n (0.6.5)
76
+ jbuilder (1.5.3)
77
+ activesupport (>= 3.0.0)
78
+ multi_json (>= 1.2.0)
68
79
  jquery-rails (3.0.4)
69
80
  railties (>= 3.0, < 5.0)
70
81
  thor (>= 0.14, < 2.0)
82
+ json (1.8.1)
71
83
  mail (2.5.4)
72
84
  mime-types (~> 1.16)
73
85
  treetop (~> 1.4.8)
@@ -80,12 +92,16 @@ GEM
80
92
  multi_json (1.8.2)
81
93
  multi_test (0.0.2)
82
94
  polyglot (0.3.3)
95
+ posix-spawn (0.3.8)
83
96
  protected_attributes (1.0.3)
84
97
  activemodel (>= 4.0.0, < 5.0)
85
98
  pry (0.9.12.6)
86
99
  coderay (~> 1.0)
87
100
  method_source (~> 0.8)
88
101
  slop (~> 3.4)
102
+ pygments.rb (0.6.0)
103
+ posix-spawn (~> 0.3.6)
104
+ yajl-ruby (~> 1.1.0)
89
105
  rack (1.5.2)
90
106
  rack-test (0.6.2)
91
107
  rack (>= 1.0)
@@ -105,6 +121,9 @@ GEM
105
121
  rake (>= 0.8.7)
106
122
  thor (>= 0.18.1, < 2.0)
107
123
  rake (10.1.1)
124
+ rdoc (4.1.1)
125
+ json (~> 1.4)
126
+ redcarpet (3.1.2)
108
127
  rspec-core (2.14.7)
109
128
  rspec-expectations (2.14.4)
110
129
  diff-lcs (>= 1.1.3, < 2.0)
@@ -121,8 +140,14 @@ GEM
121
140
  railties (>= 4.0.0.beta, < 5.0)
122
141
  sass (>= 3.1.10)
123
142
  sprockets-rails (~> 2.0.0)
143
+ sdoc (0.4.0)
144
+ json (~> 1.8)
145
+ rdoc (~> 4.0, < 5.0)
124
146
  shoulda-context (1.2.0)
125
147
  slop (3.4.7)
148
+ spring (1.1.3)
149
+ spring-commands-rspec (1.0.2)
150
+ spring (>= 0.9.1)
126
151
  sprockets (2.10.1)
127
152
  hike (~> 1.2)
128
153
  multi_json (~> 1.0)
@@ -140,7 +165,15 @@ GEM
140
165
  treetop (1.4.15)
141
166
  polyglot
142
167
  polyglot (>= 0.3.1)
168
+ turbolinks (2.2.2)
169
+ coffee-rails
143
170
  tzinfo (0.3.38)
171
+ uglifier (2.5.0)
172
+ execjs (>= 0.3.0)
173
+ json (>= 1.8.0)
174
+ watchr (0.7)
175
+ yajl-ruby (1.1.0)
176
+ yard (0.8.7.3)
144
177
 
145
178
  PLATFORMS
146
179
  ruby
@@ -154,17 +187,28 @@ DEPENDENCIES
154
187
  bcrypt-ruby (~> 3.0.0)
155
188
  bourne (~> 1.3)
156
189
  bundler (~> 1.1)
190
+ coffee-rails (~> 4.0.0)
157
191
  cucumber (~> 1.1)
192
+ jbuilder (~> 1.2)
158
193
  jdbc-sqlite3
159
194
  jquery-rails
160
195
  jruby-openssl
161
196
  protected_attributes
162
197
  pry
198
+ pygments.rb
163
199
  rails (= 4.0.0)
164
200
  rake (>= 0.9.2)
201
+ redcarpet
165
202
  rspec-rails (>= 2.13.1, < 3)
166
- sass-rails (= 4.0.0)
203
+ sass-rails (~> 4.0.0)
204
+ sdoc
167
205
  shoulda-context (~> 1.2.0)
168
206
  shoulda-matchers!
207
+ spring
208
+ spring-commands-rspec
169
209
  sqlite3
170
210
  therubyrhino
211
+ turbolinks
212
+ uglifier (>= 1.3.0)
213
+ watchr
214
+ yard
@@ -2,6 +2,18 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
+ gem "aruba"
7
+ gem "bourne", "~> 1.3"
8
+ gem "bundler", "~> 1.1"
9
+ gem "cucumber", "~> 1.1"
10
+ gem "pry"
11
+ gem "rake", ">= 0.9.2"
12
+ gem "rspec-rails", ">= 2.13.1", "< 3"
13
+ gem "yard"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
5
17
  gem "shoulda-context", "~> 1.2.0"
6
18
  gem "sqlite3", :platform=>:ruby
7
19
  gem "activerecord-jdbc-adapter", :platform=>:jruby
@@ -9,11 +21,18 @@ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
9
21
  gem "jdbc-sqlite3", :platform=>:jruby
10
22
  gem "jruby-openssl", :platform=>:jruby
11
23
  gem "therubyrhino", :platform=>:jruby
24
+ gem "spring"
25
+ gem "spring-commands-rspec"
26
+ gem "uglifier", ">= 1.3.0"
27
+ gem "coffee-rails", "~> 4.0.0"
12
28
  gem "jquery-rails"
29
+ gem "turbolinks"
30
+ gem "jbuilder", "~> 1.2"
31
+ gem "sdoc"
13
32
  gem "activeresource", "4.0.0"
14
33
  gem "protected_attributes"
15
34
  gem "rails", "4.0.1"
16
- gem "sass-rails", "4.0.1"
35
+ gem "sass-rails", "~> 4.0.0"
17
36
  gem "bcrypt-ruby", "~> 3.1.2"
18
37
 
19
38
  gemspec :path=>".././"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.6.1)
4
+ shoulda-matchers (2.6.2)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
@@ -52,6 +52,13 @@ GEM
52
52
  childprocess (0.3.9)
53
53
  ffi (~> 1.0, >= 1.0.11)
54
54
  coderay (1.1.0)
55
+ coffee-rails (4.0.1)
56
+ coffee-script (>= 2.2.0)
57
+ railties (>= 4.0.0, < 5.0)
58
+ coffee-script (2.2.0)
59
+ coffee-script-source
60
+ execjs
61
+ coffee-script-source (1.7.0)
55
62
  cucumber (1.3.10)
56
63
  builder (>= 2.1.2)
57
64
  diff-lcs (>= 1.1.3)
@@ -60,14 +67,19 @@ GEM
60
67
  multi_test (>= 0.0.2)
61
68
  diff-lcs (1.2.5)
62
69
  erubis (2.7.0)
70
+ execjs (2.0.2)
63
71
  ffi (1.9.3)
64
72
  gherkin (2.12.2)
65
73
  multi_json (~> 1.3)
66
74
  hike (1.2.3)
67
75
  i18n (0.6.5)
76
+ jbuilder (1.5.3)
77
+ activesupport (>= 3.0.0)
78
+ multi_json (>= 1.2.0)
68
79
  jquery-rails (3.0.4)
69
80
  railties (>= 3.0, < 5.0)
70
81
  thor (>= 0.14, < 2.0)
82
+ json (1.8.1)
71
83
  mail (2.5.4)
72
84
  mime-types (~> 1.16)
73
85
  treetop (~> 1.4.8)
@@ -80,12 +92,16 @@ GEM
80
92
  multi_json (1.8.2)
81
93
  multi_test (0.0.2)
82
94
  polyglot (0.3.3)
95
+ posix-spawn (0.3.8)
83
96
  protected_attributes (1.0.5)
84
97
  activemodel (>= 4.0.1, < 5.0)
85
98
  pry (0.9.12.6)
86
99
  coderay (~> 1.0)
87
100
  method_source (~> 0.8)
88
101
  slop (~> 3.4)
102
+ pygments.rb (0.6.0)
103
+ posix-spawn (~> 0.3.6)
104
+ yajl-ruby (~> 1.1.0)
89
105
  rack (1.5.2)
90
106
  rack-test (0.6.2)
91
107
  rack (>= 1.0)
@@ -105,6 +121,9 @@ GEM
105
121
  rake (>= 0.8.7)
106
122
  thor (>= 0.18.1, < 2.0)
107
123
  rake (10.1.1)
124
+ rdoc (4.1.1)
125
+ json (~> 1.4)
126
+ redcarpet (3.1.2)
108
127
  rspec-core (2.14.7)
109
128
  rspec-expectations (2.14.4)
110
129
  diff-lcs (>= 1.1.3, < 2.0)
@@ -121,8 +140,14 @@ GEM
121
140
  railties (>= 4.0.0, < 5.0)
122
141
  sass (>= 3.1.10)
123
142
  sprockets-rails (~> 2.0.0)
143
+ sdoc (0.4.0)
144
+ json (~> 1.8)
145
+ rdoc (~> 4.0, < 5.0)
124
146
  shoulda-context (1.2.0)
125
147
  slop (3.4.7)
148
+ spring (1.1.3)
149
+ spring-commands-rspec (1.0.2)
150
+ spring (>= 0.9.1)
126
151
  sprockets (2.10.1)
127
152
  hike (~> 1.2)
128
153
  multi_json (~> 1.0)
@@ -140,7 +165,15 @@ GEM
140
165
  treetop (1.4.15)
141
166
  polyglot
142
167
  polyglot (>= 0.3.1)
168
+ turbolinks (2.2.2)
169
+ coffee-rails
143
170
  tzinfo (0.3.38)
171
+ uglifier (2.5.0)
172
+ execjs (>= 0.3.0)
173
+ json (>= 1.8.0)
174
+ watchr (0.7)
175
+ yajl-ruby (1.1.0)
176
+ yard (0.8.7.3)
144
177
 
145
178
  PLATFORMS
146
179
  ruby
@@ -154,17 +187,28 @@ DEPENDENCIES
154
187
  bcrypt-ruby (~> 3.1.2)
155
188
  bourne (~> 1.3)
156
189
  bundler (~> 1.1)
190
+ coffee-rails (~> 4.0.0)
157
191
  cucumber (~> 1.1)
192
+ jbuilder (~> 1.2)
158
193
  jdbc-sqlite3
159
194
  jquery-rails
160
195
  jruby-openssl
161
196
  protected_attributes
162
197
  pry
198
+ pygments.rb
163
199
  rails (= 4.0.1)
164
200
  rake (>= 0.9.2)
201
+ redcarpet
165
202
  rspec-rails (>= 2.13.1, < 3)
166
- sass-rails (= 4.0.1)
203
+ sass-rails (~> 4.0.0)
204
+ sdoc
167
205
  shoulda-context (~> 1.2.0)
168
206
  shoulda-matchers!
207
+ spring
208
+ spring-commands-rspec
169
209
  sqlite3
170
210
  therubyrhino
211
+ turbolinks
212
+ uglifier (>= 1.3.0)
213
+ watchr
214
+ yard