Class: Ahoy::Generators::ActiverecordGenerator

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

Instance Method Summary collapse

Instance Method Details

#copy_templatesObject



11
12
13
14
15
16
17
# File 'lib/generators/ahoy/activerecord_generator.rb', line 11

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
  puts "\nAlmost set! Last, run:\n\n    rails db:migrate"
end

#migration_versionObject



36
37
38
# File 'lib/generators/ahoy/activerecord_generator.rb', line 36

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

#properties_typeObject



19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/generators/ahoy/activerecord_generator.rb', line 19

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

#rails52?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/generators/ahoy/activerecord_generator.rb', line 32

def rails52?
  ActiveRecord::VERSION::STRING >= "5.2"
end