forked from technoweenie/acts_as_versioned
-
Notifications
You must be signed in to change notification settings - Fork 2
/
acts_as_versioned.gemspec
41 lines (41 loc) · 1.31 KB
/
acts_as_versioned.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
29
30
31
32
33
34
35
36
37
38
39
40
41
Gem::Specification.new do |s|
s.name = "acts_as_versioned"
s.version = "0.6.3"
s.date = "2009-04-04"
s.summary = "ActiveRecord plugin for versioning your models."
s.email = "ken@metaskills.net"
s.homepage = "http://github.com/metaskills/acts_as_versioned/"
s.description = "ActiveRecord plugin for versioning your models."
s.has_rdoc = true
s.authors = ["Rick Olson"]
s.files = [
"CHANGELOG",
"MIT-LICENSE",
"Rakefile",
"README.rdoc",
"RUNNING_UNIT_TESTS",
"lib/acts_as_versioned.rb" ]
s.test_files = [
"test/fixtures/authors.yml",
"test/fixtures/landmark_versions.yml",
"test/fixtures/landmarks.yml",
"test/fixtures/locked_pages_revisions.yml",
"test/fixtures/locked_pages.yml",
"test/fixtures/page_versions.yml",
"test/fixtures/pages.yml",
"test/fixtures/widgets.yml",
"test/helper.rb",
"test/lib/boot.rb",
"test/lib/database.yml",
"test/lib/schema.rb",
"test/migration_test.rb",
"test/migrations/1_add_versioned_tables.rb",
"test/models/author.rb",
"test/models/landmark.rb",
"test/models/page.rb",
"test/models/thing.rb",
"test/models/widget.rb",
"test/versioned_test.rb" ]
s.rdoc_options = ["--main", "README.rdoc"]
s.extra_rdoc_files = ["README.rdoc","CHANGELOG","MIT-LICENSE"]
end