database_consistency

Set up database consistency to enforce matching model and sql constraints
Icons/chart bar
Used 44 times
Created by
T TobiasBales

Usage

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

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

Review the code before running this template on your machine.

def create_bin(name, command = nil)
  create_file "bin/#{name}" do <<~EOF
    #!/usr/bin/env ruby
    APP_ROOT = File.expand_path('..', __dir__)
    Dir.chdir(APP_ROOT) do
      begin
        exec '#{command || name}'
      rescue Errno::ENOENT
        $stderr.puts "#{name} executable was not detected in the system."
        exit 1
      end
    end
  EOF
  end
  `chmod +x bin/#{name}`
end

gem_group :development do
  gem 'database_consistency'
end

Bundler.with_unbundled_env { run 'bundle install' }

system('bundle exec database_consistency install')

create_bin 'database_consistency'
Comments

Sign up or Login to leave a comment.