Sha256: 10a573a3e10add6ef5706c7d1a2909ae45eb8f32eb0facfd953bbbaa7d1f0d49
Contents?: true
Size: 1.1 KB
Versions: 4
Compression:
Stored size: 1.1 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'faster_path/version' Gem::Specification.new do |spec| spec.name = "faster_path" spec.version = FasterPath::VERSION spec.authors = ["Daniel P. Clark"] spec.email = ["6ftdan@gmail.com"] spec.summary = %q{Reimplementation of Pathname for better performance} spec.description = %q{FasterPath is a reimplementation of Pathname for better performance.} spec.homepage = "https://github.com/danielpclark/faster_path" spec.license = "MIT OR Apache-2.0" 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.extensions << "ext/faster_path/extconf.rb" spec.require_paths = ["lib"] spec.add_dependency "ffi" spec.add_development_dependency "bundler", "~> 1.12" spec.add_development_dependency "rake", "~> 11.1" spec.add_development_dependency "minitest", "~> 5.8" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
faster_path-0.0.5 | faster_path.gemspec |
faster_path-0.0.4 | faster_path.gemspec |
faster_path-0.0.3 | faster_path.gemspec |
faster_path-0.0.2 | faster_path.gemspec |