-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tomhuda
committed
May 16, 2012
1 parent
2c15143
commit 33d4842
Showing
4 changed files
with
17 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# VERSION 0.5 (May 16, 2012) | ||
|
||
* First tagged version | ||
* Changes generators to always generate an ApplicationSerializer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
# -*- encoding: utf-8 -*- | ||
|
||
$:.unshift File.expand_path("../lib", __FILE__) | ||
require "active_model/serializers/version" | ||
|
||
Gem::Specification.new do |gem| | ||
gem.authors = ["José Valim", "Yehuda Katz"] | ||
gem.email = ["[email protected]", "[email protected]"] | ||
|
@@ -11,7 +15,7 @@ Gem::Specification.new do |gem| | |
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") | ||
gem.name = "active_model_serializers" | ||
gem.require_paths = ["lib"] | ||
gem.version = "0.1.0" | ||
gem.version = ActiveModel::Serializer::VERSION | ||
|
||
gem.add_dependency 'activemodel', '~> 3.0' | ||
gem.add_development_dependency "rails", "~> 3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module ActiveModel | ||
class Serializer | ||
VERSION = "0.5.0" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters