Sha256: 41b9b2303621f3291bd07471accb0049580051bf9869e1322c39efedf1047a1f
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
class RpushGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) def self.next_migration_number(path) @time ||= Time.now.utc @calls ||= -1 @calls += 1 (@time + @calls.seconds).strftime("%Y%m%d%H%M%S") end def copy_migration if has_migration?('create_rapns_notifications') add_rpush_migration('create_rapns_feedback') add_rpush_migration('add_alert_is_json_to_rapns_notifications') add_rpush_migration('add_app_to_rapns') add_rpush_migration('create_rapns_apps') add_rpush_migration('add_gcm') add_rpush_migration('add_wpns') add_rpush_migration('add_adm') add_rpush_migration('rename_rapns_to_rpush') add_rpush_migration('add_fail_after_to_rpush_notifications') else add_rpush_migration('add_rpush') end add_rpush_migration('rpush_2_0_0_updates') end def copy_config copy_file 'rpush.rb', 'config/initializers/rpush.rb' end protected def add_rpush_migration(template) if !has_migration?(template) migration_template "#{template}.rb", "db/migrate/#{template}.rb" end end def has_migration?(template) migration_dir = File.expand_path('db/migrate') self.class.migration_exists?(migration_dir, template) end end
Version data entries
6 entries across 6 versions & 1 rubygems