Sha256: da73a0657c8ca54a483f0783a0f6129c2d43d80bf5f6437adc32e817445e0fe1
Contents?: true
Size: 1.34 KB
Versions: 2
Compression:
Stored size: 1.34 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'kilza/version' Gem::Specification.new do |spec| spec.name = "kilza" spec.version = Kilza::VERSION spec.authors = ["Toshiro Sugii"] spec.email = ["rtoshiro@printwtf.com"] spec.summary = %q{Parses JSON objects and generates objects in other languages} spec.description = %q{Parses JSON objects and generates objects in other languages} spec.homepage = "https://github.com/Jaspion/Kilza" spec.license = "MIT" # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or # delete this section to allow pushing this gem to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "bin" spec.executables = ["kilza"] spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest" spec.add_dependency "json" spec.add_dependency "erubis" spec.add_dependency "highline" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
kilza-1.0.1 | kilza.gemspec |
kilza-1.0.0 | kilza.gemspec |