Sha256: 18d52949f6e4d72eb39a7a289369bea5b512d2aee37e9b42e7cbd6bff48e6f82
Contents?: true
Size: 1.1 KB
Versions: 2
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 '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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
jt_tools-0.0.2 | jt_tools.gemspec |
jt_tools-0.0.1 | jt_tools.gemspec |