mcmire-shoulda-matchers 2.5.0 → 2.6.1.docs.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (103) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.travis.yml +9 -0
  4. data/.yardopts +2 -1
  5. data/Appraisals +62 -22
  6. data/Gemfile +1 -1
  7. data/Gemfile.lock +3 -3
  8. data/NEWS.md +87 -4
  9. data/README.md +2 -2
  10. data/Rakefile +18 -0
  11. data/features/activemodel_integration.feature +15 -0
  12. data/features/rails_integration.feature +1 -1
  13. data/features/step_definitions/activemodel_steps.rb +21 -0
  14. data/features/step_definitions/rails_steps.rb +5 -4
  15. data/gemfiles/3.0.gemfile +6 -3
  16. data/gemfiles/3.0.gemfile.lock +14 -4
  17. data/gemfiles/3.1.gemfile +10 -4
  18. data/gemfiles/3.1.gemfile.lock +32 -5
  19. data/gemfiles/3.1_1.9.2.gemfile +21 -0
  20. data/gemfiles/3.1_1.9.2.gemfile.lock +191 -0
  21. data/gemfiles/3.2.gemfile +9 -4
  22. data/gemfiles/3.2.gemfile.lock +28 -5
  23. data/gemfiles/4.0.0.gemfile +11 -3
  24. data/gemfiles/4.0.0.gemfile.lock +42 -5
  25. data/gemfiles/4.0.1.gemfile +11 -3
  26. data/gemfiles/4.0.1.gemfile.lock +42 -5
  27. data/gemfiles/4.1.gemfile +37 -0
  28. data/gemfiles/4.1.gemfile.lock +216 -0
  29. data/lib/shoulda/matchers/action_controller/callback_matcher.rb +202 -0
  30. data/lib/shoulda/matchers/action_controller/rescue_from_matcher.rb +1 -1
  31. data/lib/shoulda/matchers/action_controller/set_the_flash_matcher.rb +2 -1
  32. data/lib/shoulda/matchers/action_controller/strong_parameters_matcher.rb +165 -0
  33. data/lib/shoulda/matchers/action_controller.rb +2 -0
  34. data/lib/shoulda/matchers/active_model/allow_value_matcher.rb +26 -4
  35. data/lib/shoulda/matchers/active_model/disallow_value_matcher.rb +6 -0
  36. data/lib/shoulda/matchers/active_model/ensure_exclusion_of_matcher.rb +2 -0
  37. data/lib/shoulda/matchers/active_model/ensure_inclusion_of_matcher.rb +60 -18
  38. data/lib/shoulda/matchers/active_model/errors.rb +43 -1
  39. data/lib/shoulda/matchers/active_model/numericality_matchers/comparison_matcher.rb +14 -3
  40. data/lib/shoulda/matchers/active_model/validate_absence_of_matcher.rb +2 -1
  41. data/lib/shoulda/matchers/active_model/validate_numericality_of_matcher.rb +100 -45
  42. data/lib/shoulda/matchers/active_model/validate_presence_of_matcher.rb +38 -5
  43. data/lib/shoulda/matchers/active_model/validate_uniqueness_of_matcher.rb +27 -20
  44. data/lib/shoulda/matchers/active_record/association_matcher.rb +12 -2
  45. data/lib/shoulda/matchers/active_record/association_matchers/inverse_of_matcher.rb +41 -0
  46. data/lib/shoulda/matchers/active_record/association_matchers/model_reflection.rb +24 -1
  47. data/lib/shoulda/matchers/active_record/association_matchers/model_reflector.rb +1 -1
  48. data/lib/shoulda/matchers/active_record/have_db_index_matcher.rb +1 -1
  49. data/lib/shoulda/matchers/active_record.rb +1 -0
  50. data/lib/shoulda/matchers/assertion_error.rb +8 -3
  51. data/lib/shoulda/matchers/doublespeak/double.rb +75 -0
  52. data/lib/shoulda/matchers/doublespeak/double_collection.rb +55 -0
  53. data/lib/shoulda/matchers/doublespeak/double_implementation_registry.rb +28 -0
  54. data/lib/shoulda/matchers/doublespeak/object_double.rb +33 -0
  55. data/lib/shoulda/matchers/doublespeak/proxy_implementation.rb +31 -0
  56. data/lib/shoulda/matchers/doublespeak/structs.rb +10 -0
  57. data/lib/shoulda/matchers/doublespeak/stub_implementation.rb +35 -0
  58. data/lib/shoulda/matchers/doublespeak/world.rb +39 -0
  59. data/lib/shoulda/matchers/doublespeak.rb +28 -0
  60. data/lib/shoulda/matchers/error.rb +20 -1
  61. data/lib/shoulda/matchers/independent/delegate_matcher/stubbed_target.rb +35 -0
  62. data/lib/shoulda/matchers/independent/delegate_matcher.rb +293 -0
  63. data/lib/shoulda/matchers/independent.rb +10 -0
  64. data/lib/shoulda/matchers/integrations/nunit_test_case_detection.rb +38 -0
  65. data/lib/shoulda/matchers/integrations/rspec.rb +13 -14
  66. data/lib/shoulda/matchers/integrations/test_unit.rb +19 -15
  67. data/lib/shoulda/matchers/integrations.rb +13 -0
  68. data/lib/shoulda/matchers/rails_shim.rb +16 -0
  69. data/lib/shoulda/matchers/version.rb +1 -1
  70. data/lib/shoulda/matchers.rb +15 -3
  71. data/spec/shoulda/matchers/action_controller/callback_matcher_spec.rb +82 -0
  72. data/spec/shoulda/matchers/action_controller/redirect_to_matcher_spec.rb +2 -2
  73. data/spec/shoulda/matchers/action_controller/render_template_matcher_spec.rb +5 -5
  74. data/spec/shoulda/matchers/action_controller/render_with_layout_matcher_spec.rb +4 -4
  75. data/spec/shoulda/matchers/action_controller/rescue_from_matcher_spec.rb +38 -11
  76. data/spec/shoulda/matchers/action_controller/respond_with_matcher_spec.rb +1 -1
  77. data/spec/shoulda/matchers/action_controller/set_session_matcher_spec.rb +1 -1
  78. data/spec/shoulda/matchers/action_controller/set_the_flash_matcher_spec.rb +6 -6
  79. data/spec/shoulda/matchers/action_controller/strong_parameters_matcher_spec.rb +314 -0
  80. data/spec/shoulda/matchers/active_model/allow_value_matcher_spec.rb +32 -0
  81. data/spec/shoulda/matchers/active_model/ensure_inclusion_of_matcher_spec.rb +553 -211
  82. data/spec/shoulda/matchers/active_model/validate_numericality_of_matcher_spec.rb +22 -0
  83. data/spec/shoulda/matchers/active_model/validate_presence_of_matcher_spec.rb +38 -0
  84. data/spec/shoulda/matchers/active_model/validate_uniqueness_of_matcher_spec.rb +42 -36
  85. data/spec/shoulda/matchers/active_record/association_matcher_spec.rb +15 -1
  86. data/spec/shoulda/matchers/active_record/association_matchers/model_reflection_spec.rb +4 -0
  87. data/spec/shoulda/matchers/active_record/have_db_index_matcher_spec.rb +4 -0
  88. data/spec/shoulda/matchers/doublespeak/double_collection_spec.rb +102 -0
  89. data/spec/shoulda/matchers/doublespeak/double_implementation_registry_spec.rb +21 -0
  90. data/spec/shoulda/matchers/doublespeak/double_spec.rb +144 -0
  91. data/spec/shoulda/matchers/doublespeak/object_double_spec.rb +77 -0
  92. data/spec/shoulda/matchers/doublespeak/proxy_implementation_spec.rb +40 -0
  93. data/spec/shoulda/matchers/doublespeak/stub_implementation_spec.rb +88 -0
  94. data/spec/shoulda/matchers/doublespeak/world_spec.rb +88 -0
  95. data/spec/shoulda/matchers/doublespeak_spec.rb +19 -0
  96. data/spec/shoulda/matchers/independent/delegate_matcher/stubbed_target_spec.rb +43 -0
  97. data/spec/shoulda/matchers/independent/delegate_matcher_spec.rb +250 -0
  98. data/spec/spec_helper.rb +15 -0
  99. data/spec/support/activemodel_helpers.rb +6 -2
  100. data/spec/support/controller_builder.rb +29 -1
  101. data/spec/support/rails_versions.rb +4 -0
  102. data/spec/support/test_application.rb +1 -1
  103. metadata +59 -10
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.5.0)
4
+ shoulda-matchers (2.6.1)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
@@ -35,6 +35,7 @@ GEM
35
35
  activesupport (= 3.1.11)
