Sha256: 5b2e30aafe23e8fe696faf26b2308b85d6fb2b5e522e0aa1d2f1447b9b7a3b26
Contents?: true
Size: 916 Bytes
Versions: 3
Compression:
Stored size: 916 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "belongs_to_enum/version" Gem::Specification.new do |s| s.name = "belongs_to_enum" s.version = BelongsToEnum::VERSION s.platform = Gem::Platform::RUBY s.authors = ["Jeremy walker"] s.email = ["jez.walker@gmail.com"] s.homepage = "" s.summary = %q{Adds support for transparent enums to ActiveRecord} s.description = %q{Adds belongs_to_enum method to ActiveRecord::Base, allowing enums to be created with associated scopes and more.} s.rubyforge_project = "belongs_to_enum" s.add_dependency "rails" s.add_development_dependency "rspec-rails" 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"] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
belongs_to_enum-0.4.0 | belongs_to_enum.gemspec |
belongs_to_enum-0.3.1 | belongs_to_enum.gemspec |
belongs_to_enum-0.3 | belongs_to_enum.gemspec |