PRX / apn_on_rails

Apple Push Notifications on Rails
http://rubydoc.info/github/PRX/apn_on_rails/master/frames
MIT License
538 stars 156 forks source link

Updated instructions for rails 3 generators #37

Closed durrantm closed 12 years ago

durrantm commented 12 years ago

Update to reflect change from rails 2 syntax to Rails 3 syntax
i.e.
$ ruby script/generate apn_migrations
to
$ ruby script/rails generate apn_migrations

kookster commented 12 years ago

ugh - yes - didn't update the readme.

I think it should be:

rails generate apn_on_rails:install

thoughts?

durrantm commented 12 years ago

Thanks!!!

ruby script/rails generate apn_on_rails:install create db/migrate/20120128012033_create_apn_devices.rb create db/migrate/20120128012034_create_apn_notifications.rb create db/migrate/20120128012035_alter_apn_devices.rb create db/migrate/20120128012036_create_apn_apps.rb create db/migrate/20120128012037_create_groups.rb create db/migrate/20120128012038_alter_apn_groups.rb create db/migrate/20120128012039_create_device_groups.rb create db/migrate/20120128012040_create_apn_group_notifications.rb create db/migrate/20120128012041_create_pull_notifications.rb create db/migrate/20120128012042_alter_apn_notifications.rb create db/migrate/20120128012043_make_device_token_index_nonunique.rb create db/migrate/20120128012044_add_launch_notification_to_apn_pull_notifications.rb :)

Does the configatron piece e.g.

development (delivery):

configatron.apn.passphrase # => '' ... get put in my config/development.rb (test.rb, etc) files ? Thx.

On Fri, Jan 27, 2012 at 7:57 PM, Andrew Kuklewicz < reply@reply.github.com

wrote:

ugh - yes - didn't update the readme.

I think it should be:

rails generate apn_on_rails:install

thoughts?


Reply to this email directly or view it on GitHub: https://github.com/PRX/apn_on_rails/pull/37#issuecomment-3697022

Cheers, Michael.