-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regenerate gemspec in preparation for 0.4.1 release
- Loading branch information
1 parent
b7765ba
commit 050f884
Showing
1 changed file
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,27 @@ | ||
# Generated by jeweler | ||
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# Instead, edit Jeweler::Tasks in rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
# stub: mongoid-history 0.4.1 ruby lib | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "mongoid-history" | ||
s.version = "0.4.1" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Aaron Qian", "Justin Grimes", "Daniel Doubrovkine"] | ||
s.date = "2014-1-11" | ||
s.date = "2014-01-11" | ||
s.description = "This library tracks historical changes for any document, including embedded ones. It achieves this by storing all history tracks in a single collection that you define. 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. Mongoid-history 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 = ["[email protected]", "[email protected]", "[email protected]"] | ||
s.extra_rdoc_files = [ | ||
"CHANGELOG.md", | ||
"LICENSE.txt", | ||
"README.md" | ||
] | ||
s.files = [ | ||
".document", | ||
".rspec", | ||
".rubocop.yml", | ||
".travis.yml", | ||
"CHANGELOG.md", | ||
"Gemfile", | ||
|
@@ -34,6 +37,7 @@ Gem::Specification.new do |s| | |
"spec/integration/integration_spec.rb", | ||
"spec/integration/multi_relation_spec.rb", | ||
"spec/integration/nested_embedded_documents_spec.rb", | ||
"spec/integration/subclasses_spec.rb", | ||
"spec/spec_helper.rb", | ||
"spec/support/mongoid.rb", | ||
"spec/support/mongoid_history.rb", | ||
|
@@ -43,25 +47,34 @@ Gem::Specification.new do |s| | |
s.homepage = "http://github.com/aq1018/mongoid-history" | ||
s.licenses = ["MIT"] | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = "1.8.25" | ||
s.rubygems_version = "2.1.8" | ||
s.summary = "Track and audit, undo and redo changes on Mongoid documents." | ||
|
||
if s.respond_to? :specification_version then | ||
s.specification_version = 3 | ||
s.specification_version = 4 | ||
|
||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<easy_diff>, [">= 0"]) | ||
s.add_runtime_dependency(%q<mongoid>, [">= 3.0"]) | ||
s.add_runtime_dependency(%q<activesupport>, [">= 0"]) | ||
s.add_development_dependency(%q<rubocop>, ["~> 0.15.0"]) | ||
s.add_development_dependency(%q<yard>, [">= 0"]) | ||
s.add_development_dependency(%q<jeweler>, [">= 0"]) | ||
else | ||
s.add_dependency(%q<easy_diff>, [">= 0"]) | ||
s.add_dependency(%q<mongoid>, [">= 3.0"]) | ||
s.add_dependency(%q<activesupport>, [">= 0"]) | ||
s.add_dependency(%q<rubocop>, ["~> 0.15.0"]) | ||
s.add_dependency(%q<yard>, [">= 0"]) | ||
s.add_dependency(%q<jeweler>, [">= 0"]) | ||
end | ||
else | ||
s.add_dependency(%q<easy_diff>, [">= 0"]) | ||
s.add_dependency(%q<mongoid>, [">= 3.0"]) | ||
s.add_dependency(%q<activesupport>, [">= 0"]) | ||
s.add_dependency(%q<rubocop>, ["~> 0.15.0"]) | ||
s.add_dependency(%q<yard>, [">= 0"]) | ||
s.add_dependency(%q<jeweler>, [">= 0"]) | ||
end | ||
end | ||
|