Sha256: 7b8a2572c7e4ee8ffb73544638ea0ca9eb3d01fe7311cce9544e234a9ad76115
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 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|assets|benches)/}) } 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 "method_source", "~> 0.8.2" spec.add_development_dependency "rake", "~> 11.1" spec.add_development_dependency "minitest", "~> 5.8" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
faster_path-0.1.1 | faster_path.gemspec |
faster_path-0.1.0 | faster_path.gemspec |
faster_path-0.0.9 | faster_path.gemspec |