Sha256: 939455eab9357d8c4d02eab414cc2972d9d8280f5d6ccfd0089bc67fabeedd5c

Contents?: true

Size: 1.1 KB

Versions: 8

Compression:

Stored size: 1.1 KB

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "jt_tools/version"

Gem::Specification.new do |spec|
  spec.name = "jt_tools"
  spec.version = JtTools::VERSION
  spec.authors = ["Paul Keen"]
  spec.email = ["pftg@users.noreply.github.com"]

  spec.summary = "Setup development scripts to manage code base effectively"
  spec.description = "Helpful scripts to run linters locally and on CI"
  spec.homepage = "https://jtway.co"
  spec.license = "MIT"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/jetthoughts/jt-tools/"
  spec.metadata["changelog_uri"] = "https://github.com/jetthoughts/jt-tools/"

  spec.add_dependency "railties", ">= 4.2"

  # 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{^(test|spec|features)/}) }
  end

  spec.require_paths = ["lib"]
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jt_tools-0.0.14 jt_tools.gemspec
jt_tools-0.0.13 jt_tools.gemspec
jt_tools-0.0.12 jt_tools.gemspec
jt_tools-0.0.11 jt_tools.gemspec
jt_tools-0.0.10 jt_tools.gemspec
jt_tools-0.0.9 jt_tools.gemspec
jt_tools-0.0.8 jt_tools.gemspec
jt_tools-0.0.7 jt_tools.gemspec