36
36
  activesupport (3.1.11)
37
37
  multi_json (~> 1.0)
38
+ ansi (1.4.3)
38
39
  appraisal (1.0.0.beta2)
39
40
  bundler
40
41
  rake
@@ -51,6 +52,13 @@ GEM
51
52
  childprocess (0.3.9)
52
53
  ffi (~> 1.0, >= 1.0.11)
53
54
  coderay (1.1.0)
55
+ coffee-rails (3.1.1)
56
+ coffee-script (>= 2.2.0)
57
+ railties (~> 3.1.0)
58
+ coffee-script (2.2.0)
59
+ coffee-script-source
60
+ execjs
61
+ coffee-script-source (1.7.0)
54
62
  cucumber (1.2.3)
55
63
  builder (>= 2.1.2)
56
64
  diff-lcs (>= 1.1.3)
@@ -58,6 +66,7 @@ GEM
58
66
  multi_json (~> 1.3)
59
67
  diff-lcs (1.2.1)
60
68
  erubis (2.7.0)
69
+ execjs (2.0.2)
61
70
  ffi (1.4.0)
62
71
  gherkin (2.11.6)
63
72
  json (>= 1.7.6)
@@ -78,10 +87,14 @@ GEM
78
87
  metaclass (~> 0.0.1)
