Sha256: aa1c1e174c679590354e564e69e1b647eee52eb82db478c519d9b7f6fce3e265

Contents?: true

Size: 1.44 KB

Versions: 6

Compression:

Stored size: 1.44 KB

Contents

# frozen_string_literal: true

require_relative "lib/rails_app/version"

Gem::Specification.new do |spec|
  spec.name = "rails_app"
  spec.version = RailsApp::VERSION
  spec.authors = ["Chuck Smith"]
  spec.email = ["chuck@eclecticsaddlebag.com"]

  spec.summary = "Bootstrap a new customized Rails application with a better development experience."
  spec.description = "Bootstrap a new customized Rails application with a better development experience."
  spec.homepage = "https://github.com/eclectic-coding/rails_app"
  spec.license = "MIT"
  spec.required_ruby_version = ">= 3.1.4"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/eclectic-coding/rails_app"
  spec.metadata["changelog_uri"] = "https://github.com/eclectic-coding/rails_app/blob/main/CHANGELOG.md"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files = Dir.chdir(__dir__) do
    `git ls-files -z`.split("\x0").reject do |f|
      (File.expand_path(f) == __FILE__) ||
        f.start_with?(*%w[bin/ test/ spec/ features/ .git appveyor Gemfile])
    end
  end
  spec.bindir = "bin"
  spec.executables = ["rails_app"]
  spec.require_paths = ["lib"]

  spec.add_dependency "bootsnap", "~> 1.18", ">= 1.18.3" # used by rails new
  spec.add_dependency "thor", "~> 1.3", ">= 1.3.1"
  spec.add_dependency "tty-prompt", "~> 0.23.1"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rails_app-0.7.0 rails_app.gemspec
rails_app-0.6.0 rails_app.gemspec
rails_app-0.5.0 rails_app.gemspec
rails_app-0.4.0 rails_app.gemspec
rails_app-0.3.0 rails_app.gemspec
rails_app-0.2.0 rails_app.gemspec