rswag-2.1 2.9.1.ruby21

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2b6e489db32d3e67d40536ba29fab38f8bc1ba25d2d69a3f8d9251bafd7016a9
4
+ data.tar.gz: 6dc5ac42f39f592b35bcb4cf498bf6f3ed4e486a8ced93be3432e93a97b40db3
5
+ SHA512:
6
+ metadata.gz: 3017560d429f64ba4be231b21dbb4b10b5dff757c079dabe6189ebb5b18f93d855c27576292fbf8654e52965b3ec703980cfc6679f201977d0cfb095adcb2494
7
+ data.tar.gz: 184e2a62077643900b5f450d0e3f1e1acbc7234316b32c1fb85d8cf9d31db7f368d87c287bcd4f0da84dcac5fb3e658d8d141372270bb6f1e9b3d375c34469d6
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2015 domaindrivendev
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,10 @@
1
+ Description:
2
+ Adds a Swagger to your Rails API
3
+
4
+ Example:
5
+ rails generate rswag:install
6
+
7
+ This will create:
8
+ spec/swagger_helper.rb
9
+ config/initializers/rswag_api.rb
10
+ config/initializers/rswag_ui.rb
@@ -0,0 +1,12 @@
1
+ require 'rails/generators'
2
+
3
+ module Rswag
4
+ class InstallGenerator < Rails::Generators::Base
5
+
6
+ def install_components
7
+ generate 'rswag:specs:install'
8
+ generate 'rswag:api:install'
9
+ generate 'rswag:ui:install'
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,4 @@
1
+ module Rswag
2
+ class Railtie < ::Rails::Railtie
3
+ end
4
+ end
data/lib/rswag.rb ADDED
@@ -0,0 +1,6 @@
1
+ require 'rswag/specs'
2
+ require 'rswag/api'
3
+ require 'rswag/ui'
4
+
5
+ module Rswag
6
+ end
metadata ADDED
@@ -0,0 +1,94 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rswag-2.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.9.1.ruby21
5
+ platform: ruby
6
+ authors:
7
+ - Richie Morris
8
+ - Greg Myers
9
+ - Jay Danielian
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2026-06-07 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rswag-specs
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - '='
20
+ - !ruby/object:Gem::Version
21
+ version: 2.9.1.ruby21
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - '='
27
+ - !ruby/object:Gem::Version
28
+ version: 2.9.1.ruby21
29
+ - !ruby/object:Gem::Dependency
30
+ name: rswag-api
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - '='
34
+ - !ruby/object:Gem::Version
35
+ version: 2.9.1.ruby21
36
+ type: :runtime
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - '='
41
+ - !ruby/object:Gem::Version
42
+ version: 2.9.1.ruby21
43
+ - !ruby/object:Gem::Dependency
44
+ name: rswag-ui
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - '='
48
+ - !ruby/object:Gem::Version
49
+ version: 2.9.1.ruby21
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - '='
55
+ - !ruby/object:Gem::Version
56
+ version: 2.9.1.ruby21
57
+ description: 'Generate beautiful API documentation, including a UI to explore and
58
+ test operations, directly from your rspec integration tests. OpenAPI 2 and 3 supported.
59
+ More about the OpenAPI initiative here: http://spec.openapis.org/'
60
+ email:
61
+ - domaindrivendev@gmail.com
62
+ executables: []
63
+ extensions: []
64
+ extra_rdoc_files: []
65
+ files:
66
+ - MIT-LICENSE
67
+ - lib/generators/rswag/install/USAGE
68
+ - lib/generators/rswag/install/install_generator.rb
69
+ - lib/rswag.rb
70
+ - lib/rswag/railtie.rb
71
+ homepage: https://github.com/rswag/rswag
72
+ licenses:
73
+ - MIT
74
+ metadata: {}
75
+ post_install_message:
76
+ rdoc_options: []
77
+ require_paths:
78
+ - lib
79
+ required_ruby_version: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">"
87
+ - !ruby/object:Gem::Version
88
+ version: 1.3.1
89
+ requirements: []
90
+ rubygems_version: 3.3.27
91
+ signing_key:
92
+ specification_version: 4
93
+ summary: OpenAPI (formerly named Swagger) tooling for Rails APIs
94
+ test_files: []