media_types-serialization 0.8.1 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +10 -1
  3. data/.gitignore +12 -12
  4. data/.idea/.rakeTasks +5 -5
  5. data/.idea/inspectionProfiles/Project_Default.xml +5 -5
  6. data/.idea/runConfigurations/test.xml +19 -19
  7. data/CHANGELOG.md +18 -0
  8. data/CODE_OF_CONDUCT.md +74 -74
  9. data/Gemfile +4 -4
  10. data/Gemfile.lock +58 -61
  11. data/LICENSE.txt +21 -21
  12. data/README.md +640 -173
  13. data/Rakefile +10 -10
  14. data/bin/console +14 -14
  15. data/bin/setup +8 -8
  16. data/lib/media_types/problem.rb +64 -0
  17. data/lib/media_types/serialization.rb +431 -172
  18. data/lib/media_types/serialization/base.rb +111 -91
  19. data/lib/media_types/serialization/error.rb +178 -0
  20. data/lib/media_types/serialization/fake_validator.rb +52 -0
  21. data/lib/media_types/serialization/serialization_dsl.rb +117 -0
  22. data/lib/media_types/serialization/serialization_registration.rb +235 -0
  23. data/lib/media_types/serialization/serializers/api_viewer.rb +133 -0
  24. data/lib/media_types/serialization/serializers/common_css.rb +168 -0
  25. data/lib/media_types/serialization/serializers/endpoint_description_serializer.rb +80 -0
  26. data/lib/media_types/serialization/serializers/fallback_not_acceptable_serializer.rb +85 -0
  27. data/lib/media_types/serialization/serializers/fallback_unsupported_media_type_serializer.rb +58 -0
  28. data/lib/media_types/serialization/serializers/input_validation_error_serializer.rb +89 -0
  29. data/lib/media_types/serialization/serializers/problem_serializer.rb +87 -0
  30. data/lib/media_types/serialization/version.rb +1 -1
  31. data/media_types-serialization.gemspec +50 -50
  32. metadata +40 -43
  33. data/.travis.yml +0 -17
  34. data/lib/generators/media_types/serialization/api_viewer/api_viewer_generator.rb +0 -25
  35. data/lib/generators/media_types/serialization/api_viewer/templates/api_viewer.html.erb +0 -98
  36. data/lib/generators/media_types/serialization/api_viewer/templates/initializer.rb +0 -33
  37. data/lib/generators/media_types/serialization/api_viewer/templates/template_controller.rb +0 -23
  38. data/lib/media_types/serialization/media_type/register.rb +0 -4
  39. data/lib/media_types/serialization/migrations_command.rb +0 -38
  40. data/lib/media_types/serialization/migrations_support.rb +0 -50
  41. data/lib/media_types/serialization/mime_type_support.rb +0 -64
  42. data/lib/media_types/serialization/no_content_type_given.rb +0 -11
  43. data/lib/media_types/serialization/no_media_type_serializers.rb +0 -11
  44. data/lib/media_types/serialization/no_serializer_for_content_type.rb +0 -15
  45. data/lib/media_types/serialization/renderer.rb +0 -41
  46. data/lib/media_types/serialization/renderer/register.rb +0 -4
  47. data/lib/media_types/serialization/wrapper.rb +0 -13
  48. data/lib/media_types/serialization/wrapper/html_wrapper.rb +0 -45
  49. data/lib/media_types/serialization/wrapper/media_collection_wrapper.rb +0 -61
  50. data/lib/media_types/serialization/wrapper/media_index_wrapper.rb +0 -61
  51. data/lib/media_types/serialization/wrapper/media_object_wrapper.rb +0 -55
  52. data/lib/media_types/serialization/wrapper_support.rb +0 -38
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d45613b95cbde04435ac48959dfce588a6a491e6e1fa4f2c617735b99f88dc53
4
- data.tar.gz: 4bd26cf5cfd142d0fe6161730be139d5120da57575e2089c7decd9e729ee4f27
3
+ metadata.gz: 262dba633b56ee02980cb04a7e768198451963a71885c50bc35fafb4744c7ecd
4
+ data.tar.gz: 29f99b4a875081f23e4fd583e9adf0a99cf9250c597c5c5d553d4da224540416
5
5
  SHA512:
