Sha256: 67200b0fb72def409e34348fc87fb9c06b136fc9077b6048c8b530204eb73a89

Contents?: true

Size: 1.15 KB

Versions: 4

Compression:

Stored size: 1.15 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'bindy/version'

Gem::Specification.new do |spec|
  spec.name          = 'bindy'
  spec.version       = Bindy::VERSION
  spec.authors       = ['Gabriel Naiman']
  spec.email         = ['gabynaiman@gmail.com']

  spec.summary       = 'Context binding for functions evaluation'
  spec.description   = 'Context binding for functions evaluation'
  spec.homepage      = 'https://github.com/gabynaiman/bindy'
  spec.license       = 'MIT'

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

  spec.add_dependency 'treetop', '~> 1.6.3'

  spec.add_development_dependency 'bundler', '~> 1.6'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'minitest', '~> 4.7'
  spec.add_development_dependency 'turn', '~> 0.9'
  spec.add_development_dependency 'simplecov'
  spec.add_development_dependency 'pry-nav'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bindy-0.0.4 bindy.gemspec
bindy-0.0.3 bindy.gemspec
bindy-0.0.2 bindy.gemspec
bindy-0.0.1 bindy.gemspec