Skip to content

Commit

Permalink
Add post_install_message regarding AMS changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rykov committed Mar 2, 2013
1 parent 028c173 commit 8304c50
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions ember-rails.gemspec
Expand Up @@ -24,4 +24,25 @@ Gem::Specification.new do |s|
s.files = %w(README.md LICENSE) + Dir["lib/**/*", "vendor/**/*"]

s.require_paths = ["lib"]

# Temporary notification for AMS transition to Gemfile
s.post_install_message = <<POSTINSTALL
# Ember-Rails Release Notes #
If you're upgrading from ember-rails 0.11.1 or earlier, please be aware of the
ActiveModelSerializers changes that are part of this update:
ActiveModelSerializers will no longer be a hard dependency of ember-rails and
will not be require'd automatically. Please add the following line to your
Gemfile to continue using ActiveModelSerializers with ember-rails:
gem "active_model_serializers"
In new applications, running the bootstrap generator will append this
dependency statement to your Gemfile for you:
rails g ember:bootstrap
Read more about using ember-rails at https://github.com/emberjs/ember-rails
POSTINSTALL
end

0 comments on commit 8304c50

Please sign in to comment.