Skip to content

Commit

Permalink
Updated gemspec to correct Rubyforge project
Browse files Browse the repository at this point in the history
  • Loading branch information
swanandp committed Jun 10, 2011
1 parent f7bdd42 commit b88b95e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions acts_as_list.gemspec
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "acts_as_list/version"
$:.push File.expand_path('../lib', __FILE__)
require 'acts_as_list/version'

Gem::Specification.new do |s|

# Description Meta...
s.name = "acts_as_list-rails3"
s.name = 'acts_as_list'
s.version = ActiveRecord::Acts::List::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["David Heinemeier Hansson","Swanand Pagnis","Quinn Chaffee"]
s.email = ["chaffeqa@gmail.com"]
s.homepage = "http://github.com/chaffeqa/acts_as_list"
s.authors = ['David Heinemeier Hansson', 'Swanand Pagnis', 'Quinn Chaffee']
s.email = ['swanand.pagnis@gmail.com']
s.homepage = 'http://github.com/swanandp/acts_as_list'
s.summary = %q{A gem allowing a active_record model to act_as_list.}
s.description = %q{This "acts_as" extension provides the capabilities for sorting and reordering a number of objects in a list. The class that has this specified needs to have a "position" column defined as an integer on the mapped database table.}
s.rubyforge_project = "acts_as_list-rails3"
s.rubyforge_project = 'acts_as_list'


# Load Paths...
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.require_paths = ['lib']


# Dependencies (installed via 'bundle install')...
Expand Down

0 comments on commit b88b95e

Please sign in to comment.