Remove unnecessary empty lines

This commit is contained in:
Hakan Ensari 2017-01-09 01:31:12 +00:00
parent 6f62b73704
commit 7504abe6b4
14 changed files with 0 additions and 14 deletions

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
source 'http://rubygems.org'
ruby '2.4.0'

View File

@ -1,3 +1,2 @@
# frozen_string_literal: true
Dir.glob('lib/tasks/*.rake').each { |r| import r }

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
require_relative 'app'
$LOAD_PATH << App.root.join('lib')
Dir[App.root.join('config/initializers/*.rb')].each { |f| require f }

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
require 'pg'
require 'sequel'

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
job_type :rake, 'cd :path && foreman run bundle exec rake :task --silent :output'
every '*/15 13,14,15,16,17 * * 1-5' do

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
worker_process_count = (ENV['WORKER_PROCESSES'] || 4).to_i
preload_app true

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
class Currency < Sequel::Model
dataset_module do
def recent

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
require 'currency'
class Quote

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
namespace :db do
desc 'Create db'
task :create do

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
task :environment do
require './config/environment'
end

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
namespace :rates do
task setup: :environment do
require 'currency'

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
return unless ENV['RACK_ENV'] == 'test'
require 'rake/testtask'

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
require_relative 'helper'
require 'currency'

View File

@ -1,5 +1,4 @@
# frozen_string_literal: true
require_relative 'helper'
require 'quote'