Sha256: 8a8bcab5f2dd832e5871ae8135d45e2a57e3471f004838fcd3a8ff17b8a559b4
Contents?: true
Size: 1.66 KB
Versions: 3
Compression:
Stored size: 1.66 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 = 'Reimplementation of Pathname for better performance' spec.description = '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/Rakefile', 'faster_path.gemspec', 'lib/faster_path.rb', 'lib/faster_path/version.rb', 'lib/faster_path/thermite_initialize.rb', 'lib/faster_path/optional/monkeypatches.rb', 'lib/faster_path/optional/refinements.rb' ] spec.files += Dir['src/**/*'] spec.extensions = ['ext/Rakefile'] spec.require_paths = ['lib'] spec.add_dependency 'bundler', '~> 1.12' spec.add_dependency 'rake', '~> 12.0' spec.add_dependency 'thermite', '0.13.0' spec.add_development_dependency 'read_source', '~> 0.2.6' 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.9' spec.add_development_dependency 'rubocop', '0.53' spec.add_development_dependency 'stop_watch', '~> 1.0' if !ENV['CI'] && ENV['GRAPH'] spec.add_development_dependency 'gruff', '~> 0.7.0' end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
faster_path-0.3.9 | faster_path.gemspec |
faster_path-0.3.8 | faster_path.gemspec |
faster_path-0.3.7 | faster_path.gemspec |