Class: Refinery::DummyGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
core/lib/generators/refinery/dummy/dummy_generator.rb

Constant Summary collapse

PASSTHROUGH_OPTIONS =
[
  :skip_active_record, :skip_javascript, :skip_action_cable, :skip_action_mailer, :skip_active_storage, :database,
  :javascript, :quiet, :pretend, :force, :skip
]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#databaseObject (readonly)

Returns the value of attribute database.



71
72
73
# File 'core/lib/generators/refinery/dummy/dummy_generator.rb', line 71

def database
  @database
end

Class Method Details

.source_pathsObject



10
11
12
13
14
# File 'core/lib/generators/refinery/dummy/dummy_generator.rb', line 10

def self.source_paths
  paths = self.superclass.source_paths
  paths << File.expand_path('../templates', __FILE__)
  paths.flatten
end

Instance Method Details

#generate_test_dummyObject



21
22
23
24
25
26
27
28
29
30
31
32
# File 'core/lib/generators/refinery/dummy/dummy_generator.rb', line 21

def generate_test_dummy
  opts = (options || {}).slice(*PASSTHROUGH_OPTIONS)
  opts[:database] = 'sqlite3' if opts[:database].blank?
  opts[:force] = true
  opts[:skip_bundle] = true
  opts[:skip_action_cable] = true
  opts[:skip_action_mailer] = true
  opts[:skip_active_storage] = true
  opts[:skip_javascript] = true

  invoke Rails::Generators::AppGenerator, [ File.expand_path(dummy_path, destination_root) ], opts
end

#test_dummy_cleanObject



47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'core/lib/generators/refinery/dummy/dummy_generator.rb', line 47

def test_dummy_clean
  inside dummy_path do
    remove_file ".gitignore"
    remove_file "doc"
    remove_file "Gemfile"
    remove_file "lib/tasks"
    remove_file "app/assets/images/rails.png"
    remove_file "public/index.html"
    remove_file "public/robots.txt"
    remove_file "README"
    remove_file "test"
    remove_file "vendor"
  end
end

#test_dummy_configObject



34
35
36
37
38
39
40
41
42
43
44
45
# File 'core/lib/generators/refinery/dummy/dummy_generator.rb', line 34

def test_dummy_config
  @database = options[:database]

  template "rails/database.yml", "#{dummy_path}/config/database.yml", :force => true
  template "rails/boot.rb.erb", "#{dummy_path}/config/boot.rb", :force => true
  template "rails/application.rb.erb", "#{dummy_path}/config/application.rb", :force => true
  template "rails/routes.rb", "#{dummy_path}/config/routes.rb", :force => true
  template "rails/Rakefile", "#{dummy_path}/Rakefile", :force => true
  template "rails/application.js", "#{dummy_path}/app/assets/javascripts/application.js", :force => true
  template 'rails/blank.png', "#{dummy_path}/public/apple-touch-icon.png", :force => true
  template 'rails/blank.png', "#{dummy_path}/public/apple-touch-icon-precomposed.png", :force => true
end

#test_dummy_inherited_templatesObject



62
63
64
65
66
67
68
69
# File 'core/lib/generators/refinery/dummy/dummy_generator.rb', line 62

def test_dummy_inherited_templates
  template "rails/search_form.html.erb",
    "#{dummy_path}/app/views/application/_search_form.html.erb",
    :force => true
  template "rails/searchable.html.erb",
    "#{dummy_path}/app/views/refinery/pages/searchable.html.erb",
    :force => true
end