Sha256: f54a5d3da4d7d5f48cc9eb341ddbc9d0bf2ce7f64171bff5c3e7c335d50990db
Contents?: true
Size: 1.51 KB
Versions: 2
Compression:
Stored size: 1.51 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'code_kindly/utils/version' Gem::Specification.new do |spec| spec.name = 'codekindly-utils' spec.version = CodeKindly::Utils::VERSION spec.authors = ['Jeremy Weathers'] spec.email = ['jeremy@codekindly.com'] spec.summary = 'These are small utilities that I like to have around in my projects.' spec.description = "There is nothing terribly unique or interesting here and there are almost certainly better ways to do things than this. These are little snippets I've found useful in the past and continue to use through inertia." spec.homepage = 'https://github.com/jlw/codekindly-utils' 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.required_ruby_version = '>= 2.2' spec.add_dependency 'highline' spec.add_dependency 'map' spec.add_development_dependency 'activerecord' spec.add_development_dependency 'appraisal' spec.add_development_dependency 'bundler', '~> 1.16' spec.add_development_dependency 'pry-byebug' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '~> 3.0' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'sqlite3' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
codekindly-utils-0.0.7 | codekindly-utils.gemspec |
codekindly-utils-0.0.6 | codekindly-utils.gemspec |