mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 22:36:50 +00:00
19 lines
843 B
Ruby
19 lines
843 B
Ruby
# -*- encoding: utf-8 -*-
|
|
Gem::Specification.new do |gem|
|
|
gem.authors = ["José Valim", "Yehuda Katz"]
|
|
gem.email = ["jose.valim@gmail.com", "wycats@gmail.com"]
|
|
gem.description = %q{Making it easy to serialize models for client-side use}
|
|
gem.summary = %q{Bringing consistency and object orientation to model serialization. Works great for client-side MVC frameworks!}
|
|
gem.homepage = ""
|
|
|
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
gem.files = `git ls-files`.split("\n")
|
|
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.add_dependency 'activemodel', '~> 3.0'
|
|
gem.add_development_dependency "rails", "~> 3.0"
|
|
end
|