Sha256: 1ead81e58fc94d94c08256f92c9c3368641b9a2773bb9604074b52f6e06d9586
Contents?: true
Size: 885 Bytes
Versions: 2
Compression:
Stored size: 885 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'array_transitions/version' Gem::Specification.new do |spec| spec.name = "array-transitions" spec.version = ArrayTransitions::VERSION spec.authors = ["Kevin Bongart"] spec.email = ["contact@kevinbongart.net"] spec.summary = "List transitions found in an array" spec.homepage = "https://github.com/KevinBongart/array-transitions" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 3.0" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
array-transitions-1.1 | array-transitions.gemspec |
array-transitions-1.0 | array-transitions.gemspec |