injixo/time_frame

View on GitHub
time_frame.gemspec

Summary

Maintainability
Test Coverage
# coding: utf-8
require 'English'

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

require 'time_frame/version'

Gem::Specification.new do |spec|
  spec.name          = 'time_frame'
  spec.version       = TimeFrame::VERSION
  spec.authors       = ['Patrick Derichs', 'Bernhard Stoecker', 'Jan Zernisch']
  spec.email         = [
    'patrick.derichs@invision.de',
    'bernhard.stoecker@invision.de',
    'jan.zernisch@invision.de'
  ]
  spec.required_ruby_version = '>= 2.2'
  spec.description   = %q(TimeFrame)
  spec.summary       = %q(Ruby gem that offers support for time frames)
  spec.homepage      = 'https://github.com/injixo/time_frame'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_development_dependency 'rake', '~> 12.3'
  spec.add_development_dependency 'rspec', '~> 3.7'
  spec.add_development_dependency 'simplecov', '~> 0.15'
  spec.add_development_dependency 'rubocop', '0.52.1'
  spec.add_development_dependency 'activesupport', '~> 5.1'
end