Skip to content

Commit

Permalink
bump 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bbenezech committed Feb 8, 2010
1 parent a9a2a2d commit 4bf26c4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
1.2.0
1.3.0
2 changes: 1 addition & 1 deletion lib/serialist/serialist_module.rb
Expand Up @@ -47,7 +47,7 @@ def define_access_method(method)
else
define_method method do
return nil unless (slug = self.send(serialist_field))
slug[method.to_sym]
method.ends_with?("_id") ? slug[method.to_sym].to_i : slug[method.to_sym]
end
end
end
Expand Down
Binary file added serialist-1.3.0.gem
Binary file not shown.
6 changes: 3 additions & 3 deletions serialist.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{serialist}
s.version = "1.0.0"
s.version = "1.3.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Benoit B\303\251n\303\251zech"]
s.date = %q{2009-10-27}
s.date = %q{2010-02-08}
s.description = %q{Serialize any data, set and fetch it like any column attributes}
s.email = %q{benoit.benezech@gmail.com}
s.extra_rdoc_files = [
Expand All @@ -19,7 +19,6 @@ Gem::Specification.new do |s|
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"TODO.txt",
"VERSION",
"generators/serialist/serialist_generator.rb",
"generators/serialist/templates/USAGE",
Expand All @@ -32,6 +31,7 @@ Gem::Specification.new do |s|
"rails/init.rb",
"serialist.gemspec",
"tasks/acts_as_serializable_tasks.rake",
"test/serialist_test.rb",
"uninstall.rb"
]
s.homepage = %q{http://github.com/bbenezech/serialist}
Expand Down

0 comments on commit 4bf26c4

Please sign in to comment.