Sha256: a0fcd46c44a5d7b4bde859e36b249b1019584b52c4eb2b42a0cef89d1f4a024b

Contents?: true

Size: 1.04 KB

Versions: 2

Compression:

Stored size: 1.04 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'wannabe_bool'
  spec.version       = WannabeBool::VERSION
  spec.author        = 'Prodis a.k.a. Fernando Hamasaki de Amorim'
  spec.email         = 'prodis@gmail.com'
  spec.summary       = 'If string, integer, symbol and nil values wanna be a boolean value, they can with the new #to_b method (and more).'
  spec.description   = spec.summary
  spec.homepage      = 'https://github.com/prodis/wannabe_bool'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  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.platform = Gem::Platform::RUBY
  spec.required_ruby_version = '>= 2.0.0'

  spec.add_development_dependency 'coveralls'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wannabe_bool-0.3.0 wannabe_bool.gemspec
wannabe_bool-0.2.0 wannabe_bool.gemspec