xmlblog / acts_as_versioned forked from metaskills/acts_as_versioned

ActiveRecord plugin for versioning your models.

This URL has Read+Write access

acts_as_versioned / acts_as_versioned.gemspec
100644 44 lines (42 sloc) 1.402 kb
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
42
43
44
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = "acts_as_versioned"
  s.version = "0.6.5"
  s.date = "2009-07-22"
  s.summary = "ActiveRecord plugin for versioning your models."
  s.email = "christian@kipdigitalmedia.com"
  s.homepage = "http://github.com/xmlblog/acts_as_versioned/"
  s.description = "ActiveRecord plugin for versioning your models."
  s.has_rdoc = true
  s.authors = ["xmlblog", "metaskills", "technoweenie"]
  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