hooktstudios/historyable

View on GitHub
historyable.gemspec

Summary

Maintainability
Test Coverage
# encoding: utf-8

$:.unshift File.expand_path('../lib', __FILE__)
require 'historyable/version'

Gem::Specification.new do |s|
  s.name          = "historyable"
  s.version       = Historyable::VERSION
  s.authors       = ["Philippe Dionne"]
  s.email         = ['philippe.dionne@hooktstudios.com']
  s.homepage      = "https://github.com/hooktstudios/historyable"
  s.licenses      = ['MIT']
  s.summary       = "A simple and solid concern to track ActiveRecord models attributes changes."
  s.description   = "A simple and solid concern to track ActiveRecord models attributes changes."

  s.cert_chain  = ['certs/pdionne-gem-public_cert.pem']
  s.signing_key = File.expand_path("~/.gem/pdionne-gem-private_key.pem") if $0 =~ /gem\z/

  s.files         = `git ls-files lib`.split("\n")
  s.platform      = Gem::Platform::RUBY
  s.require_paths = ['lib']
  s.test_files    = s.files.grep(%r{^(spec)/})

  s.add_dependency 'activerecord', '>= 3.2.14'
end