79
88
  multi_json (1.7.1)
80
89
  polyglot (0.3.3)
90
+ posix-spawn (0.3.8)
81
91
  pry (0.9.12.6)
82
92
  coderay (~> 1.0)
83
93
  method_source (~> 0.8)
84
94
  slop (~> 3.4)
95
+ pygments.rb (0.5.4)
96
+ posix-spawn (~> 0.3.6)
97
+ yajl-ruby (~> 1.1.0)
85
98
  rack (1.3.10)
86
99
  rack-cache (1.2)
87
100
  rack (>= 0.4)
@@ -109,6 +122,7 @@ GEM
109
122
  rake (10.0.3)
110
123
  rdoc (3.12.2)
111
124
  json (~> 1.4)
125
+ redcarpet (3.1.1)
112
126
  rspec-core (2.13.1)
113
127
  rspec-expectations (2.13.0)
114
128
  diff-lcs (>= 1.1.3, < 2.0)
@@ -126,7 +140,7 @@ GEM
126
140
  railties (~> 3.1.0)
127
141
  sass (>= 3.1.10)
128
142
  tilt (~> 1.3.2)
129
- shoulda-context (1.1.4)
143
+ shoulda-context (1.2.0)
130
144
  slop (3.4.7)
131
145
  sprockets (2.0.4)
132
146
  hike (~> 1.2)
@@ -142,8 +156,15 @@ GEM
142
156
  treetop (1.4.12)
143
157
  polyglot
144
158
  polyglot (>= 0.3.1)
159
+ turn (0.8.3)
160
+ ansi
145
161
  tzinfo (0.3.37)
146
- yard (0.8.7.3)
162
+ uglifier (2.2.1)
163
+ execjs (>= 0.3.0)
164
+ multi_json (~> 1.0, >= 1.0.2)
165
+ watchr (0.7)
166
+ yajl-ruby (1.1.0)
167
+ yard (0.8.7.4)
147
168
 
148
169
  PLATFORMS
149
170
  ruby
@@ -156,18 +177,24 @@ DEPENDENCIES
156
177
  bcrypt-ruby (~> 3.0.0)
157
178
  bourne (~> 1.3)
158
179
  bundler (~> 1.1)
180
+ coffee-rails (~> 3.1.1)
159
181
  cucumber (~> 1.1)
160
182
  jdbc-sqlite3
