Sha256: d3a64666b045b80d1efd6b6ca4870f4c9cca2677effbccf16854101479d9eaf9
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 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' spec.add_development_dependency 'bump' # 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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
jt_tools-0.0.19 | jt_tools.gemspec |
jt_tools-0.0.18 | jt_tools.gemspec |
jt_tools-0.0.17 | jt_tools.gemspec |
jt_tools-0.0.16 | jt_tools.gemspec |