Sha256: dc93545054d35a4e22eb9598f4c2c1b9e9bac71e3f34eaedb987609243de3fa0

Contents?: true

Size: 975 Bytes

Versions: 1

Compression:

Stored size: 975 Bytes

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
  spec.name          = "lightweight_attributes"
  spec.version       = '0.1.0'.freeze
  spec.authors       = ["Akira Matsuda"]
  spec.email         = ["ronnie@dio.jp"]

  spec.summary       = 'Good old lightweight attributes for Active Record'
  spec.description   = 'Bring the speed back to your Active Record models!'
  spec.homepage      = 'https://github.com/amatsuda/lightweight_attributes'
  spec.license       = "MIT"

  spec.files         = `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.add_development_dependency "bundler", "~> 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lightweight_attributes-0.1.0 lightweight_attributes.gemspec