# Generated by jeweler # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = %q{mongoid-history} s.version = "0.1.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = [%q{Aaron Qian}, %q{Justin Grimes}] s.date = %q{2011-05-25} s.description = %q{In frustration of Mongoid::Versioning, I created this plugin for tracking historical changes for any document, including embedded ones. It achieves this by storing all history tracks in a single collection that you define. (See Usage for more details) Embedded documents are referenced by storing an association path, which is an array of document_name and document_id fields starting from the top most parent document and down to the embedded document that should track history. This plugin implements multi-user undo, which allows users to undo any history change in any order. Undoing a document also creates a new history track. This is great for auditing and preventing vandalism, but it is probably not suitable for use cases such as a wiki.} s.email = [%q{aq1018@gmail.com}, %q{justin.mgrimes@gmail.com}] s.extra_rdoc_files = [ "LICENSE.txt", "README.rdoc" ] s.files = [ ".document", ".rspec", ".rvmrc", "Gemfile", "LICENSE.txt", "README.rdoc", "Rakefile", "VERSION", "lib/mongoid-history.rb", "lib/mongoid/history.rb", "lib/mongoid/history/trackable.rb", "lib/mongoid/history/tracker.rb", "mongoid-history.gemspec", "spec/integration/integration_spec.rb", "spec/spec_helper.rb", "spec/trackable_spec.rb", "spec/tracker_spec.rb" ] s.homepage = %q{http://github.com/aq1018/mongoid-history} s.licenses = [%q{MIT}] s.require_paths = [%q{lib}] s.rubygems_version = %q{1.8.3} s.summary = %q{history tracking, auditing, undo, redo for mongoid} s.test_files = [ "spec/integration/integration_spec.rb", "spec/spec_helper.rb", "spec/trackable_spec.rb", "spec/tracker_spec.rb" ] if s.respond_to? :specification_version then s.specification_version = 3 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then s.add_runtime_dependency(%q, [">= 0"]) s.add_runtime_dependency(%q, ["~> 2.0.0.rc.7"]) s.add_development_dependency(%q, ["~> 2.3.0"]) s.add_development_dependency(%q, ["~> 0.6.0"]) s.add_development_dependency(%q, ["~> 1.0.0"]) s.add_development_dependency(%q, ["~> 1.5.2"]) s.add_development_dependency(%q, [">= 0"]) s.add_development_dependency(%q, ["~> 1.2.8"]) s.add_development_dependency(%q, ["~> 2.1.0"]) s.add_development_dependency(%q, [">= 0"]) else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 2.0.0.rc.7"]) s.add_dependency(%q, ["~> 2.3.0"]) s.add_dependency(%q, ["~> 0.6.0"]) s.add_dependency(%q, ["~> 1.0.0"]) s.add_dependency(%q, ["~> 1.5.2"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 1.2.8"]) s.add_dependency(%q, ["~> 2.1.0"]) s.add_dependency(%q, [">= 0"]) end else s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 2.0.0.rc.7"]) s.add_dependency(%q, ["~> 2.3.0"]) s.add_dependency(%q, ["~> 0.6.0"]) s.add_dependency(%q, ["~> 1.0.0"]) s.add_dependency(%q, ["~> 1.5.2"]) s.add_dependency(%q, [">= 0"]) s.add_dependency(%q, ["~> 1.2.8"]) s.add_dependency(%q, ["~> 2.1.0"]) s.add_dependency(%q, [">= 0"]) end end