oas_rails 1.2.0 → 1.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5b7344f0f77c27f3d15b8ba5030664685973d74faa4ff2d23821967c66d0495b
4
- data.tar.gz: c22ebcb019a8071cd89abf80a6170d45e451b9c2e24645f7f958d498b2b390ed
3
+ metadata.gz: 4c5fa151b7fbb378c089146a161abd8e5c2608fd33708af1204ef1f367887a43
4
+ data.tar.gz: c2911b48d406aa6fac30c441314cfcb6c32449c15b6c46643b8683fadf2d104c
5
5
  SHA512:
6
- metadata.gz: 580e32391f327d90e64bb504976a974971b2acdb6cd93a4a5a18efcb4d9f6395c5371522aa3db2e81d95ca4fa2b3fc24f4e4cd8f46b1e15228d934aae3366a2d
7
- data.tar.gz: 18d129900f968958d2b76e1ede4ec650e91f8a8678fe52a94a1c30ec74904e3c4c6d736c0fd8a83c8dae2eea08736e1de7eefebe40b793530a43f727fb8cb35e
6
+ metadata.gz: ff4c0d2c8c6c801226e50307f46c024d66f53c7d9bc11b6f71717553ed7c4009ba3b48367e930cb09eb6eb3b01b5d16a0c48cf742cf9014616c456c9c4c60ff1
7
+ data.tar.gz: 60eefa488fa9b40e6984a884c9170740bd898358f1b8b0d0d218a5673771e3a316cd62cdf061bc1f147a7638eee54996fe0f136520d44dabe646ca0378a29f46
@@ -0,0 +1,6 @@
1
+ <style>
2
+ rapi-doc::part(btn btn-outline) {
3
+ width: 220px;
4
+ min-width: 170px;
5
+ }
6
+ </style>
@@ -134,11 +134,6 @@
134
134
  <% end %>
135
135
  </rapi-doc>
136
136
 
137
- <style>
138
- rapi-doc::part(btn btn-outline) {
139
- width: 220px;
140
- min-width: 170px;
141
- }
142
- </style>
137
+ <%= render partial: 'rapidoc_style_parts' %>
143
138
  </body>
144
139
  </html>
@@ -1,3 +1,3 @@
1
1
  module OasRails
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oas_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - a-chacon
@@ -55,10 +55,8 @@ files:
55
55
  - app/helpers/oas_rails/application_helper.rb
56
56
  - app/helpers/oas_rails/oas_rails_helper.rb
57
57
  - app/helpers/oas_rails/test_helper.rb
58
- - app/jobs/oas_rails/application_job.rb
59
- - app/mailers/oas_rails/application_mailer.rb
60
- - app/models/oas_rails/application_record.rb
61
58
  - app/views/layouts/oas_rails/application.html.erb
59
+ - app/views/oas_rails/oas_rails/_rapidoc_style_parts.html.erb
62
60
  - app/views/oas_rails/oas_rails/index.html.erb
63
61
  - app/views/oas_rails/test/show.html.erb
64
62
  - config/routes.rb
@@ -1,4 +0,0 @@
1
- module OasRails
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module OasRails
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: "from@example.com"
4
- layout "mailer"
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module OasRails
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end