Ensure swagger-ui files are included in rswag-ui.gemspec

This commit is contained in:
richie 2016-10-12 12:46:01 -07:00
parent 69202bf212
commit edc7e7c036
5 changed files with 6 additions and 5 deletions

View File

@ -10,6 +10,7 @@ PATH
rswag-specs (1.0.0) rswag-specs (1.0.0)
json-schema (~> 2.2) json-schema (~> 2.2)
rails (>= 3.1, < 5.1) rails (>= 3.1, < 5.1)
rspec-rails (>= 2.14, < 4)
PATH PATH
remote: ./rswag-ui remote: ./rswag-ui

View File

@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = "Open up your API to the phenomenal Swagger ecosystem by exposing Swagger files, that describe your service, as JSON endpoints" s.description = "Open up your API to the phenomenal Swagger ecosystem by exposing Swagger files, that describe your service, as JSON endpoints"
s.license = "MIT" s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile" ] s.files = Dir["{lib}/**/*"] + ["MIT-LICENSE", "Rakefile" ]
s.add_dependency "rails", ">= 3.1", "< 5.1" s.add_dependency "rails", ">= 3.1", "< 5.1"
end end

View File

@ -14,9 +14,9 @@ Gem::Specification.new do |s|
s.description = "Simplify API integration testing with a succinct rspec DSL and generate Swagger files directly from your rspecs" s.description = "Simplify API integration testing with a succinct rspec DSL and generate Swagger files directly from your rspecs"
s.license = "MIT" s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile" ] s.files = Dir["{lib}/**/*"] + ["MIT-LICENSE", "Rakefile" ]
s.add_dependency "rails", ">= 3.1", "< 5.1" s.add_dependency "rails", ">= 3.1", "< 5.1"
s.add_dependency 'json-schema', '~> 2.2' s.add_dependency 'json-schema', '~> 2.2'
s.add_development_dependency 'rspec-rails', '>= 2.14', '< 4' s.add_dependency 'rspec-rails', '>= 2.14', '< 4'
end end

View File

@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = "Expose beautiful API documentation, that's powered by Swagger JSON endpoints, including a UI to explore and test operations" s.description = "Expose beautiful API documentation, that's powered by Swagger JSON endpoints, including a UI to explore and test operations"
s.license = "MIT" s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + ["MIT-LICENSE", "Rakefile" ] s.files = Dir["{app,config,lib,vendor}/**/*"] + ["MIT-LICENSE", "Rakefile" ]
s.add_dependency "rails", ">= 3.1", "< 5.1" s.add_dependency "rails", ">= 3.1", "< 5.1"
end end

View File

@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = "Generate beautiful API documentation, including a UI to explore and test operations, directly from your rspec integration tests" s.description = "Generate beautiful API documentation, including a UI to explore and test operations, directly from your rspec integration tests"
s.license = "MIT" s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*"] + [ "MIT-LICENSE" ] s.files = Dir["{lib}/**/*"] + [ "MIT-LICENSE" ]
s.add_dependency 'rswag-specs', Rswag::VERSION s.add_dependency 'rswag-specs', Rswag::VERSION
s.add_dependency 'rswag-api', Rswag::VERSION s.add_dependency 'rswag-api', Rswag::VERSION