forked from harley/auditable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auditable.gemspec
28 lines (24 loc) · 1.23 KB
/
auditable.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 -*-
require File.expand_path('../lib/auditable/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Harley Trung"]
gem.email = ["[email protected]"]
gem.description = %q{A simple gem that audit models' attributes or methods by taking snapshots and diff them for you. Starting from scratch to work with Rails 3.2.2 onwards}
gem.summary = %q{A simple gem to audit attributes and methods in ActiveRecord models.}
gem.homepage = "https://github.com/harleyttd/auditable"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "auditable"
gem.require_paths = ["lib"]
gem.version = Auditable::VERSION
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '>= 2'
gem.add_development_dependency 'watchr'
gem.add_development_dependency 'sqlite3'
# documetation stuff
gem.add_development_dependency 'yard'
gem.add_development_dependency 'rdiscount'
gem.add_runtime_dependency 'activesupport', '>= 3.0'
gem.add_runtime_dependency 'activerecord', '>= 3.0'
end