# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'myrails/version' Gem::Specification.new do |spec| spec.name = "myrails" spec.version = Myrails::VERSION spec.authors = ["Vell"] spec.email = ["lovell.mcilwain@gmail.com"] spec.summary = %q{A thor backed gem for generating rails related files based on my style of coding} spec.description = %q{Generates files on demand with boiler plate code. Supports pundit, presenters, installing of bootstrap themes created by bootswatch.com and others.} spec.homepage = "https://github.com/vmcilwain/myrails" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = Dir["{bin,lib}/**/*", "LICENSE.txt", "README.md", 'Rakefile', 'Gemfile', 'myrails.gemspec'] spec.test_files = Dir["spec/**/*"] spec.bindir = "bin" spec.executables = ['myrails'] spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.15" spec.add_development_dependency "rake", "~> 12.3.1" spec.add_development_dependency "rspec", "~> 3.8.0" spec.add_dependency 'activesupport', '~> 5.2.1' spec.add_dependency 'thor', '~> 0.20.0' end