Sha256: efc6389ad2c94a85326e796df7228c1c914caf59df132a0bc84f8709f9466e98
Contents?: true
Size: 1.21 KB
Versions: 15
Compression:
Stored size: 1.21 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'weighable/version' Gem::Specification.new do |spec| spec.name = 'weighable' spec.version = Weighable::VERSION spec.authors = ['Trae Robrock'] spec.email = ['trobrock@gmail.com'] spec.summary = 'Like BigDecimal, but for weight. Includes Rails integration.' spec.description = 'Like BigDecimal, but for weight. Includes Rails integration.' spec.homepage = 'https://github.com/greenbits/weighable' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0") .reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_dependency 'activesupport', '~> 4.2.4' spec.add_development_dependency 'bundler', '~> 1.11' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'rubocop', '~> 0.38.0' spec.add_development_dependency 'rspec', '~> 3.4.0' spec.add_development_dependency 'guard', '~> 2.13.0' spec.add_development_dependency 'guard-rspec', '~> 4.6.4' end
Version data entries
15 entries across 15 versions & 1 rubygems