Class: Cardio::Generators::Deck::DeckGenerator

Inherits:
Rails::Generators::AppBase
  • Object
show all
Extended by:
ClassMethods
Includes:
Cardio::Generators::DeckHelper, RailsOverrides
Defined in:
lib/generators/deck/deck_generator.rb

Overview

Create new Decks (Decko Applications)

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ClassMethods

banner, banner_command, namespace, source_root

Class Method Details



48
49
50
# File 'lib/generators/deck/deck_generator.rb', line 48

def self.banner
  "#{banner_command} new #{arguments.map(&:usage).join(' ')} [options]"
end

Instance Method Details

#configObject



76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/generators/deck/deck_generator.rb', line 76

def config
  inside "config" do
    erb_template "application.rb"
    erb_template "routes.rb"
    erb_template "environment.rb"
    erb_template "boot.rb"

    template "databases/#{options[:database]}.yml", "database.yml"
    template "cucumber.yml"
    template "storage.yml"
    template "puma.rb"
    # template "initializers/cypress.rb" if platypus?
  end
end

#core_filesObject

Generator works its way through each public method below



54
55
56
57
58
59
60
61
62
63
# File 'lib/generators/deck/deck_generator.rb', line 54

def core_files
  erb_template "config.ru"
  erb_template "Gemfile"
  erb_template "Rakefile"

  # return unless platypus?
  #
  # erb_template "cypress.json"
  # template "package.json"
end

#dotfilesObject



69
70
71
72
73
74
# File 'lib/generators/deck/deck_generator.rb', line 69

def dotfiles
  copy_file "pryrc", ".pryrc"
  copy_file "gitignore", ".gitignore"
  template "rspec.erb", ".rspec"
  template "simplecov.rb.erb", ".simplecov"
end

#empty_dirsObject



65
66
67
# File 'lib/generators/deck/deck_generator.rb', line 65

def empty_dirs
  %w[mod log files tmp].each { |dirname| empty_directory_with_keep_file dirname }
end

#publicObject



91
92
93
94
95
96
# File 'lib/generators/deck/deck_generator.rb', line 91

def public
  inside "public" do
    template "robots.txt"
    inside("files") { template "htaccess", ".htaccess" }
  end
end

#scriptObject



102
103
104
105
# File 'lib/generators/deck/deck_generator.rb', line 102

def script
  directory("script") { |content| "#{shebang}\n" + content }
  chmod "script", 0o755 & ~File.umask, verbose: false
end

#seed_dataObject



120
121
122
123
124
125
126
127
128
129
130
# File 'lib/generators/deck/deck_generator.rb', line 120

def seed_data
  if options["interactive"]
    Interactive.new(destination_root, (monkey? || platypus?)).run
  else
    prefix = "bundle exec " if options["platypus"]
    puts "Now:
      1. Run `cd #{File.basename(destination_root)}` to enter your new deck directory
      2. Run `#{prefix}decko seed` to seed your database (see config/database.yml).
      3. Run `#{prefix}decko server` to start your server"
  end
end

#specObject



107
108
109
110
111
112
113
114
115
116
# File 'lib/generators/deck/deck_generator.rb', line 107

def spec
  inside "spec" do
    if platypus?
      jasmine_yml :decko
    else
      jasmine_yml :deck
      template "spec_helper.rb"
    end
  end
end

#springObject



98
99
100
# File 'lib/generators/deck/deck_generator.rb', line 98

def spring
  inside("bin") { erb_template "spring" }
end