human_attribute_values 0.0.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: human_attribute_values
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Peschla
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-20 00:00:00.000000000 Z
11
+ date: 2016-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 4.1.8
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '4.3'
22
+ version: '5.1'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,35 +29,35 @@ dependencies:
29
29
  version: 4.1.8
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '4.3'
32
+ version: '5.1'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: sqlite3
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '0'
39
+ version: 1.3.10
40
40
  type: :development
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '0'
46
+ version: 1.3.10
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: appraisal
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '0'
53
+ version: '2.0'
54
54
  type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
59
59
  - !ruby/object:Gem::Version
60
- version: '0'
60
+ version: '2.0'
61
61
  description: Easy translation of attribute values for models through locale files
62
62
  in a similar way as for attribute names.
63
63
  email:
@@ -162,77 +162,77 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
162
  version: '0'
163
163
  requirements: []
164
164
  rubyforge_project:
165
- rubygems_version: 2.4.6
165
+ rubygems_version: 2.4.8
166
166
  signing_key:
167
167
  specification_version: 4
168
168
  summary: Translate attribute values using Rails I18n API.
169
169
  test_files:
170
170
  - test/human_attribute_values_test.rb
171
171
  - test/test_helper.rb
172
- - test/dummy/config.ru
173
- - test/dummy/bin/rake
174
- - test/dummy/bin/bundle
175
- - test/dummy/bin/rails
176
- - test/dummy/public/404.html
177
- - test/dummy/public/favicon.ico
178
- - test/dummy/public/500.html
179
- - test/dummy/public/422.html
180
- - test/dummy/test/fixtures/children.yml
181
- - test/dummy/test/fixtures/the_answers.yml
182
- - test/dummy/test/fixtures/grandchildren.yml
183
- - test/dummy/test/fixtures/siblings.yml
184
- - test/dummy/test/fixtures/enum_models.yml
185
- - test/dummy/test/fixtures/lexicons.yml
186
- - test/dummy/test/fixtures/numeric_models.yml
187
- - test/dummy/test/fixtures/boolean_models.yml
188
- - test/dummy/test/models/sibling_test.rb
189
- - test/dummy/test/models/lexicon_test.rb
190
- - test/dummy/test/models/child_test.rb
191
- - test/dummy/test/models/the_answer_test.rb
172
+ - test/dummy/Rakefile
173
+ - test/dummy/db/test.sqlite3
174
+ - test/dummy/db/migrate/20150127220502_create_the_answers.rb
175
+ - test/dummy/db/migrate/20150131161322_create_boolean_models.rb
176
+ - test/dummy/db/migrate/20150131164609_create_lexicons.rb
177
+ - test/dummy/db/migrate/20150131162551_create_numeric_models.rb
178
+ - test/dummy/db/migrate/20150131153819_create_parents.rb
179
+ - test/dummy/db/migrate/20150131170613_create_enum_models.rb
180
+ - test/dummy/db/schema.rb
181
+ - test/dummy/db/development.sqlite3
192
182
  - test/dummy/test/models/enum_model_test.rb
183
+ - test/dummy/test/models/numeric_model_test.rb
193
184
  - test/dummy/test/models/grand_child_test.rb
185
+ - test/dummy/test/models/the_answer_test.rb
186
+ - test/dummy/test/models/child_test.rb
187
+ - test/dummy/test/models/lexicon_test.rb
194
188
  - test/dummy/test/models/boolean_model_test.rb
195
- - test/dummy/test/models/numeric_model_test.rb
196
- - test/dummy/config/database.yml
189
+ - test/dummy/test/models/sibling_test.rb
190
+ - test/dummy/test/fixtures/enum_models.yml
191
+ - test/dummy/test/fixtures/lexicons.yml
192
+ - test/dummy/test/fixtures/grandchildren.yml
193
+ - test/dummy/test/fixtures/boolean_models.yml
194
+ - test/dummy/test/fixtures/children.yml
195
+ - test/dummy/test/fixtures/siblings.yml
196
+ - test/dummy/test/fixtures/the_answers.yml
197
+ - test/dummy/test/fixtures/numeric_models.yml
198
+ - test/dummy/log/test.log
199
+ - test/dummy/log/development.log
200
+ - test/dummy/bin/rails
201
+ - test/dummy/bin/bundle
202
+ - test/dummy/bin/rake
203
+ - test/dummy/README.rdoc
204
+ - test/dummy/public/500.html
205
+ - test/dummy/public/favicon.ico
206
+ - test/dummy/public/404.html
207
+ - test/dummy/public/422.html
208
+ - test/dummy/app/controllers/application_controller.rb
209
+ - test/dummy/app/assets/stylesheets/application.css
210
+ - test/dummy/app/assets/javascripts/application.js
211
+ - test/dummy/app/helpers/application_helper.rb
212
+ - test/dummy/app/models/the_answer.rb
213
+ - test/dummy/app/models/numeric_model.rb
214
+ - test/dummy/app/models/child.rb
215
+ - test/dummy/app/models/enum_model.rb
216
+ - test/dummy/app/models/lexicon.rb
217
+ - test/dummy/app/models/boolean_model.rb
218
+ - test/dummy/app/models/parent.rb
219
+ - test/dummy/app/models/sibling.rb
220
+ - test/dummy/app/models/grand_child.rb
221
+ - test/dummy/app/views/layouts/application.html.erb
222
+ - test/dummy/config/locales/en.yml
197
223
  - test/dummy/config/routes.rb
198
- - test/dummy/config/environments/production.rb
199
224
  - test/dummy/config/environments/test.rb
225
+ - test/dummy/config/environments/production.rb
200
226
  - test/dummy/config/environments/development.rb
201
- - test/dummy/config/boot.rb
202
- - test/dummy/config/locales/en.yml
203
227
  - test/dummy/config/environment.rb
204
- - test/dummy/config/application.rb
205
- - test/dummy/config/initializers/secret_token.rb
228
+ - test/dummy/config/boot.rb
229
+ - test/dummy/config/initializers/inflections.rb
206
230
  - test/dummy/config/initializers/wrap_parameters.rb
207
- - test/dummy/config/initializers/backtrace_silencers.rb
231
+ - test/dummy/config/initializers/secret_token.rb
208
232
  - test/dummy/config/initializers/session_store.rb
209
233
  - test/dummy/config/initializers/mime_types.rb
234
+ - test/dummy/config/initializers/backtrace_silencers.rb
210
235
  - test/dummy/config/initializers/filter_parameter_logging.rb
211
- - test/dummy/config/initializers/inflections.rb
212
- - test/dummy/Rakefile
213
- - test/dummy/README.rdoc
214
- - test/dummy/app/helpers/application_helper.rb
215
- - test/dummy/app/views/layouts/application.html.erb
216
- - test/dummy/app/assets/stylesheets/application.css
217
- - test/dummy/app/assets/javascripts/application.js
218
- - test/dummy/app/controllers/application_controller.rb
219
- - test/dummy/app/models/enum_model.rb
220
- - test/dummy/app/models/the_answer.rb
221
- - test/dummy/app/models/parent.rb
222
- - test/dummy/app/models/boolean_model.rb
223
- - test/dummy/app/models/grand_child.rb
224
- - test/dummy/app/models/lexicon.rb
225
- - test/dummy/app/models/numeric_model.rb
226
- - test/dummy/app/models/child.rb
227
- - test/dummy/app/models/sibling.rb
228
- - test/dummy/log/development.log
229
- - test/dummy/log/test.log
230
- - test/dummy/db/development.sqlite3
231
- - test/dummy/db/schema.rb
232
- - test/dummy/db/migrate/20150127220502_create_the_answers.rb
233
- - test/dummy/db/migrate/20150131164609_create_lexicons.rb
234
- - test/dummy/db/migrate/20150131161322_create_boolean_models.rb
235
- - test/dummy/db/migrate/20150131153819_create_parents.rb
236
- - test/dummy/db/migrate/20150131162551_create_numeric_models.rb
237
- - test/dummy/db/migrate/20150131170613_create_enum_models.rb
238
- - test/dummy/db/test.sqlite3
236
+ - test/dummy/config/application.rb
237
+ - test/dummy/config/database.yml
238
+ - test/dummy/config.ru