public
Description: Adds support for declaring an ActiveRecord class as an enumeration
Homepage: http://www.pluginaweek.org
Clone URL: git://github.com/pluginaweek/enumerate_by.git
enumerate_by / enumerate_by.gemspec
100644 31 lines (26 sloc) 2.214 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
# -*- encoding: utf-8 -*-
 
Gem::Specification.new do |s|
  s.name = %q{enumerate_by}
  s.version = "0.4.3"
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Aaron Pfeifer"]
  s.date = %q{2009-06-14}
  s.description = %q{Adds support for declaring an ActiveRecord class as an enumeration}
  s.email = %q{aaron@pluginaweek.org}
  s.files = ["lib/enumerate_by.rb", "lib/enumerate_by", "lib/enumerate_by/extensions", "lib/enumerate_by/extensions/base_conditions.rb", "lib/enumerate_by/extensions/associations.rb", "lib/enumerate_by/extensions/serializer.rb", "lib/enumerate_by/extensions/xml_serializer.rb", "test/unit", "test/unit/xml_serializer_test.rb", "test/unit/enumerate_by_test.rb", "test/unit/serializer_test.rb", "test/unit/assocations_test.rb", "test/unit/json_serializer_test.rb", "test/unit/base_conditions_test.rb", "test/factory.rb", "test/app_root", "test/app_root/app", "test/app_root/app/models", "test/app_root/app/models/order.rb", "test/app_root/app/models/color.rb", "test/app_root/app/models/car.rb", "test/app_root/app/models/car_part.rb", "test/app_root/db", "test/app_root/db/migrate", "test/app_root/db/migrate/003_create_car_parts.rb", "test/app_root/db/migrate/001_create_colors.rb", "test/app_root/db/migrate/002_create_cars.rb", "test/app_root/db/migrate/004_create_orders.rb", "test/test_helper.rb", "CHANGELOG.rdoc", "init.rb", "LICENSE", "Rakefile", "README.rdoc"]
  s.has_rdoc = true
  s.homepage = %q{http://www.pluginaweek.org}
  s.require_paths = ["lib"]
  s.rubyforge_project = %q{pluginaweek}
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Adds support for declaring an ActiveRecord class as an enumeration}
  s.test_files = ["test/unit/xml_serializer_test.rb", "test/unit/enumerate_by_test.rb", "test/unit/serializer_test.rb", "test/unit/assocations_test.rb", "test/unit/json_serializer_test.rb", "test/unit/base_conditions_test.rb"]
 
  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2
 
    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end