161
183
  jquery-rails
162
184
  jruby-openssl
163
185
  pry
186
+ pygments.rb
164
187
  rails (~> 3.1.8)
165
188
  rake (>= 0.9.2)
189
+ redcarpet
166
190
  rspec-rails (>= 2.13.1, < 3)
167
- sass-rails
168
- shoulda-context (~> 1.1.2)
191
+ sass-rails (~> 3.1.5)
192
+ shoulda-context (~> 1.2.0)
169
193
  shoulda-matchers!
170
194
  sqlite3
171
195
  strong_parameters
172
196
  therubyrhino
197
+ turn (~> 0.8.3)
198
+ uglifier (>= 1.0.3)
199
+ watchr
173
200
  yard
@@ -0,0 +1,21 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "shoulda-context", "~> 1.2.0"
6
+ gem "sqlite3", :platform=>:ruby
7
+ gem "activerecord-jdbc-adapter", :platform=>:jruby
8
+ gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
9
+ gem "jdbc-sqlite3", :platform=>:jruby
10
+ gem "jruby-openssl", :platform=>:jruby
11
+ gem "therubyrhino", :platform=>:jruby
12
+ gem "strong_parameters"
13
+ gem "rails", "~> 3.1.8"
14
+ gem "bcrypt-ruby", "~> 3.0.0"
15
+ gem "jquery-rails"
16
+ gem "sass-rails", "~> 3.1.5"
17
+ gem "coffee-rails", "~> 3.1.1"
18
+ gem "uglifier", ">= 1.0.3"
19
+ gem "turn", "0.8.2"
20
+
21
+ gemspec :path=>".././"
@@ -0,0 +1,191 @@
1
+ PATH
2
+ remote: .././
3
+ specs:
4
+ shoulda-matchers (2.6.1)
5
+ activesupport (>= 3.0.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (3.1.11)
11
+ actionpack (= 3.1.11)
12
+ mail (~> 2.3.3)
13
+ actionpack (3.1.11)
14
+ activemodel (= 3.1.11)
15
+ activesupport (= 3.1.11)
16
+ builder (~> 3.0.0)
17
+ erubis (~> 2.7.0)
18
+ i18n (~> 0.6)
19
+ rack (~> 1.3.6)
20
+ rack-cache (~> 1.2)
21
+ rack-mount (~> 0.8.2)
22
+ rack-test (~> 0.6.1)
23
+ sprockets (~> 2.0.4)
24
+ activemodel (3.1.11)
25
+ activesupport (= 3.1.11)
26
+ builder (~> 3.0.0)
27
+ i18n (~> 0.6)
28
+ activerecord (3.1.11)
29
+ activemodel (= 3.1.11)
30
+ activesupport (= 3.1.11)
31
+ arel (~> 2.2.3)
32
+ tzinfo (~> 0.3.29)
33
+ activeresource (3.1.11)
34
+ activemodel (= 3.1.11)
35
+ activesupport (= 3.1.11)
36
+ activesupport (3.1.11)
37
+ multi_json (~> 1.0)
38
+ ansi (1.4.3)
39
+ appraisal (1.0.0.beta2)
40
+ bundler
41
+ rake
42
+ thor (>= 0.14.0)
43
+ arel (2.2.3)
44
+ aruba (0.5.3)
45
+ childprocess (>= 0.3.6)
46
+ cucumber (>= 1.1.1)
47
+ rspec-expectations (>= 2.7.0)
48
+ bcrypt-ruby (3.0.1)
49
+ bourne (1.5.0)
50
+ mocha (>= 0.13.2, < 0.15)
51
+ builder (3.0.4)
52
+ childprocess (0.3.9)
53
+ ffi (~> 1.0, >= 1.0.11)
54
+ coderay (1.1.0)
55
+ coffee-rails (3.1.1)
56
+ coffee-script (>= 2.2.0)
57
+ railties (~> 3.1.0)
58
+ coffee-script (2.2.0)
59
+ coffee-script-source
60
+ execjs
61
+ coffee-script-source (1.7.0)
62
+ cucumber (1.3.10)
63
+ builder (>= 2.1.2)
64
+ diff-lcs (>= 1.1.3)
65
+ gherkin (~> 2.12)
66
+ multi_json (>= 1.7.5, < 2.0)
67
+ multi_test (>= 0.0.2)
68
+ diff-lcs (1.2.5)
69
+ erubis (2.7.0)
70
+ execjs (2.0.2)
71
+ ffi (1.9.3)
72
+ gherkin (2.12.2)
73
+ multi_json (~> 1.3)
74
+ hike (1.2.3)
75
+ i18n (0.6.9)
76
+ jquery-rails (2.2.1)
77
+ railties (>= 3.0, < 5.0)
78
+ thor (>= 0.14, < 2.0)
79
+ json (1.8.1)
80
+ mail (2.3.3)
81
+ i18n (>= 0.4.0)
82
+ mime-types (~> 1.16)
83
+ treetop (~> 1.4.8)
84
+ metaclass (0.0.1)
85
+ method_source (0.8.2)
86
+ mime-types (1.25.1)
87
+ mocha (0.14.0)
88
+ metaclass (~> 0.0.1)
89
+ multi_json (1.8.4)
90
+ multi_test (0.0.3)
91
+ polyglot (0.3.3)
92
+ pry (0.9.12.6)
93
+ coderay (~> 1.0)
94
+ method_source (~> 0.8)
95
+ slop (~> 3.4)
96
+ rack (1.3.10)
97
+ rack-cache (1.2)
98
+ rack (>= 0.4)
99
+ rack-mount (0.8.3)
100
+ rack (>= 1.0.0)
101
+ rack-ssl (1.3.3)
102
+ rack
103
+ rack-test (0.6.2)
104
+ rack (>= 1.0)
105
+ rails (3.1.11)
106
+ actionmailer (= 3.1.11)
107
+ actionpack (= 3.1.11)
108
+ activerecord (= 3.1.11)
109
+ activeresource (= 3.1.11)
110
+ activesupport (= 3.1.11)
111
+ bundler (~> 1.0)
112
+ railties (= 3.1.11)
113
+ railties (3.1.11)
114
+ actionpack (= 3.1.11)
115
+ activesupport (= 3.1.11)
116
+ rack-ssl (~> 1.3.2)
117
+ rake (>= 0.8.7)
118
+ rdoc (~> 3.4)
119
+ thor (~> 0.14.6)
120
+ rake (10.1.1)
121
+ rdoc (3.12.2)
122
+ json (~> 1.4)
123
+ rspec-core (2.14.7)
124
+ rspec-expectations (2.14.4)
125
+ diff-lcs (>= 1.1.3, < 2.0)
126
+ rspec-mocks (2.14.4)
127
+ rspec-rails (2.14.1)
128
+ actionpack (>= 3.0)
129
+ activemodel (>= 3.0)
130
+ activesupport (>= 3.0)
131
+ railties (>= 3.0)
132
+ rspec-core (~> 2.14.0)
133
+ rspec-expectations (~> 2.14.0)
134
+ rspec-mocks (~> 2.14.0)
135
+ sass (3.2.12)
136
+ sass-rails (3.1.6)
137
+ actionpack (~> 3.1.0)
138
+ railties (~> 3.1.0)
139
+ sass (>= 3.1.10)
140
+ tilt (~> 1.3.2)
141
+ shoulda-context (1.2.0)
142
+ slop (3.4.7)
143
+ sprockets (2.0.4)
144
+ hike (~> 1.2)
145
+ rack (~> 1.0)
146
+ tilt (~> 1.1, != 1.3.0)
147
+ sqlite3 (1.3.8)
148
+ strong_parameters (0.2.0)
149
+ actionpack (~> 3.0)
150
+ activemodel (~> 3.0)
151
+ railties (~> 3.0)
152
+ thor (0.14.6)
153
+ tilt (1.3.6)
154
+ treetop (1.4.15)
155
+ polyglot
156
+ polyglot (>= 0.3.1)
157
+ turn (0.8.2)
158
+ ansi (>= 1.2.2)
159
+ tzinfo (0.3.38)
160
+ uglifier (2.5.0)
161
+ execjs (>= 0.3.0)
162
+ json (>= 1.8.0)
163
+
164
+ PLATFORMS
165
+ ruby
166
+
167
+ DEPENDENCIES
168
+ activerecord-jdbc-adapter
169
+ activerecord-jdbcsqlite3-adapter
170
+ appraisal (~> 1.0.0.beta2)
171
+ aruba
172
+ bcrypt-ruby (~> 3.0.0)
173
+ bourne (~> 1.3)
174
+ bundler (~> 1.1)
175
+ coffee-rails (~> 3.1.1)
176
+ cucumber (~> 1.1)
177
+ jdbc-sqlite3
178
+ jquery-rails
179
+ jruby-openssl
180
+ pry
181
+ rails (~> 3.1.8)
182
+ rake (>= 0.9.2)
183
+ rspec-rails (>= 2.13.1, < 3)
184
+ sass-rails (~> 3.1.5)
185
+ shoulda-context (~> 1.2.0)
186
+ shoulda-matchers!
187
+ sqlite3
188
+ strong_parameters
189
+ therubyrhino
190
+ turn (= 0.8.2)
191
+ uglifier (>= 1.0.3)
data/gemfiles/3.2.gemfile CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "appraisal", "~> 0.4"
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
6
  gem "aruba"
7
7
  gem "bourne", "~> 1.3"
8
8
  gem "bundler", "~> 1.1"
@@ -11,17 +11,22 @@ gem "pry"
11
11
  gem "rake", ">= 0.9.2"
12
12
  gem "rspec-rails", ">= 2.13.1", "< 3"
13
13
  gem "yard"
14
- gem "shoulda-context", "~> 1.1.2"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
17
+ gem "shoulda-context", "~> 1.2.0"
15
18
  gem "sqlite3", :platform=>:ruby
16
19
  gem "activerecord-jdbc-adapter", :platform=>:jruby
17
20
  gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
18
21
  gem "jdbc-sqlite3", :platform=>:jruby
19
22
  gem "jruby-openssl", :platform=>:jruby
20
23
  gem "therubyrhino", :platform=>:jruby
24
+ gem "strong_parameters"
21
25
  gem "rails", "~> 3.2.13"
22
26
  gem "bcrypt-ruby", "~> 3.0.0"
23
27
  gem "jquery-rails"
24
- gem "sass-rails"
25
- gem "strong_parameters"
28
+ gem "sass-rails", "~> 3.2.3"
29
+ gem "coffee-rails", "~> 3.2.1"
30
+ gem "uglifier", ">= 1.0.3"
26
31
 
27
32
  gemspec :path=>".././"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.5.0)
