forked from sermo/acts_as_revisionable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacts_as_revisionable.gemspec
28 lines (23 loc) · 1.2 KB
/
acts_as_revisionable.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'acts_as_revisionable/version'
Gem::Specification.new do |s|
s.name = 'acts_as_revisionable'
s.version = ActsAsRevisionable::VERSION
s.homepage = 'http://github.com/bdurand/acts_as_revisionable'
s.date = '2012-01-24'
s.authors = ['Brian Durand']
s.email = '[email protected]'
s.summary = 'ActiveRecord extension that provides revision support so that history can be tracked and changes can be reverted.'
s.description = 'ActiveRecord extension that provides revision support so that history can be tracked and changes can be reverted. Emphasis for this plugin versus similar ones is including associations, saving on storage, and extensibility of the model.'
s.extra_rdoc_files = [ 'README.rdoc' ]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ['lib']
s.add_runtime_dependency 'activerecord', '>= 3.2'
s.add_runtime_dependency 'protected_attributes'
s.add_development_dependency 'sqlite3', '>= 0'
s.add_development_dependency 'rspec', '= 2.14.1'
s.add_development_dependency 'pry'
s.add_development_dependency 'pry-byebug'
end