Sha256: 9844a7491df516d8980efb4589ff63028c0792469b4d68cd68251a8f1fbf2b3a

Contents?: true

Size: 1.24 KB

Versions: 9

Compression:

Stored size: 1.24 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "junoser"
  spec.version       = Junoser::VERSION
  spec.authors       = ["Shintaro Kojima"]
  spec.email         = ["goodies@codeout.net"]

  spec.summary       = %q{PEG parser for JUNOS configuration.}
  spec.description   = %q{PEG parser to vefiry and translate into different formats for JUNOS configuration.}
  spec.homepage      = "https://github.com/codeout/junoser"

  # Specify which files should be added to the gem when it is released.
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_dependency "parslet"

  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "nokogiri"
  spec.add_development_dependency "test-unit"
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
junoser-0.3.12 junoser.gemspec
junoser-0.3.11 junoser.gemspec
junoser-0.3.10 junoser.gemspec
junoser-0.3.9 junoser.gemspec
junoser-0.3.8 junoser.gemspec
junoser-0.3.7 junoser.gemspec
junoser-0.3.6 junoser.gemspec
junoser-0.3.5 junoser.gemspec
junoser-0.3.4 junoser.gemspec