main
1
2lib = File.expand_path("../lib", __FILE__)
3$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4require "mpeg/version"
5
6Gem::Specification.new do |spec|
7 spec.name = "mpeg"
8 spec.version = Mpeg::VERSION
9 spec.authors = ["mokha"]
10 spec.email = ["mo@mokhan.ca"]
11
12 spec.summary = %q{mo's parsing expression grammar}
13 spec.description = %q{mo's parsing expression grammar}
14 spec.homepage = "https://www.mokhan.ca/"
15 spec.license = "MIT"
16
17 # Specify which files should be added to the gem when it is released.
18 # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19 spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
20 `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21 end
22 spec.bindir = "exe"
23 spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24 spec.require_paths = ["lib"]
25
26 spec.add_development_dependency "bundler", "~> 2.0"
27 spec.add_development_dependency "byebug", "~> 11.0"
28 spec.add_development_dependency "rake", "~> 13.0"
29 spec.add_development_dependency "rspec", "~> 3.0"
30end