Sha256: 1b91a7d5966b0ce3f8fb71144205ad507b45e2d18d7f4263aff3d3a05e566864

Contents?: true

Size: 1.29 KB

Versions: 2

Compression:

Stored size: 1.29 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'smart_attr/version'

Gem::Specification.new do |spec|
  spec.name          = "smart_attr"
  spec.version       = SmartAttr::VERSION
  spec.authors       = ["kunliu"]
  spec.email         = ["kun.liu@dji.com"]

  spec.summary       = %q{SmartAttr helps you make your model's attribute smart.}
  spec.description   = %q{This gem helps you make your model's attribute smart.You can get many useful methods with only a little code.
}
  spec.homepage      = "https://github.com/liukgg/smart_attr"
  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_development_dependency "bundler", "~> 1.11"
  spec.add_development_dependency "rake",    "~> 10.0"
  spec.add_development_dependency "rspec",   "~> 3.0"
  spec.add_development_dependency "pry",     "~> 0.10"
  spec.add_development_dependency "activerecord", "~> 4.2"
  spec.add_development_dependency "sqlite3", "~> 1.3"
  spec.add_development_dependency "mongoid", "~> 5.1"

  spec.add_dependency "activesupport", "~> 4.2"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
smart_attr-0.2.0 smart_attr.gemspec
smart_attr-0.1.1 smart_attr.gemspec