-
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
Showing
61 changed files
with
1,658 additions
and
4,193 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
.bundle | ||
.config | ||
.yardoc | ||
Gemfile.lock | ||
*.lock | ||
InstalledFiles | ||
_yardoc | ||
coverage | ||
|
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
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
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
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,9 +1,13 @@ | ||
source 'http://rubygems.org' | ||
source 'https://rubygems.org' | ||
|
||
gemspec | ||
|
||
gem 'sqlite3' | ||
gem 'coveralls', :require => false | ||
gem 'simplecov', :require => false | ||
|
||
# Use Rails master | ||
gem 'rails', github: 'rails/rails' | ||
|
||
# Current dependencies of edge rails | ||
gem 'journey', github: 'rails/journey' | ||
gem 'activerecord-deprecated_finders' , github: 'rails/activerecord-deprecated_finders' | ||
gem 'arel', github: 'rails/arel' |
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,11 @@ | ||
source 'https://rubygems.org' | ||
|
||
# Specify gem dependencies in active_model_serializers.gemspec | ||
gemspec | ||
|
||
gem 'sqlite3' | ||
gem 'coveralls', :require => false | ||
gem 'simplecov', :require => false | ||
|
||
gem 'minitest', '~> 4.0' | ||
gem 'rails', '~> 3.2' |
File renamed without changes.
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
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
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 |
---|---|---|
|
@@ -4,25 +4,21 @@ $:.unshift File.expand_path("../lib", __FILE__) | |
require "active_model/serializer/version" | ||
|
||
Gem::Specification.new do |gem| | ||
gem.authors = ["José Valim", "Yehuda Katz"] | ||
gem.email = ["[email protected]", "[email protected]"] | ||
gem.authors = ["José Valim", "Yehuda Katz", "Santiago Pastorino"] | ||
gem.email = ["[email protected]", "[email protected]", "[email protected]"] | ||
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 = "https://github.com/rails-api/active_model_serializers" | ||
|
||
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.files = Dir['README.md', 'CHANGELOG.md', 'CONTRIBUTING.md', 'DESIGN.textile', 'MIT-LICENSE', 'lib/**/*', 'test/**/*'] | ||
gem.test_files = Dir['test/**/*'] | ||
|
||
gem.name = "active_model_serializers" | ||
gem.require_paths = ["lib"] | ||
gem.version = ActiveModel::Serializer::VERSION | ||
|
||
gem.required_ruby_version = ">= 1.9.3" | ||
|
||
gem.add_dependency "activemodel", ">= 3.2" | ||
|
||
gem.add_development_dependency "rails", ">= 3.2" | ||
gem.add_development_dependency "pry" | ||
gem.add_development_dependency "simplecov" | ||
gem.add_development_dependency "coveralls" | ||
end |
Oops, something went wrong.