Sha256: 5ef58c88da3690618b99606e7a125f722d4b3c03d7c8b5abf6b744ee9adaaa1e

Contents?: true

Size: 887 Bytes

Versions: 2

Compression:

Stored size: 887 Bytes

Contents

Gem::Specification.new do |s|

  s.name = 'raabro'

  s.version = File.read(
    File.expand_path('../lib/raabro.rb', __FILE__)
  ).match(/ VERSION *= *['"]([^'"]+)/)[1]

  s.platform = Gem::Platform::RUBY
  s.authors = [ 'John Mettraux' ]
  s.email = [ 'jmettraux@gmail.com' ]
  s.homepage = 'http://github.com/jmettraux/raabro'
  #s.rubyforge_project = 'rufus'
  s.license = 'MIT'
  s.summary = 'a very dumb PEG parser library'

  s.description = %{
A very dumb PEG parser library, with a horrible interface.
  }.strip

  #s.files = `git ls-files`.split("\n")
  s.files = Dir[
    'README.{md,txt}',
    'CHANGELOG.{md,txt}', 'CREDITS.{md,txt}', 'LICENSE.{md,txt}',
    'Makefile',
    'lib/**/*.rb', #'spec/**/*.rb', 'test/**/*.rb',
    "#{s.name}.gemspec",
  ]

  #s.add_runtime_dependency 'tzinfo'

  s.add_development_dependency 'rspec', '~> 3.4.0'

  s.require_path = 'lib'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
raabro-1.1.5 raabro.gemspec
raabro-1.1.4 raabro.gemspec