Sha256: 6bca730486d92d5a62a73dbe087ab3946cab36215e7aae57f52d2be487fa1e73

Contents?: true

Size: 1.01 KB

Versions: 1

Compression:

Stored size: 1.01 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.authors       = ['Prodis a.k.a. Fernando Hamasaki de Amorim']
  spec.email         = ['prodis@gmail.com']
  spec.description   = 'If string, integer, symbol and nil values wanna be a boolean value, they can.'
  spec.summary       = spec.description
  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 = Gem::Requirement.new('>= 1.9.3')

  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec', '~> 3.0'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
wannabe_bool-0.0.1 wannabe_bool.gemspec