Sha256: bb1bfe352fbb108cda2366d0ba088da1ba7156186fe609e071978621f7230f51

Contents?: true

Size: 931 Bytes

Versions: 1

Compression:

Stored size: 931 Bytes

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "acts_as_keyed/version"

Gem::Specification.new do |s|
  s.name        = "acts_as_keyed"
  s.version     = ActsAsKeyed::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Jeremy Hubert"]
  s.email       = ["jhubert@gmail.com"]
  s.homepage    = "http://github.com/jhubert/acts-as-keyed"
  s.summary     = %q{Automatically key an active record model with a unique key}
  s.description = %q{A simple plugin that automatically generates a key for a model on create. It takes care of protecting the key, automatically generating it and making sure it is unique.}

  s.rubyforge_project = "acts_as_keyed"

  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

1 entries across 1 versions & 1 rubygems

Version Path
acts_as_keyed-0.0.8 acts_as_keyed.gemspec