jsmestad-merb_activerecord_enum 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README +61 -0
- data/Rakefile +51 -0
- data/TODO +5 -0
- data/lib/merb_activerecord_enum.rb +21 -0
- data/lib/merb_activerecord_enum/merbtasks.rb +7 -0
- data/lib/merb_activerecord_enum/symbolize.rb +81 -0
- data/spec/merb_activerecord_enum_spec.rb +7 -0
- data/spec/spec_helper.rb +1 -0
- metadata +72 -0
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Justin Smestad
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,61 @@
|
|
1
|
+
merb_activerecord_enum
|
2
|
+
======================
|
3
|
+
|
4
|
+
A plugin for the Merb framework that provides enumeration compatibility for ActiveRecord.
|
5
|
+
Port of "activerecord-symbolize" by zargony
|
6
|
+
|
7
|
+
Original README
|
8
|
+
======================
|
9
|
+
= Symbolize attribute values in ActiveRecord (e.g. for nicer enums)
|
10
|
+
|
11
|
+
This plugin introduces an easy way to use symbols for values of ActiveRecord
|
12
|
+
attributes. Symbolized attributes return a ruby symbol (or nil) as their value
|
13
|
+
and can be set using symbols.
|
14
|
+
|
15
|
+
== About
|
16
|
+
|
17
|
+
Since ActiveRecord does not natively support database column types of ENUM or
|
18
|
+
SET, you'll usually use a string attribute and restrict it to certain values
|
19
|
+
with validations. Using this plugin, the values of such pseudo-enums are
|
20
|
+
symbols, which look more ruby-style than strings.
|
21
|
+
|
22
|
+
Simply add "symbolize :attr_name" to your model class, and the specified
|
23
|
+
attribute will return symbol values and can be set using smbols (setting
|
24
|
+
string values will still work, which is important when using forms).
|
25
|
+
|
26
|
+
An attribute to symbolize should be a string (varchar) column in the database.
|
27
|
+
|
28
|
+
Blog: http://zargony.com/
|
29
|
+
Github: http://github.com/zargony/activerecord_symbolize
|
30
|
+
|
31
|
+
== Install
|
32
|
+
|
33
|
+
./script/plugin install git://github.com/zargony/activerecord_symbolize.git
|
34
|
+
|
35
|
+
== Usage
|
36
|
+
|
37
|
+
Add "symbolize :attr_name" to your model class. An attribute validation
|
38
|
+
(like validates_inclusion_of) can be added by using the :in option.
|
39
|
+
|
40
|
+
class User < ActiveRecord::Base
|
41
|
+
symbolize :gender, :in => [:female, :male]
|
42
|
+
end
|
43
|
+
|
44
|
+
== Examples
|
45
|
+
|
46
|
+
u = User.find_by_name('Anna') # => #<User Anna>
|
47
|
+
u.gender # => :female
|
48
|
+
|
49
|
+
u = User.find_by_gender(:male) # => #<User Bob>
|
50
|
+
u.gender # => :male
|
51
|
+
|
52
|
+
u = User.find(:all, :conditions => { :gender => :female })
|
53
|
+
|
54
|
+
u = User.new(:name => 'ET', :gender => :unknown)
|
55
|
+
u.save # => validation fails
|
56
|
+
|
57
|
+
== Notes
|
58
|
+
|
59
|
+
I've been using this for quite some time and made it a rails plugin now. More
|
60
|
+
background information can be found at
|
61
|
+
http://zargony.com/2007/09/07/symbolize-attribute-values-in-activerecord
|
data/Rakefile
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake/gempackagetask'
|
3
|
+
|
4
|
+
require 'merb-core'
|
5
|
+
require 'merb-core/tasks/merb'
|
6
|
+
|
7
|
+
GEM_NAME = "merb-activerecord-enum"
|
8
|
+
GEM_VERSION = "1.0.2"
|
9
|
+
AUTHOR = "Justin Smestad"
|
10
|
+
EMAIL = "justin.smestad@gmail.com"
|
11
|
+
HOMEPAGE = "http://www.evalcode.com/"
|
12
|
+
SUMMARY = "Merb plugin that provides symbolized attribute values (nice enums) for AR"
|
13
|
+
|
14
|
+
spec = Gem::Specification.new do |s|
|
15
|
+
s.rubyforge_project = 'merb'
|
16
|
+
s.name = GEM_NAME
|
17
|
+
s.version = GEM_VERSION
|
18
|
+
s.platform = Gem::Platform::RUBY
|
19
|
+
s.has_rdoc = true
|
20
|
+
s.extra_rdoc_files = ["README", "LICENSE", 'TODO']
|
21
|
+
s.summary = SUMMARY
|
22
|
+
s.description = s.summary
|
23
|
+
s.author = AUTHOR
|
24
|
+
s.email = EMAIL
|
25
|
+
s.homepage = HOMEPAGE
|
26
|
+
s.add_dependency('merb', '>= 1.0.8.1')
|
27
|
+
s.require_path = 'lib'
|
28
|
+
s.files = %w(LICENSE README Rakefile TODO) + Dir.glob("{lib,spec}/**/*")
|
29
|
+
|
30
|
+
end
|
31
|
+
|
32
|
+
Rake::GemPackageTask.new(spec) do |pkg|
|
33
|
+
pkg.gem_spec = spec
|
34
|
+
end
|
35
|
+
|
36
|
+
desc "install the plugin as a gem"
|
37
|
+
task :install do
|
38
|
+
Merb::RakeHelper.install(GEM_NAME, :version => GEM_VERSION)
|
39
|
+
end
|
40
|
+
|
41
|
+
desc "Uninstall the gem"
|
42
|
+
task :uninstall do
|
43
|
+
Merb::RakeHelper.uninstall(GEM_NAME, :version => GEM_VERSION)
|
44
|
+
end
|
45
|
+
|
46
|
+
desc "Create a gemspec file"
|
47
|
+
task :gemspec do
|
48
|
+
File.open("#{GEM_NAME}.gemspec", "w") do |file|
|
49
|
+
file.puts spec.to_ruby
|
50
|
+
end
|
51
|
+
end
|
data/TODO
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# make sure we're running inside Merb
|
2
|
+
if defined?(Merb::Plugins)
|
3
|
+
|
4
|
+
dependency "activerecord"
|
5
|
+
|
6
|
+
# Merb gives you a Merb::Plugins.config hash...feel free to put your stuff in your piece of it
|
7
|
+
Merb::Plugins.config[:merb_activerecord_enum] = {
|
8
|
+
}
|
9
|
+
|
10
|
+
Merb::BootLoader.before_app_loads do
|
11
|
+
# require code that must be loaded before the application
|
12
|
+
require File.join(File.dirname(__FILE__), 'merb_activerecord_enum', 'symbolize')
|
13
|
+
ActiveRecord::Base.send(:include, Symbolize)
|
14
|
+
end
|
15
|
+
|
16
|
+
Merb::BootLoader.after_app_loads do
|
17
|
+
# code that can be required after the application loads
|
18
|
+
end
|
19
|
+
|
20
|
+
Merb::Plugins.add_rakefiles "merb_activerecord_enum/merbtasks"
|
21
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
module Symbolize
|
2
|
+
def self.included (base)
|
3
|
+
base.extend(ClassMethods)
|
4
|
+
end
|
5
|
+
|
6
|
+
# Symbolize ActiveRecord attributes. Add
|
7
|
+
# symbolize :attr_name
|
8
|
+
# to your model class, to make an attribute return symbols instead of
|
9
|
+
# string values. Setting such an attribute will accept symbols as well
|
10
|
+
# as strings. In the database, the symbolized attribute should have
|
11
|
+
# the column-type :string.
|
12
|
+
#
|
13
|
+
# Example:
|
14
|
+
# class User < ActiveRecord::Base
|
15
|
+
# symbolize :gender, :in => [:female, :male]
|
16
|
+
# end
|
17
|
+
module ClassMethods
|
18
|
+
# Specifies that values of the given attributes should be returned
|
19
|
+
# as symbols. The table column should be created of type string.
|
20
|
+
def symbolize (*attr_names)
|
21
|
+
configuration = {}
|
22
|
+
configuration.update(attr_names.extract_options!)
|
23
|
+
|
24
|
+
enum = configuration[:in] || configuration[:within]
|
25
|
+
|
26
|
+
unless enum.nil?
|
27
|
+
if enum.class == Hash
|
28
|
+
values = enum
|
29
|
+
enum = enum.map { |key,value| key }
|
30
|
+
else
|
31
|
+
values = Hash[*enum.collect { |v| [v, v.to_s.capitalize] }.flatten]
|
32
|
+
end
|
33
|
+
|
34
|
+
attr_names.each do |attr_name|
|
35
|
+
attr_name = attr_name.to_s
|
36
|
+
class_eval("#{attr_name.upcase}_VALUES = values")
|
37
|
+
class_eval("def self.get_#{attr_name}_values; #{attr_name.upcase}_VALUES; end")
|
38
|
+
end
|
39
|
+
|
40
|
+
class_eval("validates_inclusion_of :#{attr_names.join(', :')}, configuration")
|
41
|
+
end
|
42
|
+
|
43
|
+
attr_names.each do |attr_name|
|
44
|
+
attr_name = attr_name.to_s
|
45
|
+
class_eval("def #{attr_name}; read_and_symbolize_attribute('#{attr_name}'); end")
|
46
|
+
class_eval("def #{attr_name}= (value); write_symbolized_attribute('#{attr_name}', value); end")
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# Return an attribute's value as a symbol or nil
|
52
|
+
def read_and_symbolize_attribute (attr_name)
|
53
|
+
read_attribute(attr_name).to_sym rescue nil
|
54
|
+
end
|
55
|
+
|
56
|
+
# Write a symbolized value
|
57
|
+
def write_symbolized_attribute (attr_name, value)
|
58
|
+
write_attribute(attr_name, (value.to_sym && value.to_sym.to_s rescue nil))
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
# The Symbol class is extended by method quoted_id which returns a string.
|
63
|
+
# The idea behind this is, that symbols are converted to plain strings
|
64
|
+
# when being quoted by ActiveRecord::ConnectionAdapters::Quoting#quote.
|
65
|
+
# This makes it possible to work with symbolized attibutes in sql conditions.
|
66
|
+
# E.g. validates_uniqueness_of could not use :scope with a symbolized
|
67
|
+
# attribute, because AR quotes it to YAML:
|
68
|
+
# "... AND status = '--- :active\n'"
|
69
|
+
# Having support for quoted_id in Symbol, makes AR quoting symbols correctly:
|
70
|
+
# "... AND status = 'active'"
|
71
|
+
# NOTE: Normally quoted_id should be implemented as a singleton method
|
72
|
+
# only used on symbols returned by read_and_symbolize_attribute,
|
73
|
+
# but unfortunately this is not possible since Symbol is an immediate
|
74
|
+
# value and therefore does not support singleton methods.
|
75
|
+
class Symbol
|
76
|
+
def quoted_id
|
77
|
+
# A symbol can contain almost every character (even a backslash or an
|
78
|
+
# apostrophe), so make sure to properly quote the string value here.
|
79
|
+
"'#{ActiveRecord::Base.connection.quote_string(self.to_s)}'"
|
80
|
+
end
|
81
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
$:.push File.join(File.dirname(__FILE__), '..', 'lib')
|
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jsmestad-merb_activerecord_enum
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Justin Smestad
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-01-18 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: merb
|
17
|
+
version_requirement:
|
18
|
+
version_requirements: !ruby/object:Gem::Requirement
|
19
|
+
requirements:
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 1.0.8.1
|
23
|
+
version:
|
24
|
+
description: Merb plugin that provides symbolized attribute values (nice enums) for AR
|
25
|
+
email: justin.smestad@gmail.com
|
26
|
+
executables: []
|
27
|
+
|
28
|
+
extensions: []
|
29
|
+
|
30
|
+
extra_rdoc_files:
|
31
|
+
- README
|
32
|
+
- LICENSE
|
33
|
+
- TODO
|
34
|
+
files:
|
35
|
+
- LICENSE
|
36
|
+
- README
|
37
|
+
- Rakefile
|
38
|
+
- TODO
|
39
|
+
- lib/merb_activerecord_enum
|
40
|
+
- lib/merb_activerecord_enum/merbtasks.rb
|
41
|
+
- lib/merb_activerecord_enum/symbolize.rb
|
42
|
+
- lib/merb_activerecord_enum.rb
|
43
|
+
- spec/merb_activerecord_enum_spec.rb
|
44
|
+
- spec/spec_helper.rb
|
45
|
+
has_rdoc: true
|
46
|
+
homepage: http://www.evalcode.com/
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ">="
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: "0"
|
57
|
+
version:
|
58
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: "0"
|
63
|
+
version:
|
64
|
+
requirements: []
|
65
|
+
|
66
|
+
rubyforge_project: merb
|
67
|
+
rubygems_version: 1.2.0
|
68
|
+
signing_key:
|
69
|
+
specification_version: 2
|
70
|
+
summary: Merb plugin that provides symbolized attribute values (nice enums) for AR
|
71
|
+
test_files: []
|
72
|
+
|