Finishes some renaming elements that were missed previously

Modifes the travis.yml in trying to setup travis CI build
This commit is contained in:
Jay Danielian
2019-08-01 14:05:57 -04:00
parent 6d285d2c4f
commit 157175c90f
9 changed files with 29 additions and 26 deletions

View File

@@ -0,0 +1,18 @@
$:.push File.expand_path("../lib", __FILE__)
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "open_api-rswag-ui"
s.version = ENV['TRAVIS_TAG'] || '0.0.0'
s.authors = ["Richie Morris", "Jay Danielian"]
s.email = ["domaindrivendev@gmail.com"]
s.homepage = "https://github.com/jdanielian/open-api-rswag"
s.summary = "A Rails Engine that includes swagger-ui and powers it from configured Swagger endpoints"
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.files = Dir.glob("{lib,node_modules}/**/*") + ["MIT-LICENSE", "Rakefile" ]
s.add_dependency 'actionpack', '>=3.1', '< 6.0'
s.add_dependency 'railties', '>= 3.1', '< 6.0'
end