4
+ shoulda-matchers (2.6.1)
5
5
  activesupport (>= 3.0.0)
6
6
 
7
7
  GEM
@@ -50,6 +50,13 @@ GEM
50
50
  childprocess (0.3.9)
51
51
  ffi (~> 1.0, >= 1.0.11)
52
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)
53
60
  cucumber (1.2.3)
54
61
  builder (>= 2.1.2)
55
62
  diff-lcs (>= 1.1.3)
@@ -57,6 +64,7 @@ GEM
57
64
  multi_json (~> 1.3)
58
65
  diff-lcs (1.2.1)
59
66
  erubis (2.7.0)
67
+ execjs (2.0.2)
60
68
  ffi (1.4.0)
61
69
  gherkin (2.11.6)
62
70
  json (>= 1.7.6)
@@ -78,10 +86,14 @@ GEM
78
86
  metaclass (~> 0.0.1)
79
87
  multi_json (1.7.1)
80
88
  polyglot (0.3.3)
89
+ posix-spawn (0.3.8)
81
90
  pry (0.9.12.6)
82
91
  coderay (~> 1.0)
83
92
  method_source (~> 0.8)
84
93
  slop (~> 3.4)
94
+ pygments.rb (0.5.4)
95
+ posix-spawn (~> 0.3.6)
96
+ yajl-ruby (~> 1.1.0)
85
97
  rack (1.4.5)
