swagger_engine 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.eot +0 -0
  5. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.svg +411 -0
  6. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.ttf +0 -0
  7. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.woff +0 -0
  8. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.woff2 +0 -0
  9. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.eot +0 -0
  10. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.svg +403 -0
  11. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.ttf +0 -0
  12. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.woff +0 -0
  13. data/app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.woff2 +0 -0
  14. data/app/assets/images/swagger_engine/explorer_icons.png +0 -0
  15. data/app/assets/images/swagger_engine/favicon-16x16.png +0 -0
  16. data/app/assets/images/swagger_engine/favicon-32x32.png +0 -0
  17. data/app/assets/images/swagger_engine/favicon.ico +0 -0
  18. data/app/assets/images/swagger_engine/logo_small.png +0 -0
  19. data/app/assets/images/swagger_engine/pet_store_api.png +0 -0
  20. data/app/assets/images/swagger_engine/throbber.gif +0 -0
  21. data/app/assets/images/swagger_engine/wordnik_api.png +0 -0
  22. data/app/assets/javascripts/swagger_engine/application.js +11 -0
  23. data/app/assets/javascripts/swagger_engine/lib/backbone-min.js +15 -0
  24. data/app/assets/javascripts/swagger_engine/lib/handlebars-2.0.0.js +28 -0
  25. data/app/assets/javascripts/swagger_engine/lib/highlight.7.3.pack.js +1 -0
  26. data/app/assets/javascripts/swagger_engine/lib/jquery-1.8.0.min.js +2 -0
  27. data/app/assets/javascripts/swagger_engine/lib/jquery.ba-bbq.min.js +18 -0
  28. data/app/assets/javascripts/swagger_engine/lib/jquery.slideto.min.js +1 -0
  29. data/app/assets/javascripts/swagger_engine/lib/jquery.wiggle.min.js +8 -0
  30. data/app/assets/javascripts/swagger_engine/lib/marked.js +1272 -0
  31. data/app/assets/javascripts/swagger_engine/lib/swagger-oauth.js +284 -0
  32. data/app/assets/javascripts/swagger_engine/lib/underscore-min.js +6 -0
  33. data/app/assets/javascripts/swagger_engine/lib/underscore-min.map +1 -0
  34. data/app/assets/javascripts/swagger_engine/swagger-ui.js +21972 -0
  35. data/app/assets/javascripts/swagger_engine/swagger-ui.min.js +11 -0
  36. data/app/assets/javascripts/swagger_engine/swagger.json +18 -0
  37. data/app/assets/stylesheets/swagger_engine/application.scss +3 -0
  38. data/app/assets/stylesheets/swagger_engine/print.scss +1158 -0
  39. data/app/assets/stylesheets/swagger_engine/reset.scss +125 -0
  40. data/app/assets/stylesheets/swagger_engine/screen.scss +1259 -0
  41. data/app/assets/stylesheets/swagger_engine/typography.scss +26 -0
  42. data/app/controllers/swagger_engine/application_controller.rb +4 -0
  43. data/app/controllers/swagger_engine/swagger_controller.rb +13 -0
  44. data/app/helpers/swagger_engine/application_helper.rb +4 -0
  45. data/app/helpers/swagger_engine/swagger_helper.rb +4 -0
  46. data/app/views/layouts/swagger_engine/application.html.erb +14 -0
  47. data/app/views/swagger_engine/swagger/index.html.erb +95 -0
  48. data/app/views/swagger_engine/swagger/o2c.html +20 -0
  49. data/config/routes.rb +3 -0
  50. data/lib/swagger_engine.rb +4 -0
  51. data/lib/swagger_engine/engine.rb +10 -0
  52. data/lib/swagger_engine/version.rb +3 -0
  53. data/lib/tasks/swagger_engine_tasks.rake +4 -0
  54. data/test/controllers/swagger_engine/swagger_controller_test.rb +9 -0
  55. data/test/dummy/README.rdoc +28 -0
  56. data/test/dummy/Rakefile +6 -0
  57. data/test/dummy/app/assets/javascripts/application.js +13 -0
  58. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  59. data/test/dummy/app/controllers/application_controller.rb +5 -0
  60. data/test/dummy/app/helpers/application_helper.rb +2 -0
  61. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  62. data/test/dummy/bin/bundle +3 -0
  63. data/test/dummy/bin/rails +4 -0
  64. data/test/dummy/bin/rake +4 -0
  65. data/test/dummy/config.ru +4 -0
  66. data/test/dummy/config/application.rb +28 -0
  67. data/test/dummy/config/boot.rb +5 -0
  68. data/test/dummy/config/environment.rb +5 -0
  69. data/test/dummy/config/environments/development.rb +29 -0
  70. data/test/dummy/config/environments/production.rb +80 -0
  71. data/test/dummy/config/environments/test.rb +39 -0
  72. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  73. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  74. data/test/dummy/config/initializers/inflections.rb +16 -0
  75. data/test/dummy/config/initializers/mime_types.rb +5 -0
  76. data/test/dummy/config/initializers/secret_token.rb +12 -0
  77. data/test/dummy/config/initializers/session_store.rb +3 -0
  78. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  79. data/test/dummy/config/locales/en.yml +23 -0
  80. data/test/dummy/config/routes.rb +4 -0
  81. data/test/dummy/public/404.html +58 -0
  82. data/test/dummy/public/422.html +58 -0
  83. data/test/dummy/public/500.html +57 -0
  84. data/test/dummy/public/favicon.ico +0 -0
  85. data/test/helpers/swagger_engine/swagger_helper_test.rb +6 -0
  86. data/test/integration/navigation_test.rb +9 -0
  87. data/test/swagger_engine_test.rb +7 -0
  88. data/test/test_helper.rb +15 -0
  89. metadata +167 -0
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = '33a09a023debcb50d10484ea65ea69d7ae89ac228cdc374b7e694e7b07b4d12377c872c9041bbbed4e3fbab2d3ae839e4628aae7c2d27b746b19468e4620ac4a'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount SwaggerEngine::Engine => "/swagger_engine"
4
+ end
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/404.html -->
52
+ <div class="dialog">
53
+ <h1>The page you were looking for doesn't exist.</h1>
54
+ <p>You may have mistyped the address or the page may have moved.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,58 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/422.html -->
52
+ <div class="dialog">
53
+ <h1>The change you wanted was rejected.</h1>
54
+ <p>Maybe you tried to change something you didn't have access to.</p>
55
+ </div>
56
+ <p>If you are the application owner check the logs for more information.</p>
57
+ </body>
58
+ </html>
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style>
6
+ body {
7
+ background-color: #EFEFEF;
8
+ color: #2E2F30;
9
+ text-align: center;
10
+ font-family: arial, sans-serif;
11
+ }
12
+
13
+ div.dialog {
14
+ width: 25em;
15
+ margin: 4em auto 0 auto;
16
+ border: 1px solid #CCC;
17
+ border-right-color: #999;
18
+ border-left-color: #999;
19
+ border-bottom-color: #BBB;
20
+ border-top: #B00100 solid 4px;
21
+ border-top-left-radius: 9px;
22
+ border-top-right-radius: 9px;
23
+ background-color: white;
24
+ padding: 7px 4em 0 4em;
25
+ }
26
+
27
+ h1 {
28
+ font-size: 100%;
29
+ color: #730E15;
30
+ line-height: 1.5em;
31
+ }
32
+
33
+ body > p {
34
+ width: 33em;
35
+ margin: 0 auto 1em;
36
+ padding: 1em 0;
37
+ background-color: #F7F7F7;
38
+ border: 1px solid #CCC;
39
+ border-right-color: #999;
40
+ border-bottom-color: #999;
41
+ border-bottom-left-radius: 4px;
42
+ border-bottom-right-radius: 4px;
43
+ border-top-color: #DADADA;
44
+ color: #666;
45
+ box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
46
+ }
47
+ </style>
48
+ </head>
49
+
50
+ <body>
51
+ <!-- This file lives in public/500.html -->
52
+ <div class="dialog">
53
+ <h1>We're sorry, but something went wrong.</h1>
54
+ </div>
55
+ <p>If you are the application owner check the logs for more information.</p>
56
+ </body>
57
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ require 'test_helper'
2
+
3
+ module SwaggerEngine
4
+ class SwaggerHelperTest < ActionView::TestCase
5
+ end
6
+ end
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class SwaggerEngineTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, SwaggerEngine
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,167 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: swagger_engine
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - batdevis
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-12 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Api docs inside your rails project.
14
+ email:
15
+ - batdevis@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - MIT-LICENSE
21
+ - Rakefile
22
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.eot
23
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.svg
24
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.ttf
25
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.woff
26
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-700.woff2
27
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.eot
28
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.svg
29
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.ttf
30
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.woff
31
+ - app/assets/fonts/swagger_engine/droid-sans-v6-latin-regular.woff2
32
+ - app/assets/images/swagger_engine/explorer_icons.png
33
+ - app/assets/images/swagger_engine/favicon-16x16.png
34
+ - app/assets/images/swagger_engine/favicon-32x32.png
35
+ - app/assets/images/swagger_engine/favicon.ico
36
+ - app/assets/images/swagger_engine/logo_small.png
37
+ - app/assets/images/swagger_engine/pet_store_api.png
38
+ - app/assets/images/swagger_engine/throbber.gif
39
+ - app/assets/images/swagger_engine/wordnik_api.png
40
+ - app/assets/javascripts/swagger_engine/application.js
41
+ - app/assets/javascripts/swagger_engine/lib/backbone-min.js
42
+ - app/assets/javascripts/swagger_engine/lib/handlebars-2.0.0.js
43
+ - app/assets/javascripts/swagger_engine/lib/highlight.7.3.pack.js
44
+ - app/assets/javascripts/swagger_engine/lib/jquery-1.8.0.min.js
45
+ - app/assets/javascripts/swagger_engine/lib/jquery.ba-bbq.min.js
46
+ - app/assets/javascripts/swagger_engine/lib/jquery.slideto.min.js
47
+ - app/assets/javascripts/swagger_engine/lib/jquery.wiggle.min.js
48
+ - app/assets/javascripts/swagger_engine/lib/marked.js
49
+ - app/assets/javascripts/swagger_engine/lib/swagger-oauth.js
50
+ - app/assets/javascripts/swagger_engine/lib/underscore-min.js
51
+ - app/assets/javascripts/swagger_engine/lib/underscore-min.map
52
+ - app/assets/javascripts/swagger_engine/swagger-ui.js
53
+ - app/assets/javascripts/swagger_engine/swagger-ui.min.js
54
+ - app/assets/javascripts/swagger_engine/swagger.json
55
+ - app/assets/stylesheets/swagger_engine/application.scss
56
+ - app/assets/stylesheets/swagger_engine/print.scss
57
+ - app/assets/stylesheets/swagger_engine/reset.scss
58
+ - app/assets/stylesheets/swagger_engine/screen.scss
59
+ - app/assets/stylesheets/swagger_engine/typography.scss
60
+ - app/controllers/swagger_engine/application_controller.rb
61
+ - app/controllers/swagger_engine/swagger_controller.rb
62
+ - app/helpers/swagger_engine/application_helper.rb
63
+ - app/helpers/swagger_engine/swagger_helper.rb
64
+ - app/views/layouts/swagger_engine/application.html.erb
65
+ - app/views/swagger_engine/swagger/index.html.erb
66
+ - app/views/swagger_engine/swagger/o2c.html
67
+ - config/routes.rb
68
+ - lib/swagger_engine.rb
69
+ - lib/swagger_engine/engine.rb
70
+ - lib/swagger_engine/version.rb
71
+ - lib/tasks/swagger_engine_tasks.rake
72
+ - test/controllers/swagger_engine/swagger_controller_test.rb
73
+ - test/dummy/README.rdoc
74
+ - test/dummy/Rakefile
75
+ - test/dummy/app/assets/javascripts/application.js
76
+ - test/dummy/app/assets/stylesheets/application.css
77
+ - test/dummy/app/controllers/application_controller.rb
78
+ - test/dummy/app/helpers/application_helper.rb
79
+ - test/dummy/app/views/layouts/application.html.erb
80
+ - test/dummy/bin/bundle
81
+ - test/dummy/bin/rails
82
+ - test/dummy/bin/rake
83
+ - test/dummy/config.ru
84
+ - test/dummy/config/application.rb
85
+ - test/dummy/config/boot.rb
86
+ - test/dummy/config/environment.rb
87
+ - test/dummy/config/environments/development.rb
88
+ - test/dummy/config/environments/production.rb
89
+ - test/dummy/config/environments/test.rb
90
+ - test/dummy/config/initializers/backtrace_silencers.rb
91
+ - test/dummy/config/initializers/filter_parameter_logging.rb
92
+ - test/dummy/config/initializers/inflections.rb
93
+ - test/dummy/config/initializers/mime_types.rb
94
+ - test/dummy/config/initializers/secret_token.rb
95
+ - test/dummy/config/initializers/session_store.rb
96
+ - test/dummy/config/initializers/wrap_parameters.rb
97
+ - test/dummy/config/locales/en.yml
98
+ - test/dummy/config/routes.rb
99
+ - test/dummy/public/404.html
100
+ - test/dummy/public/422.html
101
+ - test/dummy/public/500.html
102
+ - test/dummy/public/favicon.ico
103
+ - test/helpers/swagger_engine/swagger_helper_test.rb
104
+ - test/integration/navigation_test.rb
105
+ - test/swagger_engine_test.rb
106
+ - test/test_helper.rb
107
+ homepage: https://github.com/batdevis/swagger_engine
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 2.4.5
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: Mount swagger-ui as rails engine.
131
+ test_files:
132
+ - test/swagger_engine_test.rb
133
+ - test/helpers/swagger_engine/swagger_helper_test.rb
134
+ - test/test_helper.rb
135
+ - test/dummy/public/favicon.ico
136
+ - test/dummy/public/422.html
137
+ - test/dummy/public/500.html
138
+ - test/dummy/public/404.html
139
+ - test/dummy/README.rdoc
140
+ - test/dummy/bin/rails
141
+ - test/dummy/bin/rake
142
+ - test/dummy/bin/bundle
143
+ - test/dummy/app/views/layouts/application.html.erb
144
+ - test/dummy/app/helpers/application_helper.rb
145
+ - test/dummy/app/assets/javascripts/application.js
146
+ - test/dummy/app/assets/stylesheets/application.css
147
+ - test/dummy/app/controllers/application_controller.rb
148
+ - test/dummy/Rakefile
149
+ - test/dummy/config.ru
150
+ - test/dummy/config/boot.rb
151
+ - test/dummy/config/routes.rb
152
+ - test/dummy/config/environment.rb
153
+ - test/dummy/config/locales/en.yml
154
+ - test/dummy/config/initializers/inflections.rb
155
+ - test/dummy/config/initializers/backtrace_silencers.rb
156
+ - test/dummy/config/initializers/secret_token.rb
157
+ - test/dummy/config/initializers/session_store.rb
158
+ - test/dummy/config/initializers/wrap_parameters.rb
159
+ - test/dummy/config/initializers/filter_parameter_logging.rb
160
+ - test/dummy/config/initializers/mime_types.rb
161
+ - test/dummy/config/application.rb
162
+ - test/dummy/config/environments/production.rb
163
+ - test/dummy/config/environments/test.rb
164
+ - test/dummy/config/environments/development.rb
165
+ - test/controllers/swagger_engine/swagger_controller_test.rb
166
+ - test/integration/navigation_test.rb
167
+ has_rdoc: