Sha256: 9e200d0d678a43b27f73a48e0a9ee1a44d0582d6235b8682e16f4d455192ca02

Contents?: true

Size: 1.52 KB

Versions: 1

Compression:

Stored size: 1.52 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/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 "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.47"
  unless ENV['CI']
    spec.add_development_dependency "stop_watch", "~> 1.0.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.2.2 faster_path.gemspec