86
98
  rack-cache (1.2)
87
99
  rack (>= 0.4)
@@ -107,6 +119,7 @@ GEM
107
119
  rake (10.1.1)
108
120
  rdoc (3.12.2)
109
121
  json (~> 1.4)
122
+ redcarpet (3.1.1)
110
123
  rspec-core (2.13.1)
111
124
  rspec-expectations (2.13.0)
112
125
  diff-lcs (>= 1.1.3, < 2.0)
@@ -123,7 +136,7 @@ GEM
123
136
  railties (~> 3.2.0)
124
137
  sass (>= 3.1.10)
125
138
  tilt (~> 1.3)
126
- shoulda-context (1.1.4)
139
+ shoulda-context (1.2.0)
127
140
  slop (3.4.7)
128
141
  sprockets (2.2.2)
129
142
  hike (~> 1.2)
@@ -141,7 +154,12 @@ GEM
141
154
  polyglot
142
155
  polyglot (>= 0.3.1)
143
156
  tzinfo (0.3.37)
144
- yard (0.8.7.3)
157
+ uglifier (2.2.1)
158
+ execjs (>= 0.3.0)
159
+ multi_json (~> 1.0, >= 1.0.2)
160
+ watchr (0.7)
161
+ yajl-ruby (1.1.0)
162
+ yard (0.8.7.4)
145
163
 
