Skip to content

Commit

Permalink
Created gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Aug 18, 2009
1 parent 9c8c593 commit 9cc4685
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions version_fu.gemspec
@@ -1,6 +1,3 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-


Gem::Specification.new do |s| Gem::Specification.new do |s|
Expand All @@ -9,16 +6,23 @@ Gem::Specification.new do |s|


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jordan McKible"] s.authors = ["Jordan McKible"]
s.date = %q{2009-08-12} s.date = %q{2009-08-13}
s.description = %q{TODO} s.description = %q{version_fu is a ActveRecord versioning gem that takes advantage of the new dirty attribute checking available in Rails 2.1. Previous solutions like Rick Olson's acts_as_versioned are no long compatible with Rails.}
s.email = %q{} s.email = %q{}
s.extra_rdoc_files = [ s.extra_rdoc_files = [
"README.rdoc" "README.rdoc"
] ]
s.files = [ s.files = [
".gitignore", ".gitignore",
".idea/encodings.xml",
".idea/inspectionProfiles/Project_Default.xml", ".idea/inspectionProfiles/Project_Default.xml",
".idea/inspectionProfiles/profiles_settings.xml", ".idea/inspectionProfiles/profiles_settings.xml",
".idea/misc.xml",
".idea/modules.xml",
".idea/projectCodeStyle.xml",
".idea/vcs.xml",
".idea/version_fu.iml",
".idea/workspace.xml",
"MIT-LICENSE", "MIT-LICENSE",
"README.rdoc", "README.rdoc",
"RUNNING_UNIT_TESTS", "RUNNING_UNIT_TESTS",
Expand All @@ -37,23 +41,22 @@ Gem::Specification.new do |s|
"test/test_helper.rb", "test/test_helper.rb",
"test/version_fu_test.rb" "test/version_fu_test.rb"
] ]
s.has_rdoc = true
s.homepage = %q{} s.homepage = %q{}
s.rdoc_options = ["--charset=UTF-8"] s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1} s.rubygems_version = %q{1.3.3}
s.summary = %q{Gemified version of the version_fu plugin.} s.summary = %q{Gemified version of the version_fu plugin.}
s.test_files = [ s.test_files = [
"test/fixtures/author.rb", "test/test_helper.rb",
"test/fixtures/page.rb",
"test/test_helper.rb",
"test/version_fu_test.rb", "test/version_fu_test.rb",
"test/schema.rb" "test/schema.rb",
"test/fixtures/author.rb",
"test/fixtures/page.rb"
] ]


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2 s.specification_version = 3


if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else else
Expand Down

0 comments on commit 9cc4685

Please sign in to comment.