r2-oas 0.3.3 → 0.3.4

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: 70122a2e55b9332c9e8d8c1bc50254b274a782451d1c7d1beac5fc8f04e152b6
4
- data.tar.gz: 8f3f42e1fd68954b4a2d0f9e4fa6b8cd8d4cc5b655f94d93022813023a9a9f45
3
+ metadata.gz: 74e2483dd3c1980c894757819275ef05b794820d5aebe22b08bf737df2f31c63
4
+ data.tar.gz: 52b4b0abf260d18852cdaad9ea1d7b70aa76cc63e15a7793e528b8769e715b94
5
5
  SHA512:
6
- metadata.gz: 0f9c9ed6a2a384a9bc2246946265e5e57f4f0f33c29c2c42c16cf8322bc7499d06aaf8f2a70696093e0a897d5cb0599622af86d25709285479169962d26775e2
7
- data.tar.gz: 26c3ae7cc8f45b0acd46bb2d8662379d2cad4fa499d25d7f358435b63d706ed73b0fa6b52fabd82aca9f59d42f10fbf4014cb240e6ec678a278a6407cc521536
6
+ metadata.gz: 23f55926a604e6f49424294867e183a4cb4d1dc0a5b6a0e3fa9751eb56bc667477868a56436a08a3c3855939f3d9b8959c56ca7d5496086be6ffe8b2f45a06bc
7
+ data.tar.gz: 799eae1d0bf672a6615cb8917b4aa633b92cb01df314adbfd00cab520176dff47b97be49316430e1b2c51bf0083f114331f6bcb48c5cab14837985b910846ace
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## v0.3.4
4
+
5
+ 2020-07-11
6
+
7
+ - [`Other`] Modify gemspec `files` fields ([#147](https://github.com/yukihirop/r2-oas/pull/147))
8
+ - Add `r2-oas.gemspec` into gemspec `files`
9
+
3
10
  ## v0.3.3
4
11
 
5
12
  2020-07-11
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module R2OAS
4
- VERSION = '0.3.3'
4
+ VERSION = '0.3.4'
5
5
  end
@@ -0,0 +1,48 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path('lib', __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require 'r2-oas/version'
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = 'r2-oas'
9
+ spec.version = R2OAS::VERSION
10
+ spec.authors = ['yukihirop']
11
+ spec.email = ['te108186@gmail.com']
12
+
13
+ spec.summary = 'Provide rake tasks to management API Docment (OpenAPI)'
14
+ spec.description = %Q{== Let's intuitively write API documentation with Swagger Editor in your Rails Project! 😊\n#{IO.read('GEMSPEC.md')}}
15
+
16
+ spec.homepage = 'https://github.com/yukihirop/r2-oas'
17
+ spec.license = 'MIT'
18
+ spec.metadata = {
19
+ "bug_tracker_uri" => "https://github.com/yukihirop/r2-oas/issues",
20
+ "changelog_uri" => "https://github.com/yukihirop/r2-oas/blob/v#{spec.version}/CHANGELOG.md",
21
+ "documentation_uri" => "https://yukihirop.github.io/r2-oas",
22
+ "source_code_uri" => "https://github.com/yukihirop/r2-oas/tree/v#{spec.version}"
23
+ }
24
+
25
+ # Specify which files should be added to the gem when it is released.
26
+ spec.files = Dir["CHANGELOG.md", "GEMSPEC.md", "README.md", "README.ja.md", "LICENSE.txt", "lib/**/*", "r2-oas.gemspec"]
27
+ spec.bindir = 'exe'
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ['lib']
30
+ spec.required_ruby_version = Gem::Requirement.new('>= 2.3.3p222')
31
+
32
+ spec.add_runtime_dependency 'docker-api', '>= 1.34.2'
33
+ spec.add_runtime_dependency 'easy_diff', '>= 1.0.0'
34
+ spec.add_runtime_dependency 'eventmachine', '>= 1.2.0'
35
+ spec.add_runtime_dependency 'key_flatten', '>= 1.0.0'
36
+ spec.add_runtime_dependency 'paint'
37
+ spec.add_runtime_dependency 'railties', '>= 4.2.5'
38
+ spec.add_runtime_dependency 'terminal-table', '>= 1.6.0'
39
+ spec.add_runtime_dependency 'watir', '>= 6.16.5'
40
+ spec.add_development_dependency 'bundler', '>= 1.17'
41
+ spec.add_development_dependency 'coveralls'
42
+ spec.add_development_dependency 'pry'
43
+ spec.add_development_dependency 'rake', '~> 13.0'
44
+ spec.add_development_dependency 'rspec', '~> 3.0'
45
+ spec.add_development_dependency 'rubocop'
46
+ spec.add_development_dependency 'appraisal'
47
+ spec.add_development_dependency 'activerecord', '>= 4.2.5'
48
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: r2-oas
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - yukihirop
@@ -357,14 +357,15 @@ files:
357
357
  - lib/r2-oas/tool/paths/ls.rb
358
358
  - lib/r2-oas/tool/paths/stats.rb
359
359
  - lib/r2-oas/version.rb
360
+ - r2-oas.gemspec
360
361
  homepage: https://github.com/yukihirop/r2-oas
361
362
  licenses:
362
363
  - MIT
363
364
  metadata:
364
365
  bug_tracker_uri: https://github.com/yukihirop/r2-oas/issues
365
- changelog_uri: https://github.com/yukihirop/r2-oas/blob/v0.3.3/CHANGELOG.md
366
+ changelog_uri: https://github.com/yukihirop/r2-oas/blob/v0.3.4/CHANGELOG.md
366
367
  documentation_uri: https://yukihirop.github.io/r2-oas
367
- source_code_uri: https://github.com/yukihirop/r2-oas/tree/v0.3.3
368
+ source_code_uri: https://github.com/yukihirop/r2-oas/tree/v0.3.4
368
369
  post_install_message:
369
370
  rdoc_options: []
370
371
  require_paths: