Sha256: 6d8cab2069df440c9f7ddbdd784850e0ecd103ce68d1ce5d52de4a5ac1cd116b

Contents?: true

Size: 1.31 KB

Versions: 2

Compression:

Stored size: 1.31 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "cannonbol"
  spec.version       = Cannonbol::VERSION
  spec.authors       = ["catmando"]
  spec.email         = ["mitch@catprint.com"]

  if spec.respond_to?(:metadata)
  end

  spec.summary       = %q{Cannonbol is a ruby dsl for patten matching based on SNOBOL4 and SPITBOL}
  spec.description   = %q{
Makes complex patterns easier to read and write!
Combine regexes, plain strings and powerful new primitive match functions!
Makes capturing match results easy!
Allows recursive patterns!
Complete SNOBOL4 + SPITBOL extensions!
Based on the well documented, proven SNOBOL4 language!
Simple syntax looks great alongside ruby!
                       }
  spec.homepage      = "https://github.com/catprintlabs/cannonbol"
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.8"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cannonbol-1.1.0 cannonbol.gemspec
cannonbol-1.0.0 cannonbol.gemspec