annotate

Public
installs annotate gem
Icons/chart bar
Used 15 times
Created by
J Javier Lafora

Usage

Run this command in your Rails app directory in the terminal:

rails app:template LOCATION="https://railsbytes.com/script/VD7s0l"
Template Source

Review the code before running this template on your machine.

def do_bundle
  Bundler.with_original_env { run "bundle install" }
end

def do_commit
  git :init
  git add: "."
  git commit: " -m 'Adds annotate' "
end

say "\nInstalling annotate..."
inject_into_file 'Gemfile', after: 'group :development do' do
  <<-RUBY

  gem "annotate"
  RUBY
end

do_bundle

generate "annotate:install"

run "bundle binstubs annotate"

do_commit
Comments

Sign up or Login to leave a comment.