Sha256: bbc0dc609997a7e965b984a8ba24f81e976692592ded65560233ccaef39cb043
Contents?: true
Size: 1002 Bytes
Versions: 1
Compression:
Stored size: 1002 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vindetta/version' Gem::Specification.new do |spec| spec.name = "vindetta" spec.version = Vindetta::VERSION spec.authors = ["Kyle Decot"] spec.email = ["kyle@joinroot.com"] spec.summary = "Ruby gem for generating VINs" spec.description = "Ruby gem for generating VINs" spec.homepage = "https://github.com/kyledecot/vindetta" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject do |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_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "byebug", "~> 9.0" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vindetta-0.2.0 | vindetta.gemspec |