Sha256: d2d82dd5406dccc103cf084a6b3558ac29f0464d7900f0262c80f326b9b81b69

Contents?: true

Size: 967 Bytes

Versions: 1

Compression:

Stored size: 967 Bytes

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "much-decimal/version"

Gem::Specification.new do |gem|
  gem.name        = "much-decimal"
  gem.version     = MuchDecimal::VERSION
  gem.authors     = ["Kelly Redding", "Collin Redding"]
  gem.email       = ["kelly@kellyredding.com", "collin.redding@me.com"]
  gem.summary     = "Define decimal attributes that are stored as integers"
  gem.description = "Define decimal attributes that are stored as integers"
  gem.homepage    = "https://github.com/redding/much-decimal"
  gem.license     = 'MIT'

  gem.files         = `git ls-files`.split($/)
  gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ["lib"]

  gem.add_development_dependency("assert", ["~> 2.16.1"])

  gem.add_dependency('much-plugin', ["~> 0.2.0"])

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
much-decimal-0.1.1 much-decimal.gemspec