146
164
  PLATFORMS
147
165
  ruby
@@ -154,18 +172,23 @@ DEPENDENCIES
154
172
  bcrypt-ruby (~> 3.0.0)
155
173
  bourne (~> 1.3)
156
174
  bundler (~> 1.1)
175
+ coffee-rails (~> 3.2.1)
157
176
  cucumber (~> 1.1)
158
177
  jdbc-sqlite3
159
178
  jquery-rails
160
179
  jruby-openssl
161
180
  pry
181
+ pygments.rb
162
182
  rails (~> 3.2.13)
163
183
  rake (>= 0.9.2)
184
+ redcarpet
164
185
  rspec-rails (>= 2.13.1, < 3)
165
- sass-rails
166
- shoulda-context (~> 1.1.2)
186
+ sass-rails (~> 3.2.3)
187
+ shoulda-context (~> 1.2.0)
167
188
  shoulda-matchers!
168
189
  sqlite3
169
190
  strong_parameters
170
191
  therubyrhino
192
+ uglifier (>= 1.0.3)
193
+ watchr
171
194
  yard
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "appraisal", "~> 0.4"
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
6
  gem "aruba"
7
7
  gem "bourne", "~> 1.3"
8
8
  gem "bundler", "~> 1.1"
@@ -11,18 +11,26 @@ gem "pry"
11
11
  gem "rake", ">= 0.9.2"
12
12
  gem "rspec-rails", ">= 2.13.1", "< 3"
13
13
  gem "yard"
14
- gem "shoulda-context", "~> 1.1.2"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
17
+ gem "shoulda-context", "~> 1.2.0"
15
18
  gem "sqlite3", :platform=>:ruby
16
19
  gem "activerecord-jdbc-adapter", :platform=>:jruby
17
20
  gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
18
21
  gem "jdbc-sqlite3", :platform=>:jruby
19
22
  gem "jruby-openssl", :platform=>:jruby
20
23
  gem "therubyrhino", :platform=>:jruby
24
+ gem "uglifier", ">= 1.3.0"
25
+ gem "coffee-rails", "~> 4.0.0"
21
26
  gem "jquery-rails"
27
+ gem "turbolinks"
28
+ gem "jbuilder", "~> 1.2"
29
+ gem "sdoc"
22
30
  gem "activeresource", "4.0.0"
23
31
  gem "protected_attributes"
24
32
  gem "rails", "4.0.0"
25
- gem "sass-rails", "4.0.0"
33
+ gem "sass-rails", "~> 4.0.0"
26
34
  gem "bcrypt-ruby", "~> 3.0.0"
27
35
 
28
36
  gemspec :path=>".././"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ../
3
3
  specs:
4
- shoulda-matchers (2.5.0)
4
+ shoulda-matchers (2.6.1)
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.5.4)
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.1)
108
127
  rspec-core (2.14.7)
109
128
  rspec-expectations (2.14.4)
110
129
  diff-lcs (>= 1.1.3, < 2.0)
