Sha256: ac2ec65b71a16a6229452e0810a49a444634496b63af9d8466f089bbb2af6604

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'the_help/version'

Gem::Specification.new do |spec|
  spec.name          = 'the_help'
  spec.version       = TheHelp::VERSION
  spec.authors       = ['John Wilger']
  spec.email         = ['john@johnwilger.com']

  spec.summary       = 'A service layer framework'
  spec.description   = 'A service layer framework'
  spec.homepage      = 'https://github.com/jwilger/the_help'
  spec.license       = 'MIT'

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_development_dependency 'byebug'
  spec.add_development_dependency 'rake', '~> 13.0'
  spec.add_development_dependency 'rspec', '~> 3.0'
  spec.add_development_dependency 'rubocop', '~> 0.50'
  spec.add_development_dependency 'yard'
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
the_help-3.5.0 the_help.gemspec
the_help-3.4.0 the_help.gemspec
the_help-3.3.2 the_help.gemspec
the_help-3.3.1 the_help.gemspec
the_help-3.3.0 the_help.gemspec