Skip to content

Instantly share code, notes, and snippets.

View jdickey's full-sized avatar
💭
Open to possibilities. Enquire within.

Jeff Dickey jdickey

💭
Open to possibilities. Enquire within.
View GitHub Profile

Files to Update

Filename New or Replacement? Gist Raw file
@jdickey
jdickey / Instal myl standard Rails application setup support files.sh
Last active September 26, 2015 10:42
Rails 4.2.4 + Sequel application setup support files.
#!/bin/bash
if [[ ! -f Rakefile || ( ! -f Gemfile ) || ( ! -d test ) ]]; then
echo 'This does not appear to be a Rails project; Gemfile, Rakefile and/or test directory do not exist!'
return 1
fi
echo 'WARNING: This script assumes it is being run against a Rails 4.2.4 application where it is safe to overwrite these files.'
echo ' If that is not the case, you must reapply your changes after this script has completed.'
curl --silent -o .gitignore https://gist.githubusercontent.com/jdickey/04923a3caab597826ca5/raw
curl --silent -o Gemfile https://gist.githubusercontent.com/jdickey/f96de5c6961b697ffb92/raw
require 'test_helper'
describe 'the future' do
it 'works' do
expect(true).must_equal true
end
end
Style/ClassAndModuleChildren:
Enabled: false
Style/TrailingBlankLines:
Enabled: false
NestedIterators:
max_allowed_nesting: 2
ignore_iterators:
- lambda
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
require File.expand_path('../config/application', __FILE__)
if %w(development test).include? Rails.env
require "rake/testtask"
require 'rake/tasklib'
require 'flay_task'
@jdickey
jdickey / My Rails app Gemfile
Last active September 27, 2015 12:40
Gemfile for Rails app, with additions. Note particularly the quality tools, `fortitude`, and use of `thin` as Rack server.
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.4'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use postgresql as the database for Sequel
gem 'pg', '~> 0.18'
gem 'sequel', '~> 4.24'
# gem 'sequel_pg', '~> 1.6'
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config.
/.bundle
# Ignore all logfiles and tempfiles.

Attached is the terminal output from running brew install qt5 per PR #43917 for Homebrew.

Output from Possibly Relevant Informational Commands

xcode-select -p

/Applications/Xcode.app/Contents/Developer