Sha256: ca6bfaa95fead09bd0f34eecdc1b4c3a36e9b1d1a671dd599baceb4d5176b73b
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 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 = [ "Cargo.lock", "Cargo.toml", "Gemfile", "MIT-LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "ext/faster_path/extconf.rb", "faster_path.gemspec" ] spec.files += Dir['lib/**/*'] spec.files += Dir['src/**/*'] spec.extensions << "ext/faster_path/extconf.rb" spec.require_paths = ["lib"] spec.add_dependency "bundler", "~> 1.12" spec.add_dependency "rake", "~> 12.0" spec.add_dependency "ffi", "~> 1.9" spec.add_development_dependency "method_source", "~> 0.8.2" spec.add_development_dependency "minitest", "~> 5.10" spec.add_development_dependency "minitest-reporters", "~> 1.1" spec.add_development_dependency "color_pound_spec_reporter", "~> 0.0.5" unless ENV['TRAVIS'] spec.add_development_dependency "stop_watch", "~> 0.1.0" spec.add_development_dependency "gruff", "~> 0.7.0" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
faster_path-0.1.10 | faster_path.gemspec |