Module: GenericApp
- Defined in:
- lib/generic_app.rb,
lib/generic_app/version.rb
Constant Summary collapse
- VERSION =
"1.0.2"
Class Method Summary collapse
- .add(subdir_name) ⇒ Object
- .add_to_file_always(filename, str) ⇒ Object
-
.add_to_file_if(filename, str) ⇒ Object
Add to file if not already present.
- .copy_scripts(subdir_name) ⇒ Object
-
.create_new(subdir_name, email) ⇒ Object
Create app, stick with SQLite database in development.
- .email_update(subdir_name, email) ⇒ Object
- .git_clone(subdir_name) ⇒ Object
- .git_init(subdir_name) ⇒ Object
Class Method Details
.add(subdir_name) ⇒ Object
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/generic_app.rb', line 47 def self.add (subdir_name) self.add_to_file_if("#{subdir_name}/.gitignore", 'tmp*') self.add_to_file_if("#{subdir_name}/.gitignore", '.DS_Store') self.add_to_file_if("#{subdir_name}/.gitignore", 'notes/*.dot') self.add_to_file_if("#{subdir_name}/.gitignore", 'notes/*.svg') self.add_to_file_if("#{subdir_name}/.gitignore", 'gemsurance_report.html') path_gemfile = "#{subdir_name}/Gemfile" self.add_to_file_always(path_gemfile, '# Gems added by generic_app') self.add_to_file_always(path_gemfile, 'group :development, :test do') self.add_to_file_if(path_gemfile, "gem 'sandi_meter'") StringInFile.replace("gem 'sandi_meter'", " gem 'sandi_meter'", path_gemfile) self.add_to_file_if(path_gemfile, "gem 'brakeman'") StringInFile.replace("gem 'brakeman'", " gem 'brakeman'", path_gemfile) self.add_to_file_if(path_gemfile, "gem 'bundler-audit'") StringInFile.replace("gem 'bundler-audit'", " gem 'bundler-audit'", path_gemfile) self.add_to_file_if(path_gemfile, "gem 'rails-erd'") StringInFile.replace("gem 'rails-erd'", " gem 'rails-erd'", path_gemfile) self.add_to_file_if(path_gemfile, "gem 'railroady'") StringInFile.replace("gem 'railroady'", " gem 'railroady'", path_gemfile) self.add_to_file_if(path_gemfile, "gem 'annotate'") StringInFile.replace("gem 'annotate'", " gem 'annotate'", path_gemfile) self.add_to_file_if(path_gemfile, "gem 'gemsurance'") StringInFile.replace("gem 'gemsurance'", " gem 'gemsurance'", path_gemfile) self.add_to_file_always(path_gemfile, 'end') self.copy_scripts (subdir_name) LineContaining.delete('***', "#{subdir_name}/test_code.sh") LineContaining.delete('rubocop', "#{subdir_name}/test_code.sh") LineContaining.delete('rails_best_practices', "#{subdir_name}/test_code.sh") LineContaining.delete('metric_fu', "#{subdir_name}/test_code.sh") end |
.add_to_file_always(filename, str) ⇒ Object
81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/generic_app.rb', line 81 def self.add_to_file_always (filename, str) puts '------------------------------------' puts "Updating #{filename} (adding #{str})" text_from_file = File.read(filename) last_char = text_from_file[-1] open(filename, 'a') { |f| if last_char != "\n" f.puts "\n" end f.puts "\n#{str}" } end |
.add_to_file_if(filename, str) ⇒ Object
Add to file if not already present
95 96 97 98 99 |
# File 'lib/generic_app.rb', line 95 def self.add_to_file_if (filename, str) if StringInFile.present(str, filename) == false self.add_to_file_always(filename, str) end end |
.copy_scripts(subdir_name) ⇒ Object
101 102 103 104 105 106 107 108 109 110 |
# File 'lib/generic_app.rb', line 101 def self.copy_scripts (subdir_name) puts "----------------------------------------------" puts "Adding scripts and config/database-pg.yml file" dir_template = "#{ENV['DIR_PARENT']}/high_speed_rails_clobbers_not_exactly" self.git_clone (dir_template) system("cp -r #{dir_template}/*.sh #{subdir_name}") system("cp -r #{dir_template}/*.rb #{subdir_name}") system("cp -r #{dir_template}/config/database-pg.yml #{subdir_name}/config") system("rm -rf #{dir_template}") end |
.create_new(subdir_name, email) ⇒ Object
Create app, stick with SQLite database in development
12 13 14 15 16 |
# File 'lib/generic_app.rb', line 12 def self.create_new (subdir_name, email) self.git_clone (subdir_name) self.email_update(subdir_name, email) self.git_init (subdir_name) end |
.email_update(subdir_name, email) ⇒ Object
27 28 29 30 31 |
# File 'lib/generic_app.rb', line 27 def self.email_update (subdir_name, email) email_orig = '[email protected]' path_of_email = "#{subdir_name}/config/initializers/devise.rb" StringInFile.replace(email_orig, email, path_of_email) end |
.git_clone(subdir_name) ⇒ Object
18 19 20 21 22 23 24 25 |
# File 'lib/generic_app.rb', line 18 def self.git_clone (subdir_name) puts "------------------------------------" puts "Downloading the Generic App Template" t1 = Thread.new { system("git clone https://github.com/jhsu802701/generic_app_template.git #{subdir_name}") } t1.join end |
.git_init(subdir_name) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/generic_app.rb', line 33 def self.git_init (subdir_name) puts "----------------" puts "Initializing Git" t1 = Thread.new { $stdout = File.new( '/dev/null', 'w' ) system("cd #{subdir_name} && rm -rf .git") system("cd #{subdir_name} && git init") system("cd #{subdir_name} && git add .") system("cd #{subdir_name} && git commit -m 'Initial commit' >/dev/null") $stdout = STDOUT } t1.join end |