Sha256: 0afce16f5690234a968a5e0b9bc2787be29f7fe7b66ee57473fe77d22a148d51
Contents?: true
Size: 1.05 KB
Versions: 3
Compression:
Stored size: 1.05 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 = ['ext/faster_support/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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
faster_support-0.1.2 | faster_support.gemspec |
faster_support-0.1.1 | faster_support.gemspec |
faster_support-0.1.0 | faster_support.gemspec |