-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from yukihirop/before_release_v0.2.0
Before release v0.2.0
- Loading branch information
Showing
8 changed files
with
54 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Let's intuitively write API documentation with Swagger Editor in your Rails Project! 😊 | ||
|
||
Configureless and no DSL. 👍 But you can also configure. | ||
|
||
Loosely coupled to your Rails project. 👍 | ||
|
||
So If it doesn't, you can always stop easily. 😢 | ||
|
||
Generate api docment(OpenAPI) side only from `Rails` routing. | ||
|
||
Provide rake tasks to management API Docment (OpenAPI) 🎉 | ||
|
||
|
||
$ bundle exec rake routes:oas:docs # generate | ||
$ bundle exec rake routes:oas:ui # view | ||
$ bundle exec rake routes:oas:editor # edit | ||
$ bundle exec rake routes:oas:monitor # monitor | ||
$ bundle exec rake routes:oas:dist # distribute | ||
$ bundle exec rake routes:oas:clean # clean | ||
$ bundle exec rake routes:oas:analyze # analyze | ||
$ bundle exec rake routes:oas:deploy # deploy | ||
|
||
Happy Coding ❗️ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module R2OAS | ||
VERSION = '0.1.3' | ||
VERSION = '0.2.0' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,16 @@ Gem::Specification.new do |spec| | |
spec.email = ['[email protected]'] | ||
|
||
spec.summary = 'Provide rake tasks to management API Docment (OpenAPI)' | ||
spec.description = "Let's intuitively write API documentation with Swagger Editor in your Rails Project! 😊 Provide rake tasks to management API Docment (OpenAPI) 🎉" | ||
spec.description = %Q{#{IO.read('GEMSPEC.md')}} | ||
|
||
spec.homepage = 'https://yukihirop.github.io/r2-oas' | ||
spec.homepage = 'https://github.com/yukihirop/r2-oas' | ||
spec.license = 'MIT' | ||
spec.metadata = { | ||
"bug_tracker_uri" => "https://github.com/yukihirop/r2-oas/issues", | ||
"changelog_uri" => "https://github.com/yukihirop/r2-oas/blob/v#{spec.version}/CHANGELOG.md", | ||
"documentation_uri" => "https://yukihirop.github.io/r2-oas", | ||
"source_code_uri" => "https://github.com/yukihirop/r2-oas/tree/v#{spec.version}" | ||
} | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
# The `git ls-files -z` loads the files in the RubyGem that have been added into git. | ||
|