Fixed rubocop messages
This commit is contained in:
@@ -10,7 +10,7 @@ guard "brakeman", run_on_start: true do
|
|||||||
end
|
end
|
||||||
|
|
||||||
guard :shell do
|
guard :shell do
|
||||||
watch(%r{^Gemfile|Gemfile.lock$}) { system("bundle-audit")}
|
watch(%r{^Gemfile|Gemfile.lock$}) { system("bundle-audit") }
|
||||||
end
|
end
|
||||||
|
|
||||||
guard "livereload", host: "railsgoat.dev", port: "35727" do
|
guard "livereload", host: "railsgoat.dev", port: "35727" do
|
||||||
@@ -23,7 +23,7 @@ guard "livereload", host: "railsgoat.dev", port: "35727" do
|
|||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
guard :rspec, cmd: 'bundle exec rspec' do
|
guard :rspec, cmd: "bundle exec rspec" do
|
||||||
watch(%r{^spec/.+_spec\.rb$})
|
watch(%r{^spec/.+_spec\.rb$})
|
||||||
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
|
||||||
watch("spec/spec_helper.rb") { "spec" }
|
watch("spec/spec_helper.rb") { "spec" }
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class PayController < ApplicationController
|
|||||||
|
|
||||||
msg = true if pay.save!
|
msg = true if pay.save!
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.json {render json: {msg: msg } }
|
format.json { render json: {msg: msg } }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@ class PayController < ApplicationController
|
|||||||
def decrypted_bank_acct_num
|
def decrypted_bank_acct_num
|
||||||
decrypted = Encryption.decrypt_sensitive_value(params[:value_to_decrypt])
|
decrypted = Encryption.decrypt_sensitive_value(params[:value_to_decrypt])
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.json {render json: {account_num: decrypted || "No Data" }}
|
format.json { render json: {account_num: decrypted || "No Data" } }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ class ScheduleController < ApplicationController
|
|||||||
end
|
end
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.json {render json: {msg: message ? "success" : "failure" }}
|
format.json { render json: {msg: message ? "success" : "failure" } }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
class Analytics < ApplicationRecord
|
class Analytics < ApplicationRecord
|
||||||
scope :hits_by_ip, ->(ip, col = "*") { select("#{col}").where(ip_address: ip).order("id DESC")}
|
scope :hits_by_ip, ->(ip, col = "*") { select("#{col}").where(ip_address: ip).order("id DESC") }
|
||||||
|
|
||||||
def self.count_by_col(col)
|
def self.count_by_col(col)
|
||||||
calculate(:count, col)
|
calculate(:count, col)
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
class CreateAnalytics < ActiveRecord::Migration[4.2]
|
class CreateAnalytics < ActiveRecord::Migration[4.2]
|
||||||
def change
|
def change
|
||||||
create_table :analytics do |t|
|
create_table :analytics do |t|
|
||||||
t.string :ip_address
|
t.string :ip_address
|
||||||
t.string :referrer
|
t.string :referrer
|
||||||
t.string :user_agent
|
t.string :user_agent
|
||||||
t.timestamps
|
t.timestamps
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
# This file is auto-generated from the current state of the database. Instead
|
# This file is auto-generated from the current state of the database. Instead
|
||||||
# of editing this file, please use the migrations feature of Active Record to
|
# of editing this file, please use the migrations feature of Active Record to
|
||||||
# incrementally modify your database, and then regenerate this schema definition.
|
# incrementally modify your database, and then regenerate this schema definition.
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ class WarningSuppressor
|
|||||||
private
|
private
|
||||||
|
|
||||||
def ignore?(message)
|
def ignore?(message)
|
||||||
IGNORE_PATTERNS.any? {|regexp| message =~ regexp }
|
IGNORE_PATTERNS.any? { |regexp| message =~ regexp }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user