Commit edf4bc2cfd3d971d95ef8a1989ffcc297e1baab6

Authored by Leandro Santos
Committed by Antonio Terceiro
1 parent ab0ccecc

adding new version of acts_as_versioned plugin

vendor/plugins/acts_as_versioned/VERSION.yml 0 → 100644
... ... @@ -0,0 +1,4 @@
  1 +---
  2 +:patch: 2
  3 +:major: 0
  4 +:minor: 5
... ...
vendor/plugins/acts_as_versioned/acts_as_versioned.gemspec 0 → 100644
... ... @@ -0,0 +1,29 @@
  1 +# -*- encoding: utf-8 -*-
  2 +
  3 +Gem::Specification.new do |s|
  4 + s.name = %q{acts_as_versioned}
  5 + s.version = "0.5.2"
  6 +
  7 + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  8 + s.authors = ["technoweenie"]
  9 + s.date = %q{2009-01-20}
  10 + s.description = %q{TODO}
  11 + s.email = %q{technoweenie@bidwell.textdrive.com}
  12 + s.files = ["VERSION.yml", "lib/acts_as_versioned.rb", "test/abstract_unit.rb", "test/database.yml", "test/fixtures", "test/fixtures/authors.yml", "test/fixtures/landmark.rb", "test/fixtures/landmark_versions.yml", "test/fixtures/landmarks.yml", "test/fixtures/locked_pages.yml", "test/fixtures/locked_pages_revisions.yml", "test/fixtures/migrations", "test/fixtures/migrations/1_add_versioned_tables.rb", "test/fixtures/page.rb", "test/fixtures/page_versions.yml", "test/fixtures/pages.yml", "test/fixtures/widget.rb", "test/migration_test.rb", "test/schema.rb", "test/versioned_test.rb"]
  13 + s.has_rdoc = true
  14 + s.homepage = %q{http://github.com/technoweenie/acts_as_versioned}
  15 + s.rdoc_options = ["--inline-source", "--charset=UTF-8"]
  16 + s.require_paths = ["lib"]
  17 + s.rubygems_version = %q{1.3.1}
  18 + s.summary = %q{TODO}
  19 +
  20 + if s.respond_to? :specification_version then
  21 + current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
  22 + s.specification_version = 2
  23 +
  24 + if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
  25 + else
  26 + end
  27 + else
  28 + end
  29 +end
... ...