superslug 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +15 -0
  3. data/Gemfile.lock +1 -1
  4. data/README.md +5 -2
  5. data/lib/superslug/has_superslug.rb +9 -3
  6. data/lib/superslug/version.rb +1 -1
  7. data/test/.gitignore +16 -0
  8. data/test/.rspec +2 -0
  9. data/test/Gemfile +18 -0
  10. data/test/Gemfile.lock +554 -0
  11. data/test/README.rdoc +28 -0
  12. data/test/Rakefile +6 -0
  13. data/test/app/assets/images/.keep +0 -0
  14. data/test/app/assets/javascripts/application.js +16 -0
  15. data/test/app/assets/stylesheets/application.css +15 -0
  16. data/test/app/controllers/application_controller.rb +5 -0
  17. data/test/app/controllers/concerns/.keep +0 -0
  18. data/test/app/helpers/application_helper.rb +2 -0
  19. data/test/app/mailers/.keep +0 -0
  20. data/test/app/models/.keep +0 -0
  21. data/test/app/models/concerns/.keep +0 -0
  22. data/test/app/models/page.rb +20 -0
  23. data/test/app/models/site.rb +18 -0
  24. data/test/app/views/layouts/application.html.erb +14 -0
  25. data/test/bin/bundle +3 -0
  26. data/test/bin/rails +8 -0
  27. data/test/bin/rake +8 -0
  28. data/test/bin/spring +15 -0
  29. data/test/config.ru +4 -0
  30. data/test/config/application.rb +23 -0
  31. data/test/config/boot.rb +4 -0
  32. data/test/config/database.yml +12 -0
  33. data/test/config/environment.rb +5 -0
  34. data/test/config/environments/development.rb +37 -0
  35. data/test/config/environments/production.rb +83 -0
  36. data/test/config/environments/test.rb +39 -0
  37. data/test/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/config/initializers/cookies_serializer.rb +3 -0
  39. data/test/config/initializers/filter_parameter_logging.rb +4 -0
  40. data/test/config/initializers/inflections.rb +16 -0
  41. data/test/config/initializers/mime_types.rb +4 -0
  42. data/test/config/initializers/session_store.rb +3 -0
  43. data/test/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/config/locales/en.yml +23 -0
  45. data/test/config/routes.rb +56 -0
  46. data/test/config/secrets.yml +22 -0
  47. data/test/db/migrate/20150811140318_create_pages.rb +11 -0
  48. data/test/db/migrate/20150811140335_create_sites.rb +10 -0
  49. data/test/db/schema.rb +34 -0
  50. data/test/db/seeds.rb +7 -0
  51. data/test/lib/assets/.keep +0 -0
  52. data/test/lib/tasks/.keep +0 -0
  53. data/test/log/.keep +0 -0
  54. data/test/public/404.html +67 -0
  55. data/test/public/422.html +67 -0
  56. data/test/public/500.html +66 -0
  57. data/test/public/favicon.ico +0 -0
  58. data/test/public/robots.txt +5 -0
  59. data/test/spec/factories/pages.rb +18 -0
  60. data/test/spec/factories/sites.rb +16 -0
  61. data/test/spec/models/page_spec.rb +51 -0
  62. data/test/spec/models/site_spec.rb +64 -0
  63. data/test/spec/rails_helper.rb +52 -0
  64. data/test/spec/spec_helper.rb +106 -0
  65. data/test/vendor/assets/javascripts/.keep +0 -0
  66. data/test/vendor/assets/stylesheets/.keep +0 -0
  67. metadata +123 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e7d2fea76ae1289aec7b5d52e7d4f5c9f97c7c1b
4
- data.tar.gz: a65edfb1ac37134fc14d5b1775231421ecd56a52
3
+ metadata.gz: f3a7878048d3c44d5b70af9f95f09866ff323d39
4
+ data.tar.gz: 73fc9beffc284d3761b13b6df970e890ab569ede
5
5
  SHA512:
