Skip to content

Commit

Permalink
Write gemspecs for the ActiveRecord and MongoMapper adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
laserlemon committed Apr 24, 2012
1 parent 7363dd8 commit 0eb1ae0
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
18 changes: 18 additions & 0 deletions audited-activerecord.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# encoding: utf-8

Gem::Specification.new do |gem|
gem.name = 'audited-activerecord'
gem.version = '3.0.0'

gem.authors = ['Brandon Keepers', 'Kenneth Kalmer', 'Daniel Morrison', 'Brian Ryckbost', 'Steve Richert', 'Ryan Glover']
gem.email = 'info@collectiveidea.com'
gem.description = 'Log all changes to your ActiveRecord models'
gem.summary = gem.description
gem.homepage = 'https://github.com/collectiveidea/audited'

gem.add_dependency 'activerecord', '~> 3.0'

gem.files = `git ls-files lib`.split($\).grep(/active_?record/)
gem.require_paths = ['lib']
end

18 changes: 18 additions & 0 deletions audited-mongo_mapper.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# encoding: utf-8

Gem::Specification.new do |gem|
gem.name = 'audited-mongo_mapper'
gem.version = '3.0.0'

gem.authors = ['Brandon Keepers', 'Kenneth Kalmer', 'Daniel Morrison', 'Brian Ryckbost', 'Steve Richert', 'Ryan Glover']
gem.email = 'info@collectiveidea.com'
gem.description = 'Log all changes to your MongoMapper models'
gem.summary = gem.description
gem.homepage = 'https://github.com/collectiveidea/audited'

gem.add_dependency 'mongo_mapper', '~> 0.11'

gem.files = `git ls-files lib`.split($\).grep(/mongo_mapper/)
gem.require_paths = ['lib']
end

0 comments on commit 0eb1ae0

Please sign in to comment.