Sha256: 22f37fba28021db124c7408a019f3be2ff928eae182738a100d49b46662636e9

Contents?: true

Size: 1.57 KB

Versions: 3

Compression:

Stored size: 1.57 KB

Contents

# 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.0"
  spec.add_development_dependency "rspec", "~> 3.0"
  spec.add_dependency 'activesupport', '~> 5.1.3'
  spec.add_dependency 'thor', '~> 0.20.0'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
myrails-6.0.0 myrails.gemspec
myrails-5.0.0 myrails.gemspec
myrails-4.0.0 myrails.gemspec