6
- metadata.gz: 283890959d97e56b37edceabc0b9681cac2cf28c87932330a28842cab58dc62f0122c7875d820946a75650d61a74e2bdbda502156a261a140bb154171f0cc2ba
7
- data.tar.gz: a16787c3fe96a39f0bfc53c97bb1dd4b89de204fff909aeb0cf44d78e8733971ce0fefab89c61f98b7790e7762067c325dde427e904ef0aca31317794d5ebbae
6
+ metadata.gz: 6ba553f196b767b0f19907d1b7b702d479777ebadd29f8c326ee8608df3d57aa292f9b1f5fd107dc0e572839efbe0f39c34a11a3ec92676fccf1bf5a48364ab4
7
+ data.tar.gz: cf4fef578b9270264ddd34f5d6ffdd8bbd8f98a3f85edd4ca484fcc99e5c664679a1a522ed6e0eea7d47672e1ad92499ed4401abaf2bb3dc6cb03a4240de75d7
data/.gitignore CHANGED
@@ -1,2 +1,17 @@
1
1
  .bundle/
2
2
  pkg/
3
+
4
+ ###########################
5
+ # Dummy App
6
+ ###########################
7
+
8
+ # Ignore bundler config.
9
+ /test/.bundle
10
+
11
+ # Ignore the default SQLite database.
12
+ /test/db/*.sqlite3
13
+ /test/db/*.sqlite3-journal
14
+
15
+ # Ignore all logfiles and tempfiles.
16
+ /test/log/*.log
17
+ /test/tmp
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- superslug (1.2.0)
4
+ superslug (1.3.0)
5
5
  rails (~> 4.1.0)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -47,15 +47,18 @@ while the destination (dest) column is *where the sluggified string is stored*.
47
47
  * **force_update**: If `true`, the destination column (slug) will always be set
48
48
  when the record is saved. Otherwise, it doesn't change once it is first
49
49
  created, unless manually set.
50
+ * **context**: If you pass a symbol of a `belongs_to` relationship, the slug
51
+ will only need to be unique within the association.
50
52
 
51
53
  ### Example
52
54
 
53
55
  If you have a `Page` model that has a `name` and a `permalink` column, and you
54
- want to use underscore separators, then your model would look like this:
56
+ want to use underscore separators, and only force the page slug to be unique within a category, then your model would look like this:
55
57
 
56
58
  ```ruby
57
59
  class Page < ActiveRecord::Base
58
- has_superslug :name, :permalink, :separator => '_'
60
+ belongs_to :category
61
+ has_superslug :name, :permalink, :separator => '_', :context => :category
59
62
  end
60
63
  ```
61
64
 
@@ -39,19 +39,25 @@ class << ActiveRecord::Base
39
39
  superslug = send(dest).blank? ? self.send(source) : self.send(dest)
40
40
  end
41
41
  # make lower case
42
- superslug = superslug.downcase
42
+ superslug = superslug.downcase.strip
43
43
  # replace ampersands with 'and'
44
44
  superslug.gsub!(/\&/, ' and ')
45
45
  # remove all bad characters
46
46
  # (we allow hyphens, underscores, and plus marks)
47
- superslug.gsub!(/[^a-zA-Z0-9 \-\_\+]/, "")
47
+ superslug.gsub!(/[^a-zA-Z0-9 \-\_]/, "")
48
48
  # replace spaces with underscores
49
49
  superslug.gsub!(/\ /, separator)
50
50
  # replace repeating underscores
51
51
  superslug.gsub!(/#{separator}+/, separator)
52
52
  # Find all records with the same slug value for the
53
53
  # slug column
54
- duplicates = self.class.name.constantize.where(dest.to_sym => superslug)
54
+ if options[:context]
55
+ duplicates = self.send(options[:context].to_s)
56
+ .send(self.class.table_name.to_s)
57
+ .where(dest.to_sym => superslug)
58
+ else
59
+ duplicates = self.class.name.constantize.where(dest.to_sym => superslug)
60
+ end
55
61
  # Append the ID to the end of the slug if the slug
56
62
  # column is already taken
57
63
  if (duplicates - [self]).size > 0
@@ -1,3 +1,3 @@
1
1
  module SuperSlug
2
- VERSION = "1.2.0"
2
+ VERSION = "1.3.0"
3
3
  end
@@ -0,0 +1,16 @@
1
+ # See https://help.github.com/articles/ignoring-files for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*.log
16
+ /tmp
@@ -0,0 +1,2 @@
1
+ --color
2
+ --require spec_helper
@@ -0,0 +1,18 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rails', '4.1.0'
4
+ gem 'pg'
5
+
6
+ gem 'superslug', :path => File.expand_path('..')
7
+
8
+ group :development do
9
+ gem 'guard-rspec', :require => false
10
+ gem 'annotate'
11
+ end
12
+
13
+ group :development, :test do
14
+ gem 'database_cleaner'
15
+ gem 'factory_girl_rails'
16
+ gem 'faker'
17
+ gem 'rspec-rails'
18
+ end
@@ -0,0 +1,554 @@
1
+ PATH
2
+ remote: /Users/sean/code/seancdavis/gems/superslug
3
+ specs:
4
+ superslug (1.2.0)
5
+ rails (~> 4.1.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actionmailer (4.1.0)
11
+ actionpack (= 4.1.0)
12
+ actionview (= 4.1.0)
13
+ mail (~> 2.5.4)
14
+ actionpack (4.1.0)
15
+ actionview (= 4.1.0)
16
+ activesupport (= 4.1.0)
17
+ rack (~> 1.5.2)
18
+ rack-test (~> 0.6.2)
19
+ actionview (4.1.0)
20
+ activesupport (= 4.1.0)
21
+ builder (~> 3.1)
22
+ erubis (~> 2.7.0)
23
+ activemodel (4.1.0)
24
+ activesupport (= 4.1.0)
25
+ builder (~> 3.1)
26
+ activerecord (4.1.0)
27
+ activemodel (= 4.1.0)
28
+ activesupport (= 4.1.0)
29
+ arel (~> 5.0.0)
30
+ activesupport (4.1.0)
31
+ i18n (~> 0.6, >= 0.6.9)
32
+ json (~> 1.7, >= 1.7.7)
33
+ minitest (~> 5.1)
34
+ thread_safe (~> 0.1)
35
+ tzinfo (~> 1.1)
36
+ annotate (2.6.10)
37
+ activerecord (>= 3.2, <= 4.3)
38
+ rake (~> 10.4)
39
+ arel (5.0.1.20140414130214)
40
+ builder (3.2.2)
41
+ coderay (1.1.0)
42
+ database_cleaner (1.4.1)
43
+ diff-lcs (1.2.5)
44
+ erubis (2.7.0)
45
+ factory_girl (4.5.0)
46
+ activesupport (>= 3.0.0)
47
+ factory_girl_rails (4.5.0)
48
+ factory_girl (~> 4.5.0)
49
+ railties (>= 3.0.0)
50
+ faker (1.4.3)
51
+ i18n (~> 0.5)
52
+ ffi (1.9.10)
53
+ formatador (0.2.5)
54
+ guard (2.13.0)
55
+ formatador (>= 0.2.4)
56
+ listen (>= 2.7, <= 4.0)
57
+ lumberjack (~> 1.0)
58
+ nenv (~> 0.1)
59
+ notiffany (~> 0.0)
60
+ pry (>= 0.9.12)
61
+ shellany (~> 0.0)
62
+ thor (>= 0.18.1)
63
+ guard-compat (1.2.1)
64
+ guard-rspec (4.6.4)
65
+ guard (~> 2.1)
66
+ guard-compat (~> 1.1)
67
+ rspec (>= 2.99.0, < 4.0)
68
+ hike (1.2.3)
69
+ i18n (0.7.0)
70
+ json (1.8.3)
71
+ listen (3.0.3)
72
+ rb-fsevent (>= 0.9.3)
73
+ rb-inotify (>= 0.9)
74
+ lumberjack (1.0.9)
75
+ mail (2.5.4)
76
+ mime-types (~> 1.16)
77
+ treetop (~> 1.4.8)
78
+ method_source (0.8.2)
79
+ mime-types (1.25.1)
80
+ minitest (5.8.0)
81
+ multi_json (1.11.2)
82
+ nenv (0.2.0)
83
+ notiffany (0.0.7)
84
+ nenv (~> 0.1)
85
+ shellany (~> 0.0)
86
+ pg (0.18.2)
87
+ polyglot (0.3.5)
88
+ pry (0.10.1)
89
+ coderay (~> 1.1.0)
90
+ method_source (~> 0.8.1)
91
+ slop (~> 3.4)
92
+ rack (1.5.5)
93
+ rack-test (0.6.3)
94
+ rack (>= 1.0)
95
+ rails (4.1.0)
96
+ actionmailer (= 4.1.0)
97
+ actionpack (= 4.1.0)
98
+ actionview (= 4.1.0)
99
+ activemodel (= 4.1.0)
100
+ activerecord (= 4.1.0)
101
+ activesupport (= 4.1.0)
102
+ bundler (>= 1.3.0, < 2.0)
103
+ railties (= 4.1.0)
104
+ sprockets-rails (~> 2.0)
105
+ railties (4.1.0)
106
+ actionpack (= 4.1.0)
107
+ activesupport (= 4.1.0)
108
+ rake (>= 0.8.7)
109
+ thor (>= 0.18.1, < 2.0)
110
+ rake (10.4.2)
111
+ rb-fsevent (0.9.5)
112
+ rb-inotify (0.9.5)
113
+ ffi (>= 0.5.0)
114
+ rspec (3.3.0)
115
+ rspec-core (~> 3.3.0)
116
+ rspec-expectations (~> 3.3.0)
117
+ rspec-mocks (~> 3.3.0)
118
+ rspec-core (3.3.2)
119
+ rspec-support (~> 3.3.0)
120
+ rspec-expectations (3.3.1)
121
+ diff-lcs (>= 1.2.0, < 2.0)
122
+ rspec-support (~> 3.3.0)
123
+ rspec-mocks (3.3.2)
124
+ diff-lcs (>= 1.2.0, < 2.0)
125
+ rspec-support (~> 3.3.0)
126
+ rspec-rails (3.3.3)
127
+ actionpack (>= 3.0, < 4.3)
128
+ activesupport (>= 3.0, < 4.3)
129
+ railties (>= 3.0, < 4.3)
130
+ rspec-core (~> 3.3.0)
131
+ rspec-expectations (~> 3.3.0)
132
+ rspec-mocks (~> 3.3.0)
133
+ rspec-support (~> 3.3.0)
134
+ rspec-support (3.3.0)
135
+ shellany (0.0.1)
136
+ slop (3.6.0)
137
+ sprockets (2.12.4)
138
+ hike (~> 1.2)
139
+ multi_json (~> 1.0)
140
+ rack (~> 1.0)
141
+ tilt (~> 1.1, != 1.3.0)
142
+ sprockets-rails (2.3.2)
143
+ actionpack (>= 3.0)
144
+ activesupport (>= 3.0)
145
+ sprockets (>= 2.8, < 4.0)
146
+ thor (0.19.1)
147
+ thread_safe (0.3.5)
148
+ tilt (1.4.1)
149
+ treetop (1.4.15)
150
+ polyglot
151
+ polyglot
152
+ polyglot
153
+ polyglot
154
+ polyglot
155
+ polyglot
156
+ polyglot
157
+ polyglot
158
+ polyglot
159
+ polyglot
160
+ polyglot
161
+ polyglot
162
+ polyglot
163
+ polyglot
164
+ polyglot
165
+ polyglot
166
+ polyglot
167
+ polyglot (>= 0.3.1)
168
+ polyglot (>= 0.3.1)
169
+ polyglot (>= 0.3.1)
170
+ polyglot (>= 0.3.1)
171
+ polyglot (>= 0.3.1)
172
+ polyglot (>= 0.3.1)
173
+ polyglot (>= 0.3.1)
174
+ polyglot (>= 0.3.1)
175
+ polyglot (>= 0.3.1)
176
+ polyglot (>= 0.3.1)
177
+ polyglot (>= 0.3.1)
178
+ polyglot (>= 0.3.1)
179
+ polyglot (>= 0.3.1)
180
+ polyglot (>= 0.3.1)
181
+ polyglot (>= 0.3.1)
182
+ polyglot (>= 0.3.1)
183
+ polyglot (>= 0.3.1)
184
+ polyglot (>= 0.3.1)
185
+ polyglot (>= 0.3.1)
186
+ polyglot (>= 0.3.1)
187
+ polyglot (>= 0.3.1)
188
+ polyglot (>= 0.3.1)
189
+ polyglot (>= 0.3.1)
190
+ polyglot (>= 0.3.1)
191
+ polyglot (>= 0.3.1)
192
+ polyglot (>= 0.3.1)
193
+ polyglot (>= 0.3.1)
194
+ polyglot (>= 0.3.1)
195
+ polyglot (>= 0.3.1)
196
+ polyglot (>= 0.3.1)
197
+ polyglot (>= 0.3.1)
198
+ polyglot (>= 0.3.1)
199
+ polyglot (>= 0.3.1)
200
+ polyglot (>= 0.3.1)
201
+ polyglot (>= 0.3.1)
202
+ polyglot (>= 0.3.1)
203
+ polyglot (>= 0.3.1)
204
+ polyglot (>= 0.3.1)
205
+ polyglot (>= 0.3.1)
206
+ polyglot (>= 0.3.1)
207
+ polyglot (>= 0.3.1)
208
+ polyglot (>= 0.3.1)
209
+ polyglot (>= 0.3.1)
210
+ polyglot (>= 0.3.1)
211
+ polyglot (>= 0.3.1)
212
+ polyglot (>= 0.3.1)
213
+ polyglot (>= 0.3.1)
214
+ polyglot (>= 0.3.1)
215
+ polyglot (>= 0.3.1)
216
+ polyglot (>= 0.3.1)
217
+ polyglot (>= 0.3.1)
218
+ polyglot (>= 0.3.1)
219
+ polyglot (>= 0.3.1)
220
+ polyglot (>= 0.3.1)
221
+ polyglot (>= 0.3.1)
222
+ polyglot (>= 0.3.1)
223
+ polyglot (>= 0.3.1)
224
+ polyglot (>= 0.3.1)
225
+ polyglot (>= 0.3.1)
226
+ polyglot (>= 0.3.1)
227
+ polyglot (>= 0.3.1)
228
+ polyglot (>= 0.3.1)
229
+ polyglot (>= 0.3.1)
230
+ polyglot (>= 0.3.1)
231
+ polyglot (>= 0.3.1)
232
+ polyglot (>= 0.3.1)
233
+ polyglot (>= 0.3.1)
234
+ polyglot (>= 0.3.1)
235
+ polyglot (>= 0.3.1)
236
+ polyglot (>= 0.3.1)
237
+ polyglot (>= 0.3.1)
238
+ polyglot (>= 0.3.1)
239
+ polyglot (>= 0.3.1)
240
+ polyglot (>= 0.3.1)
241
+ polyglot (>= 0.3.1)
242
+ polyglot (>= 0.3.1)
243
+ polyglot (>= 0.3.1)
244
+ polyglot (>= 0.3.1)
245
+ polyglot (>= 0.3.1)
246
+ polyglot (>= 0.3.1)
247
+ polyglot (>= 0.3.1)
248
+ polyglot (>= 0.3.1)
249
+ polyglot (>= 0.3.1)
250
+ polyglot (>= 0.3.1)
251
+ polyglot (>= 0.3.1)
252
+ polyglot (>= 0.3.1)
253
+ polyglot (>= 0.3.1)
254
+ polyglot (>= 0.3.1)
255
+ polyglot (>= 0.3.1)
256
+ polyglot (>= 0.3.1)
257
+ polyglot (>= 0.3.1)
258
+ polyglot (>= 0.3.1)
259
+ polyglot (>= 0.3.1)
260
+ polyglot (>= 0.3.1)
261
+ polyglot (>= 0.3.1)
262
+ polyglot (>= 0.3.1)
263
+ polyglot (>= 0.3.1)
264
+ polyglot (>= 0.3.1)
265
+ polyglot (>= 0.3.1)
266
+ polyglot (>= 0.3.1)
267
+ polyglot (>= 0.3.1)
268
+ polyglot (>= 0.3.1)
269
+ polyglot (>= 0.3.1)
270
+ polyglot (>= 0.3.1)
271
+ polyglot (>= 0.3.1)
272
+ polyglot (>= 0.3.1)
273
+ polyglot (>= 0.3.1)
274
+ polyglot (>= 0.3.1)
275
+ polyglot (>= 0.3.1)
276
+ polyglot (>= 0.3.1)
277
+ polyglot (>= 0.3.1)
278
+ polyglot (>= 0.3.1)
279
+ polyglot (>= 0.3.1)
280
+ polyglot (>= 0.3.1)
281
+ polyglot (>= 0.3.1)
282
+ polyglot (>= 0.3.1)
283
+ polyglot (>= 0.3.1)
284
+ polyglot (>= 0.3.1)
285
+ polyglot (>= 0.3.1)
286
+ polyglot (>= 0.3.1)
287
+ polyglot (>= 0.3.1)
288
+ polyglot (>= 0.3.1)
289
+ polyglot (>= 0.3.1)
290
+ polyglot (>= 0.3.1)
291
+ polyglot (>= 0.3.1)
292
+ polyglot (>= 0.3.1)
293
+ polyglot (>= 0.3.1)
294
+ polyglot (>= 0.3.1)
295
+ polyglot (>= 0.3.1)
296
+ polyglot (>= 0.3.1)
297
+ polyglot (>= 0.3.1)
298
+ polyglot (>= 0.3.1)
299
+ polyglot (>= 0.3.1)
300
+ polyglot (>= 0.3.1)
301
+ polyglot (>= 0.3.1)
302
+ polyglot (>= 0.3.1)
303
+ polyglot (>= 0.3.1)
304
+ polyglot (>= 0.3.1)
305
+ polyglot (>= 0.3.1)
306
+ polyglot (>= 0.3.1)
307
+ polyglot (>= 0.3.1)
308
+ polyglot (>= 0.3.1)
309
+ polyglot (>= 0.3.1)
310
+ polyglot (>= 0.3.1)
311
+ polyglot (>= 0.3.1)
312
+ polyglot (>= 0.3.1)
313
+ polyglot (>= 0.3.1)
314
+ polyglot (>= 0.3.1)
315
+ polyglot (>= 0.3.1)
316
+ polyglot (>= 0.3.1)
317
+ polyglot (>= 0.3.1)
318
+ polyglot (>= 0.3.1)
319
+ polyglot (>= 0.3.1)
320
+ polyglot (>= 0.3.1)
321
+ polyglot (>= 0.3.1)
322
+ polyglot (>= 0.3.1)
323
+ polyglot (>= 0.3.1)
324
+ polyglot (>= 0.3.1)
325
+ polyglot (>= 0.3.1)
326
+ polyglot (>= 0.3.1)
327
+ polyglot (>= 0.3.1)
328
+ polyglot (>= 0.3.1)
329
+ polyglot (>= 0.3.1)
330
+ polyglot (>= 0.3.1)
331
+ polyglot (>= 0.3.1)
332
+ polyglot (>= 0.3.1)
333
+ polyglot (>= 0.3.1)
334
+ polyglot (>= 0.3.1)
335
+ polyglot (>= 0.3.1)
336
+ polyglot (>= 0.3.1)
337
+ polyglot (>= 0.3.1)
338
+ polyglot (>= 0.3.1)
339
+ polyglot (>= 0.3.1)
340
+ polyglot (>= 0.3.1)
341
+ polyglot (>= 0.3.1)
342
+ polyglot (>= 0.3.1)
343
+ polyglot (>= 0.3.1)
344
+ polyglot (>= 0.3.1)
345
+ polyglot (>= 0.3.1)
346
+ polyglot (>= 0.3.1)
347
+ polyglot (>= 0.3.1)
348
+ polyglot (>= 0.3.1)
349
+ polyglot (>= 0.3.1)
350
+ polyglot (>= 0.3.1)
351
+ polyglot (>= 0.3.1)
352
+ polyglot (>= 0.3.1)
353
+ polyglot (>= 0.3.1)
354
+ polyglot (>= 0.3.1)
355
+ polyglot (>= 0.3.1)
356
+ polyglot (>= 0.3.1)
357
+ polyglot (>= 0.3.1)
358
+ polyglot (>= 0.3.1)
359
+ polyglot (>= 0.3.1)
360
+ polyglot (>= 0.3.1)
361
+ polyglot (>= 0.3.1)
362
+ polyglot (>= 0.3.1)
363
+ polyglot (>= 0.3.1)
364
+ polyglot (>= 0.3.1)
365
+ polyglot (>= 0.3.1)
366
+ polyglot (>= 0.3.1)
367
+ polyglot (>= 0.3.1)
368
+ polyglot (>= 0.3.1)
369
+ polyglot (>= 0.3.1)
370
+ polyglot (>= 0.3.1)
371
+ polyglot (>= 0.3.1)
372
+ polyglot (>= 0.3.1)
373
+ polyglot (>= 0.3.1)
374
+ polyglot (>= 0.3.1)
375
+ polyglot (>= 0.3.1)
376
+ polyglot (>= 0.3.1)
377
+ polyglot (>= 0.3.1)
378
+ polyglot (>= 0.3.1)
379
+ polyglot (>= 0.3.1)
380
+ polyglot (>= 0.3.1)
381
+ polyglot (>= 0.3.1)
382
+ polyglot (>= 0.3.1)
383
+ polyglot (>= 0.3.1)
384
+ polyglot (>= 0.3.1)
385
+ polyglot (>= 0.3.1)
386
+ polyglot (>= 0.3.1)
387
+ polyglot (>= 0.3.1)
388
+ polyglot (>= 0.3.1)
389
+ polyglot (>= 0.3.1)
390
+ polyglot (>= 0.3.1)
391
+ polyglot (>= 0.3.1)
392
+ polyglot (>= 0.3.1)
393
+ polyglot (>= 0.3.1)
394
+ polyglot (>= 0.3.1)
395
+ polyglot (>= 0.3.1)
396
+ polyglot (>= 0.3.1)
397
+ polyglot (>= 0.3.1)
398
+ polyglot (>= 0.3.1)
399
+ polyglot (>= 0.3.1)
400
+ polyglot (>= 0.3.1)
401
+ polyglot (>= 0.3.1)
402
+ polyglot (>= 0.3.1)
403
+ polyglot (>= 0.3.1)
404
+ polyglot (>= 0.3.1)
405
+ polyglot (>= 0.3.1)
406
+ polyglot (>= 0.3.1)
407
+ polyglot (>= 0.3.1)
408
+ polyglot (>= 0.3.1)
409
+ polyglot (>= 0.3.1)
410
+ polyglot (>= 0.3.1)
411
+ polyglot (>= 0.3.1)
412
+ polyglot (>= 0.3.1)
413
+ polyglot (>= 0.3.1)
414
+ polyglot (>= 0.3.1)
415
+ polyglot (>= 0.3.1)
416
+ polyglot (>= 0.3.1)
417
+ polyglot (>= 0.3.1)
418
+ polyglot (>= 0.3.1)
419
+ polyglot (>= 0.3.1)
420
+ polyglot (>= 0.3.1)
421
+ polyglot (>= 0.3.1)
422
+ polyglot (>= 0.3.1)
423
+ polyglot (>= 0.3.1)
424
+ polyglot (>= 0.3.1)
425
+ polyglot (>= 0.3.1)
426
+ polyglot (>= 0.3.1)
427
+ polyglot (>= 0.3.1)
428
+ polyglot (>= 0.3.1)
429
+ polyglot (>= 0.3.1)
430
+ polyglot (>= 0.3.1)
431
+ polyglot (>= 0.3.1)
432
+ polyglot (>= 0.3.1)
433
+ polyglot (>= 0.3.1)
434
+ polyglot (>= 0.3.1)
435
+ polyglot (>= 0.3.1)
436
+ polyglot (>= 0.3.1)
437
+ polyglot (>= 0.3.1)
438
+ polyglot (>= 0.3.1)
439
+ polyglot (>= 0.3.1)
440
+ polyglot (>= 0.3.1)
441
+ polyglot (>= 0.3.1)
442
+ polyglot (>= 0.3.1)
443
+ polyglot (>= 0.3.1)
444
+ polyglot (>= 0.3.1)
445
+ polyglot (>= 0.3.1)
446
+ polyglot (>= 0.3.1)
447
+ polyglot (>= 0.3.1)
448
+ polyglot (>= 0.3.1)
449
+ polyglot (>= 0.3.1)
450
+ polyglot (>= 0.3.1)
451
+ polyglot (>= 0.3.1)
452
+ polyglot (>= 0.3.1)
453
+ polyglot (>= 0.3.1)
454
+ polyglot (>= 0.3.1)
455
+ polyglot (>= 0.3.1)
456
+ polyglot (>= 0.3.1)
457
+ polyglot (>= 0.3.1)
458
+ polyglot (>= 0.3.1)
459
+ polyglot (>= 0.3.1)
460
+ polyglot (>= 0.3.1)
461
+ polyglot (>= 0.3.1)
462
+ polyglot (>= 0.3.1)
463
+ polyglot (>= 0.3.1)
464
+ polyglot (>= 0.3.1)
465
+ polyglot (>= 0.3.1)
466
+ polyglot (>= 0.3.1)
467
+ polyglot (>= 0.3.1)
468
+ polyglot (>= 0.3.1)
469
+ polyglot (>= 0.3.1)
470
+ polyglot (>= 0.3.1)
471
+ polyglot (>= 0.3.1)
472
+ polyglot (>= 0.3.1)
473
+ polyglot (>= 0.3.1)
474
+ polyglot (>= 0.3.1)
475
+ polyglot (>= 0.3.1)
476
+ polyglot (>= 0.3.1)
477
+ polyglot (>= 0.3.1)
478
+ polyglot (>= 0.3.1)
479
+ polyglot (>= 0.3.1)
480
+ polyglot (>= 0.3.1)
481
+ polyglot (>= 0.3.1)
482
+ polyglot (>= 0.3.1)
483
+ polyglot (>= 0.3.1)
484
+ polyglot (>= 0.3.1)
485
+ polyglot (>= 0.3.1)
486
+ polyglot (>= 0.3.1)
487
+ polyglot (>= 0.3.1)
488
+ polyglot (>= 0.3.1)
489
+ polyglot (>= 0.3.1)
490
+ polyglot (>= 0.3.1)
491
+ polyglot (>= 0.3.1)
492
+ polyglot (>= 0.3.1)
493
+ polyglot (>= 0.3.1)
494
+ polyglot (>= 0.3.1)
495
+ polyglot (>= 0.3.1)
496
+ polyglot (>= 0.3.1)
497
+ polyglot (>= 0.3.1)
498
+ polyglot (>= 0.3.1)
499
+ polyglot (>= 0.3.1)
500
+ polyglot (>= 0.3.1)
501
+ polyglot (>= 0.3.1)
502
+ polyglot (>= 0.3.1)
503
+ polyglot (>= 0.3.1)
504
+ polyglot (>= 0.3.1)
505
+ polyglot (>= 0.3.1)
506
+ polyglot (>= 0.3.1)
507
+ polyglot (>= 0.3.1)
508
+ polyglot (>= 0.3.1)
509
+ polyglot (>= 0.3.1)
510
+ polyglot (>= 0.3.1)
511
+ polyglot (>= 0.3.1)
512
+ polyglot (>= 0.3.1)
513
+ polyglot (>= 0.3.1)
514
+ polyglot (>= 0.3.1)
515
+ polyglot (>= 0.3.1)
516
+ polyglot (>= 0.3.1)
517
+ polyglot (>= 0.3.1)
518
+ polyglot (>= 0.3.1)
519
+ polyglot (>= 0.3.1)
520
+ polyglot (>= 0.3.1)
521
+ polyglot (>= 0.3.1)
522
+ polyglot (>= 0.3.1)
523
+ polyglot (>= 0.3.1)
524
+ polyglot (>= 0.3.1)
525
+ polyglot (>= 0.3.1)
526
+ polyglot (>= 0.3.1)
527
+ polyglot (>= 0.3.1)
528
+ polyglot (>= 0.3.1)
529
+ polyglot (>= 0.3.1)
530
+ polyglot (>= 0.3.1)
531
+ polyglot (>= 0.3.1)
532
+ polyglot (>= 0.3.1)
533
+ polyglot (>= 0.3.1)
534
+ polyglot (>= 0.3.1)
535
+ polyglot (>= 0.3.1)
536
+ polyglot (>= 0.3.1)
537
+ polyglot (>= 0.3.1)
538
+ polyglot (>= 0.3.1)
539
+ tzinfo (1.2.2)
540
+ thread_safe (~> 0.1)
541
+
542
+ PLATFORMS
543
+ ruby
544
+
545
+ DEPENDENCIES
546
+ annotate
547
+ database_cleaner
548
+ factory_girl_rails
549
+ faker
550
+ guard-rspec
551
+ pg
552
+ rails (= 4.1.0)
553
+ rspec-rails
554
+ superslug!