This repository has been archived by the owner on Dec 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
acts-as-list.gemspec
58 lines (51 loc) · 1.94 KB
/
acts-as-list.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Gem::Specification for Acts-as-list-0.1.2
# Originally generated by Echoe
Gem::Specification.new do |s|
s.name = %q{acts-as-list}
s.version = "0.1.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ryan Bates, Rails Core"]
s.date = %q{2008-07-21}
s.description = %q{Gem version of acts_as_list Rails plugin.}
s.email = %q{ryan (at) railscasts (dot) com}
s.extra_rdoc_files = ["lib/acts_as_list.rb", "README", "tasks/deployment.rake"]
s.files = ["acts-as-list.gemspec", "lib/acts_as_list.rb", "Manifest", "README", "tasks/deployment.rake", "test/list_test.rb"]
s.has_rdoc = true
s.homepage = %q{http://github.com/ryanb/acts-as-list}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Acts-as-list", "--main", "README"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{acts-as-list}
s.rubygems_version = %q{1.2.0}
s.summary = %q{Gem version of acts_as_list Rails plugin.}
s.test_files = ["test/list_test.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if current_version >= 3 then
else
end
else
end
end
# # Original Rakefile source (requires the Echoe gem):
#
# require 'rubygems'
# require 'rake'
#
# begin
# require 'echoe'
#
# Echoe.new('acts-as-list', '0.1.2') do |p|
# p.summary = "Gem version of acts_as_list Rails plugin."
# p.description = "Gem version of acts_as_list Rails plugin."
# p.url = "http://github.com/ryanb/acts-as-list"
# p.author = ['Ryan Bates', 'Rails Core']
# p.email = "ryan (at) railscasts (dot) com"
# end
#
# rescue LoadError => boom
# puts "You are missing a dependency required for meta-operations on this gem."
# puts "#{boom.to_s.capitalize}."
# end
#
# Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }