Sha256: 5564266c03461d81ff641d7ae8dda8d1b5ecde9b16bf9d127f187e81863db881
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
# frozen_string_literal: true # coding: utf-8 lib = File.expand_path('../lib', __FILE__) $:.unshift(lib) unless $:.include?(lib) require 'faster_support/version' Gem::Specification.new do |spec| spec.name = 'faster_support' spec.version = FasterSupport::VERSION spec.authors = ['J. Morgan Lieberthal'] spec.email = ['j.morgan.lieberthal@gmail.com'] spec.summary = 'Faster Implementations of ActiveSupport Methods' spec.homepage = 'https://github.com/baberthal/faster_support' spec.license = 'MIT' spec.files = %x(git ls-files -z).split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.extensions = Dir['ext/**/*/extconf.rb'] spec.add_development_dependency 'bundler', '~> 1.13' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rake-compiler' spec.add_development_dependency 'rspec', '~> 3.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
faster_support-0.1.3 | faster_support.gemspec |