This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require: | |
- rubocop-rspec | |
AllCops: | |
Include: | |
- '**/Capfile' | |
- '**/Gemfile' | |
- '**/Rakefile' | |
- '**/config.ru' | |
- '**/app/**/*' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set the host name for URL creation | |
SitemapGenerator::Sitemap.default_host = 'http://www.pycosystems.com' | |
SitemapGenerator::Sitemap.create do | |
# Put links creation logic here. | |
# | |
# The root path '/' and sitemap index file are added automatically for you. | |
# Links are added to the Sitemap in the order they are specified. | |
# | |
# Usage: add(path, options={}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/initializers/string.rb | |
class String | |
# TODO: Don't know how to convert to UTF-16BE encoding using built-in methods, and then arrive | |
# at the result similar to: http://api.mvaayoo.com/unicodeutil/unicode.jsp | |
def to_unicode | |
unpack('U*').map { |i| i.to_s(16).rjust(4, '0') }.join | |
end | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/environments/production.rb | |
Rails.application.configure do | |
# Settings specified here will take precedence over those in config/application.rb. | |
config.lograge.enabled = true | |
# add time to lograge | |
config.lograge.custom_options = lambda do |event| | |
{ time: event.time, params: event.payload[:params].except('controller', 'action', 'utf8', 'authenticity_token', 'commit') } | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
RSpec.configure do |config| | |
config.before(:suite) do | |
begin | |
DatabaseCleaner.start | |
setup_biz | |
FactoryBot.lint unless config.files_to_run.one? | |
ensure | |
DatabaseCleaner.clean |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# spec/support/database_cleaner.rb | |
RSpec.configure do |config| | |
config.before(:suite) do | |
DatabaseCleaner.clean_with(:truncation) | |
end | |
config.before(:each, js: true) do | |
DatabaseCleaner.strategy = :truncation | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
To find the blobs taking up the max space: | |
git rev-list --objects --all | grep "$(git verify-pack -v .git/objects/pack/*.idx | sort -k 3 -n | tail -100 | awk '{print$1}')" | |
To delete blobs from history: | |
git filter-branch -f --prune-empty --index-filter 'git rm -rf --cached --ignore-unmatch node_modules/* plugins/* platforms/* resources/ios/* resources/android/*' --tag-name-filter cat -- --all | |
git filter-branch -f --prune-empty --index-filter 'git rm -rf --cached --ignore-unmatch public/assets/*' --tag-name-filter cat -- --all |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# config/application.rb | |
class Application < Rails::Application | |
config.generators do |g| | |
g.orm :active_record | |
g.template_engine :erb | |
g.stylesheets false | |
g.javascripts false | |
g.test_framework :rspec, | |
fixtures: true, | |
view_specs: false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
module ParanoiaHelper | |
extend ActiveSupport::Concern | |
module ClassMethods | |
private | |
# This method generates an instance method with the name: associated_sym.to_s.pluralize. | |
# | |
# Example: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This script has been moved here: https://github.com/vraravam/dotfiles |