House
Date Built (date)
Address (string)
City (string)
Active (boolean)
This file contains 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
0-mail.com | |
007addict.com | |
020.co.uk | |
027168.com | |
0815.ru | |
0815.su | |
0clickemail.com | |
0sg.net | |
0wnd.net | |
0wnd.org |
This file contains 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
namespace :graphql do | |
def write_update_file(filename, content) | |
return puts("-- #{filename}") if File.exist?(filename) && File.read(filename) == content | |
puts "Updating #{filename}" | |
File.open(filename, 'w') { |file| file << content } | |
end | |
task dump_schema: :environment do | |
system 'mkdir -p tmp/graphql' |
This file contains 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
# 1: Use ruby 2.3.3 as base: | |
FROM ruby:2.3.3 | |
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev | |
# 2: We'll set the application path as the working directory | |
WORKDIR /usr/src/app | |
# 3: We'll set the working dir as HOME and add the app's binaries path to $PATH: | |
ENV HOME=/usr/src/app PATH=/usr/src/app/bin:$PATH |
This file contains 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
class PersonaSession | |
include Capybara::DSL | |
include Capybara::Email::DSL | |
# override to stop usage of global current_session | |
def page | |
@page ||= Capybara::Session.new(Capybara.current_driver, Capybara.app) | |
end | |
def click_link_in_email(link_name) |
This file contains 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
@next_upgrade ||= false | |
source 'https://rubygems.org' | |
if @next_upgrade | |
gem 'rails', '6.0.0.rc2' | |
else | |
gem 'rails', '~> 5.2.0' | |
end | |
# rest of gems below .... |