6
- metadata.gz: 9c9f83c9556147082048657d63094af7512e05fb521ae93bfed8659ebe62aa53ea600c580fb11053ab1eab4eaba4f2e58659e491c31e23495049ca5adffd8343
7
- data.tar.gz: 4da94ab9612d690c4b007e079a17fa69f39dc23e4b964c3df9024e6e6df52e81a5e3d4db116e3d7263ee909db00d801f860f9522267a797061d9548efaa54d88
6
+ metadata.gz: 61f10719fe7b7741323b119ede580f0ac2c003c77f28201d62c9c43a0149b415193974df028539cb2f47286dcfdeace81749740c9a9a228037d888fd47d0a2e9
7
+ data.tar.gz: 85578dcb19c073cacdd78714c4976dd3ebb1b87438e5e5036b82a3623dc8477a1a3e8c8ab6ea55aa79d50e71ec659e8c69029f7e037519610f97126f2f5949c7
@@ -1,6 +1,15 @@
1
1
  name: Ruby
2
2
 
3
- on: [push]
3
+ on:
4
+ pull_request:
5
+ branches:
6
+ - master
7
+ push:
8
+ branches:
9
+ - master
10
+ - depfu/*
11
+ - release/*
12
+ - feature/*
4
13
 
5
14
  jobs:
6
15
  build:
data/.gitignore CHANGED
@@ -1,12 +1,12 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- .idea/workspace.xml
11
- .idea/usage.statistics.xml
12
- .idea/tasks.xml
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ .idea/workspace.xml
11
+ .idea/usage.statistics.xml
12
+ .idea/tasks.xml
data/.idea/.rakeTasks CHANGED
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
- <Settings><!--This file was automatically generated by Ruby plugin.
3
- You are allowed to:
4
- 1. Remove rake task
5
- 2. Add existing rake tasks
6
- To add existing rake tasks automatically delete this file and reload the project.
2
+ <Settings><!--This file was automatically generated by Ruby plugin.
3
+ You are allowed to:
4
+ 1. Remove rake task
5
+ 2. Add existing rake tasks
6
+ To add existing rake tasks automatically delete this file and reload the project.
7
7
  --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build media_types-serialization-0.5.1.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install media_types-serialization-0.5.1.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install media_types-serialization-0.5.1.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.5.1 and build and push media_types-serialization-0.5.1.gem to rubygems.org" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run tests" fullCmd="test" taksId="test" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
@@ -1,6 +1,6 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
5
- </profile>
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Rubocop" enabled="false" level="WARNING" enabled_by_default="false" />
5
+ </profile>
6
6
  </component>
@@ -1,20 +1,20 @@
1
- <component name="ProjectRunConfigurationManager">
2
- <configuration default="false" name="test" type="RakeRunConfigurationType" factoryName="Rake">
3
- <module name="media_types-serialization" />
4
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="" />
5
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
6
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
7
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
8
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
9
- <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
10
- <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
11
- <EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov" />
12
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="test" />
13
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
14
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":test_unit " />
15
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
16
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
17
- <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
18
- <method v="2" />
19
- </configuration>
1
+ <component name="ProjectRunConfigurationManager">
2
+ <configuration default="false" name="test" type="RakeRunConfigurationType" factoryName="Rake">
3
+ <module name="media_types-serialization" />
4
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="" />
5
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
6
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
7
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
8
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
9
+ <EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
10
+ <EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
11
+ <EXTENSION ID="RubyCoverageRunConfigurationExtension" track_test_folders="true" runner="rcov" />
12
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_NAME" VALUE="test" />
13
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ARGS" VALUE="" />
14
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_ATTACHED_TEST_FRAMEWORKS" VALUE=":test_unit " />
15
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_TRACE" VALUE="false" />
16
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_DRYRUN" VALUE="false" />
17
+ <RAKE_RUN_CONFIG_SETTINGS_ID NAME="RAKE_TASK_OPTION_PREREQS" VALUE="false" />
18
+ <method v="2" />
19
+ </configuration>
20
20
  </component>
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1
4
+
5
+ - 🐛 Explicitly set all oj and json parameters to ensure correct behavior with changed defaults.
6
+ - 🐛 Fix serializer not deserializing as symbols.
7
+
8
+ ## 1.0.0
9
+
10
+ - ✨ Add support for input deserialization.
11
+ - ✨ Added serializer DSL to be more in line with validation gem.
12
+ - ✨ Added ability to make a serializer without a validator.
13
+ - ✨ Added error serializer that emits [`application/problem+json`](https://tools.ietf.org/html/rfc7231).
14
+ - ✨ Reduced number of dependencies.
15
+ - ✨ Validators no longer need to be registered to be used.
16
+ - ✨ Added a [wiki where errors can be documented](https://docs.delftsolutions.nl). Feel free to make pages for your own namespaced errors.
17
+ - 💔 Serializer definition API has backwards incompatible changes.
18
+ - 💔 API viewer is now no longer registered as html but accessible with the `?api_viewer=last` query parameter.
19
+ - 💔 Validators can no longer be registered for use in `format do`.
20
+
3
21
  ## 0.8.1
4
22
 
5
23
  - 🐛 Fix collection wrappers sometimes sending the wrong data to serializers
data/CODE_OF_CONDUCT.md CHANGED
@@ -1,74 +1,74 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at derk-jan+github@karrenbeld.info. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at derk-jan+github@karrenbeld.info. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in media_types-serialization.gemspec
4
- gemspec
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in media_types-serialization.gemspec
4
+ gemspec
data/Gemfile.lock CHANGED
@@ -1,63 +1,62 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- media_types-serialization (0.8.1)
4
+ media_types-serialization (1.0.1)
5
5
  actionpack (>= 4.0.0)
6
6
  activesupport (>= 4.0.0)
7
7
  http_headers-accept (>= 0.2.2, < 1.0.0)
8
8
  http_headers-link (< 1.0.0)
9
- media_types (>= 0.6.2)
10
- oj (>= 3.5.0)
9
+ media_types (>= 2.0.0, < 3.0.0)
11
10
 
12
11
  GEM
13
12
  remote: https://rubygems.org/
14
13
  specs:
15
- actioncable (5.2.4)
16
- actionpack (= 5.2.4)
14
+ actioncable (5.2.4.2)
15
+ actionpack (= 5.2.4.2)
17
16
  nio4r (~> 2.0)
18
17
  websocket-driver (>= 0.6.1)
19
- actionmailer (5.2.4)
20
- actionpack (= 5.2.4)
21
- actionview (= 5.2.4)
22
- activejob (= 5.2.4)
18
+ actionmailer (5.2.4.2)
19
+ actionpack (= 5.2.4.2)
20
+ actionview (= 5.2.4.2)
21
+ activejob (= 5.2.4.2)
23
22
  mail (~> 2.5, >= 2.5.4)
24
23
  rails-dom-testing (~> 2.0)
25
- actionpack (5.2.4)
26
- actionview (= 5.2.4)
27
- activesupport (= 5.2.4)
28
- rack (~> 2.0)
24
+ actionpack (5.2.4.2)
25
+ actionview (= 5.2.4.2)
26
+ activesupport (= 5.2.4.2)
27
+ rack (~> 2.0, >= 2.0.8)
29
28
  rack-test (>= 0.6.3)
30
29
  rails-dom-testing (~> 2.0)
31
30
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
32
- actionview (5.2.4)
33
- activesupport (= 5.2.4)
31
+ actionview (5.2.4.2)
32
+ activesupport (= 5.2.4.2)
34
33
  builder (~> 3.1)
35
34
  erubi (~> 1.4)
36
35
  rails-dom-testing (~> 2.0)
37
36
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
38
- activejob (5.2.4)
39
- activesupport (= 5.2.4)
37
+ activejob (5.2.4.2)
38
+ activesupport (= 5.2.4.2)
40
39
  globalid (>= 0.3.6)
41
- activemodel (5.2.4)
42
- activesupport (= 5.2.4)
43
- activerecord (5.2.4)
44
- activemodel (= 5.2.4)
45
- activesupport (= 5.2.4)
40
+ activemodel (5.2.4.2)
41
+ activesupport (= 5.2.4.2)
42
+ activerecord (5.2.4.2)
43
+ activemodel (= 5.2.4.2)
44
+ activesupport (= 5.2.4.2)
46
45
  arel (>= 9.0)
47
- activestorage (5.2.4)
48
- actionpack (= 5.2.4)
49
- activerecord (= 5.2.4)
46
+ activestorage (5.2.4.2)
47
+ actionpack (= 5.2.4.2)
48
+ activerecord (= 5.2.4.2)
50
49
  marcel (~> 0.3.1)
51
- activesupport (5.2.4)
50
+ activesupport (5.2.4.2)
52
51
  concurrent-ruby (~> 1.0, >= 1.0.2)
53
52
  i18n (>= 0.7, < 2)
54
53
  minitest (~> 5.1)
55
54
  tzinfo (~> 1.1)
56
55
  arel (9.0.0)
57
56
  awesome_print (1.8.0)
58
- builder (3.2.3)
59
- concurrent-ruby (1.1.5)
60
- crass (1.0.5)
57
+ builder (3.2.4)
58
+ concurrent-ruby (1.1.6)
59
+ crass (1.0.6)
61
60
  erubi (1.9.0)
62
61
  globalid (0.4.2)
63
62
  activesupport (>= 4.2.0)
@@ -66,55 +65,53 @@ GEM
66
65
  http_headers-link (0.2.1)
67
66
  http_headers-utils (>= 0.2.0, < 1.0.0)
68
67
  http_headers-utils (0.2.0)
69
- i18n (1.7.0)
68
+ i18n (1.8.2)
70
69
  concurrent-ruby (~> 1.0)
71
- loofah (2.4.0)
70
+ loofah (2.5.0)
72
71
  crass (~> 1.0.2)
73
72
  nokogiri (>= 1.5.9)
74
73
  mail (2.7.1)
75
74
  mini_mime (>= 0.1.1)
76
75
  marcel (0.3.3)
77
76
  mimemagic (~> 0.3.2)
78
- media_types (0.6.2)
79
- method_source (0.9.2)
80
- mimemagic (0.3.3)
77
+ media_types (2.0.1)
78
+ method_source (1.0.0)
79
+ mimemagic (0.3.4)
81
80
  mini_mime (1.0.2)
82
81
  mini_portile2 (2.4.0)
83
- minitest (5.13.0)
82
+ minitest (5.14.0)
84
83
  nio4r (2.5.2)
85
- nokogiri (1.10.7)
84
+ nokogiri (1.10.9)
86
85
  mini_portile2 (~> 2.4.0)
87
- nokogiri (1.10.7-x64-mingw32)
88
- mini_portile2 (~> 2.4.0)
89
- oj (3.10.0)
90
- rack (2.0.7)
86
+ oj (3.10.6)
87
+ rack (2.2.2)
91
88
  rack-test (1.1.0)
92
89
  rack (>= 1.0, < 3)
93
- rails (5.2.4)
94
- actioncable (= 5.2.4)
95
- actionmailer (= 5.2.4)
96
- actionpack (= 5.2.4)
97
- actionview (= 5.2.4)
98
- activejob (= 5.2.4)
99
- activemodel (= 5.2.4)
100
- activerecord (= 5.2.4)
101
- activestorage (= 5.2.4)
102
- activesupport (= 5.2.4)
90
+ rails (5.2.4.2)
91
+ actioncable (= 5.2.4.2)
92
+ actionmailer (= 5.2.4.2)
93
+ actionpack (= 5.2.4.2)
94
+ actionview (= 5.2.4.2)
95
+ activejob (= 5.2.4.2)
96
+ activemodel (= 5.2.4.2)
97
+ activerecord (= 5.2.4.2)
98
+ activestorage (= 5.2.4.2)
99
+ activesupport (= 5.2.4.2)
103
100
  bundler (>= 1.3.0)
104
- railties (= 5.2.4)
101
+ railties (= 5.2.4.2)
105
102
  sprockets-rails (>= 2.0.0)
106
103
  rails-dom-testing (2.0.3)
107
104
  activesupport (>= 4.2.0)
108
105
  nokogiri (>= 1.6)
109
106
  rails-html-sanitizer (1.3.0)
110
107
  loofah (~> 2.3)
111
- railties (5.2.4)
112
- actionpack (= 5.2.4)
113
- activesupport (= 5.2.4)
108
+ railties (5.2.4.2)
109
+ actionpack (= 5.2.4.2)
110
+ activesupport (= 5.2.4.2)
114
111
  method_source
115
112
  rake (>= 0.8.7)
116
113
  thor (>= 0.19.0, < 2.0)
117
- rake (10.5.0)
114
+ rake (13.0.1)
118
115
  sprockets (4.0.0)
119
116
  concurrent-ruby (~> 1.0)
120
117
  rack (> 1, < 3)
@@ -122,9 +119,9 @@ GEM
122
119
  actionpack (>= 4.0)
123
120
  activesupport (>= 4.0)
124
121
  sprockets (>= 3.0.0)
125
- thor (0.20.3)
122
+ thor (1.0.1)
126
123
  thread_safe (0.3.6)
127
- tzinfo (1.2.5)
124
+ tzinfo (1.2.7)
128
125
  thread_safe (~> 0.1)
129
126
  websocket-driver (0.7.1)
130
127
  websocket-extensions (>= 0.1.0)
@@ -132,15 +129,15 @@ GEM
132
129
 
133
130
  PLATFORMS
134
131
  ruby
135
- x64-mingw32
136
132
 
137
133
  DEPENDENCIES
138
134
  awesome_print
139
- bundler (~> 2.0)
135
+ bundler
140
136
  media_types-serialization!
141
137
  minitest (~> 5.0)
138
+ oj
142
139
  rails (~> 5.2)
143
- rake (~> 10.0)
140
+ rake (~> 13.0)
144
141
 
145
142
  BUNDLED WITH
146
- 2.0.1
143
+ 1.17.3