Sha256: 62a9ab37443b7a02f7b4b124c4c0c2dbea383f1a824063223d5eaa8392326abe

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true

require_relative "lib/solargraph/rails/init/version"

Gem::Specification.new do |spec|
  spec.name          = "solargraph-rails-init"
  spec.version       = Solargraph::Rails::Init::VERSION
  spec.authors       = ["Carl Mercier"]
  spec.email         = ["foss@carlmercier.com"]

  spec.summary       = "A simple script that configures Solargraph to work with Rails."
  spec.description   = "A simple script that configures Solargraph to work with Rails."
  spec.homepage      = "https://github.com/cmer/solargraph-rails-init"
  spec.license       = "MIT"
  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/cmer/solargraph-rails-init"


  # 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(File.expand_path(__dir__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
solargraph-rails-init-0.2.2 solargraph-rails-init.gemspec
solargraph-rails-init-0.2.1 solargraph-rails-init.gemspec
solargraph-rails-init-0.2.0 solargraph-rails-init.gemspec
solargraph-rails-init-0.1.1 solargraph-rails-init.gemspec