@@ -121,7 +140,10 @@ GEM
121
140
  railties (>= 4.0.0.beta, < 5.0)
122
141
  sass (>= 3.1.10)
123
142
  sprockets-rails (~> 2.0.0)
124
- shoulda-context (1.1.6)
143
+ sdoc (0.4.0)
144
+ json (~> 1.8)
145
+ rdoc (~> 4.0, < 5.0)
146
+ shoulda-context (1.2.0)
125
147
  slop (3.4.7)
126
148
  sprockets (2.10.1)
127
149
  hike (~> 1.2)
@@ -140,8 +162,15 @@ GEM
140
162
  treetop (1.4.15)
141
163
  polyglot
142
164
  polyglot (>= 0.3.1)
165
+ turbolinks (2.2.2)
166
+ coffee-rails
143
167
  tzinfo (0.3.38)
144
- yard (0.8.7.3)
168
+ uglifier (2.5.0)
169
+ execjs (>= 0.3.0)
170
+ json (>= 1.8.0)
171
+ watchr (0.7)
172
+ yajl-ruby (1.1.0)
173
+ yard (0.8.7.4)
145
174
 
146
175
  PLATFORMS
147
176
  ruby
@@ -155,18 +184,26 @@ DEPENDENCIES
155
184
  bcrypt-ruby (~> 3.0.0)
156
185
  bourne (~> 1.3)
157
186
  bundler (~> 1.1)
187
+ coffee-rails (~> 4.0.0)
158
188
  cucumber (~> 1.1)
189
+ jbuilder (~> 1.2)
159
190
  jdbc-sqlite3
160
191
  jquery-rails
161
192
  jruby-openssl
162
193
  protected_attributes
163
194
  pry
195
+ pygments.rb
164
196
  rails (= 4.0.0)
165
197
  rake (>= 0.9.2)
198
+ redcarpet
166
199
  rspec-rails (>= 2.13.1, < 3)
167
- sass-rails (= 4.0.0)
168
- shoulda-context (~> 1.1.2)
200
+ sass-rails (~> 4.0.0)
201
+ sdoc
202
+ shoulda-context (~> 1.2.0)
169
203
  shoulda-matchers!
170
204
  sqlite3
171
205
  therubyrhino
206
+ turbolinks
207
+ uglifier (>= 1.3.0)
208
+ watchr
172
209
  yard
@@ -2,7 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gem "appraisal", "~> 0.4"
5
+ gem "appraisal", "~> 1.0.0.beta2"
6
6
  gem "aruba"
7
7
  gem "bourne", "~> 1.3"
8
8
  gem "bundler", "~> 1.1"
@@ -11,18 +11,26 @@ gem "pry"
11
11
  gem "rake", ">= 0.9.2"
12
12
  gem "rspec-rails", ">= 2.13.1", "< 3"
13
13
  gem "yard"
14
- gem "shoulda-context", "~> 1.1.2"
14
+ gem "redcarpet"
15
+ gem "pygments.rb"
16
+ gem "watchr"
17
+ gem "shoulda-context", "~> 1.2.0"
15
18
  gem "sqlite3", :platform=>:ruby
16
19
  gem "activerecord-jdbc-adapter", :platform=>:jruby
17
20
  gem "activerecord-jdbcsqlite3-adapter", :platform=>:jruby
18
21
  gem "jdbc-sqlite3", :platform=>:jruby
19
22
  gem "jruby-openssl", :platform=>:jruby
20
23
  gem "therubyrhino", :platform=>:jruby
24
+ gem "uglifier", ">= 1.3.0"
25
+ gem "coffee-rails", "~> 4.0.0"
21
26
  gem "jquery-rails"
27
+ gem "turbolinks"
28
+ gem "jbuilder", "~> 1.2"
29
+ gem "sdoc"
22
30
  gem "activeresource", "4.0.0"
23
31
  gem "protected_attributes"
24
32
  gem "rails", "4.0.1"
25
- gem "sass-rails", "4.0.1"
33
+ gem "sass-rails", "~> 4.0.0"
26
34
  gem "bcrypt-ruby", "~> 3.1.2"
27
35
 
28
36
  gemspec :path=>".././"