Sha256: 4e73b2b1e4c58bfbc970fb8e96cd27ce4ff6da7e4508c59e3b7e49464c9d0cfa

Contents?: true

Size: 1.32 KB

Versions: 7

Compression:

Stored size: 1.32 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", "~> 1.9"
  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"
  spec.add_development_dependency "minitest-reporters", "~> 1.1"
  spec.add_development_dependency "color_pound_spec_reporter", "~> 0.0.5"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
faster_path-0.1.8 faster_path.gemspec
faster_path-0.1.7 faster_path.gemspec
faster_path-0.1.6 faster_path.gemspec
faster_path-0.1.5 faster_path.gemspec
faster_path-0.1.4 faster_path.gemspec
faster_path-0.1.3 faster_path.gemspec
faster_path-0.1.2 faster_path.gemspec