Class: Ahoy::Generators::ActiverecordGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/ahoy/activerecord_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object

Implement the required interface for Rails::Generators::Migration.



16
17
18
19
20
21
22
23
# File 'lib/generators/ahoy/activerecord_generator.rb', line 16

def self.next_migration_number(dirname) #:nodoc:
  next_migration_number = current_migration_number(dirname) + 1
  if ::ActiveRecord::Base.timestamped_migrations
    [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max
  else
    "%.3d" % next_migration_number
  end
end

Instance Method Details

#copy_templatesObject



25
26
27
28
29
30
31
32
# File 'lib/generators/ahoy/activerecord_generator.rb', line 25

def copy_templates
  template "database_store_initializer.rb", "config/initializers/ahoy.rb"
  template "active_record_visit_model.rb", "app/models/ahoy/visit.rb"
  template "active_record_event_model.rb", "app/models/ahoy/event.rb"
  migration_template "active_record_migration.rb", "db/migrate/create_ahoy_visits_and_events.rb", migration_version: migration_version
  migrate_command = rails5? ? "rails" : "rake"
  puts "\nAlmost set! Last, run:\n\n    #{migrate_command} db:migrate"
end

#migration_versionObject



51
52
53
54
55
# File 'lib/generators/ahoy/activerecord_generator.rb', line 51

def migration_version
  if rails5?
    "[#{ActiveRecord::VERSION::MAJOR}.#{ActiveRecord::VERSION::MINOR}]"
  end
end

#properties_typeObject



34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/generators/ahoy/activerecord_generator.rb', line 34

def properties_type
  # use connection_config instead of connection.adapter
  # so database connection isn't needed
  case ActiveRecord::Base.connection_config[:adapter].to_s
  when /postg/i # postgres, postgis
    "jsonb"
  when /mysql/i
    "json"
  else
    "text"
  end
end

#rails5?Boolean

Returns:

  • (Boolean)


47
48
49
# File 'lib/generators/ahoy/activerecord_generator.rb', line 47

def rails5?
  Rails::VERSION::MAJOR >= 5
end