Sha256: 1e5079bc5b1fc32e59bb1793bd6507d1bb3e24b24204d518d69f771f01ffe412
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
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.2.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_dependency 'activerecord' spec.add_development_dependency 'rails' spec.add_development_dependency "bundler" spec.add_development_dependency "rake" spec.add_development_dependency "minitest" spec.add_development_dependency 'sqlite3' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lightweight_attributes-0.2.0 | lightweight_attributes.gemspec |