-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed lint errors for event data (#123)
* Fixed lint errors * Revert "Fixed lint errors" This reverts commit e7d3c67. * Fixed lint errors * Fixed lint errors in recently added files
- Loading branch information
1 parent
5863be7
commit a0a12d8
Showing
25 changed files
with
424 additions
and
415 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,64 @@ | ||
# frozen_string_literal: true | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '6.0' | ||
gem 'bootsnap', '~> 1.2', '>= 1.2.1' | ||
gem 'dotenv' | ||
gem "oj", ">= 2.8.3" | ||
gem "oj_mimic_json", "~> 1.0", ">= 1.0.1" | ||
gem 'equivalent-xml', '~> 0.6.0' | ||
gem 'nokogiri', '~> 1.13.2' | ||
gem 'iso8601', '~> 0.9.0' | ||
gem 'maremma', '~> 4.9.6' | ||
source "https://rubygems.org" | ||
|
||
gem "active_model_serializers", "~> 0.10.0" | ||
gem "api-pagination" | ||
gem "aws-sdk-sqs", "~> 1.3" | ||
gem "bcrypt", "~> 3.1.7" | ||
gem "bolognese", "~> 1.11.5" | ||
gem "bootsnap", "~> 1.2", ">= 1.2.1" | ||
gem "cancancan", "~> 2.0" | ||
gem "countries", "~> 2.1", ">= 2.1.2" | ||
gem "country_select", "~> 3.1" | ||
gem "dalli", "~> 2.7.6" | ||
gem "dotenv" | ||
gem "equivalent-xml", "~> 0.6.0" | ||
gem "facets", require: false | ||
gem "faraday_middleware-aws-sigv4", "~> 0.2.4" | ||
gem "git", "~> 1.5" | ||
gem "iso8601", "~> 0.9.0" | ||
gem "jwt" | ||
gem "kaminari", "~> 1.0", ">= 1.0.1" | ||
gem "lograge", "~> 0.11.2" | ||
gem "logstash-event", "~> 1.2", ">= 1.2.02" | ||
gem "logstash-logger", "~> 0.26.1" | ||
gem 'sentry-raven', '~> 2.9' | ||
gem 'active_model_serializers', '~> 0.10.0' | ||
gem 'jwt' | ||
gem 'bcrypt', '~> 3.1.7' | ||
gem 'simple_command' | ||
gem 'kaminari', '~> 1.0', '>= 1.0.1' | ||
gem 'api-pagination' | ||
gem 'cancancan', '~> 2.0' | ||
gem 'country_select', '~> 3.1' | ||
gem 'countries', '~> 2.1', '>= 2.1.2' | ||
gem "facets", require: false | ||
gem "bolognese", "~> 1.11.5" | ||
gem "maremma", "~> 4.9.6" | ||
gem "nokogiri", "~> 1.13.2" | ||
gem "oj", ">= 2.8.3" | ||
gem "oj_mimic_json", "~> 1.0", ">= 1.0.1" | ||
gem "rack-cors", "~> 1.0", require: "rack/cors" | ||
gem "rack-utf8_sanitizer", "~> 1.6" | ||
gem "rails", "6.0" | ||
gem "sentry-raven", "~> 2.9" | ||
gem "shoryuken", "~> 4.0" | ||
gem 'rack-cors', '~> 1.0', :require => 'rack/cors' | ||
gem 'rack-utf8_sanitizer', '~> 1.6' | ||
gem 'slack-notifier', '~> 2.3', '>= 2.3.2' | ||
gem 'aws-sdk-sqs', '~> 1.3' | ||
gem 'faraday_middleware-aws-sigv4', '~> 0.2.4' | ||
gem 'git', '~> 1.5' | ||
gem "simple_command" | ||
gem "slack-notifier", "~> 2.3", ">= 2.3.2" | ||
gem "sprockets", "~> 3.7", ">= 3.7.2" | ||
|
||
group :development, :test do | ||
gem 'rspec-rails', '~> 3.5', '>= 3.5.2' | ||
gem "better_errors" | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
gem 'rubocop', '~> 0.77.0' | ||
gem 'rubocop-performance', '~> 1.5', '>= 1.5.1' | ||
gem 'rubocop-rails', '~> 2.4' | ||
gem "byebug", platforms: %i[mri mingw x64_mingw] | ||
gem "rspec-rails", "~> 3.5", ">= 3.5.2" | ||
gem "rubocop", "~> 0.77.0" | ||
gem "rubocop-performance", "~> 1.5", ">= 1.5.1" | ||
gem "rubocop-rails", "~> 2.4" | ||
end | ||
|
||
group :development do | ||
gem 'listen', '>= 3.0.5', '< 3.2' | ||
gem 'spring' | ||
gem 'spring-watcher-listen', '~> 2.0.0' | ||
gem "listen", ">= 3.0.5", "< 3.2" | ||
gem "spring" | ||
gem "spring-watcher-listen", "~> 2.0.0" | ||
end | ||
|
||
group :test do | ||
gem 'capybara' | ||
gem 'webmock', '~> 3.1' | ||
gem 'vcr', '~> 5.1' | ||
gem 'codeclimate-test-reporter', '~> 1.0.0' | ||
gem 'simplecov' | ||
gem 'shoulda-matchers', '~> 4.1', '>= 4.1.2' | ||
gem 'rubocop-rspec', '~> 1.28' | ||
gem 'faker' | ||
gem 'factory_bot_rails', '~> 4.8', '>= 4.8.2' | ||
gem "capybara" | ||
gem "codeclimate-test-reporter", "~> 1.0.0" | ||
gem "factory_bot_rails", "~> 4.8", ">= 4.8.2" | ||
gem "faker" | ||
gem "rubocop-rspec", "~> 1.28" | ||
gem "shoulda-matchers", "~> 4.1", ">= 4.1.2" | ||
gem "simplecov" | ||
gem "vcr", "~> 5.1" | ||
gem "webmock", "~> 3.1" | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# 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_relative 'config/application' | ||
require_relative "config/application" | ||
|
||
Rails.application.load_tasks |
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
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env ruby | ||
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) | ||
load Gem.bin_path('bundler', 'bundle') | ||
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__) | ||
load Gem.bin_path("bundler", "bundle") |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/usr/bin/env ruby | ||
begin | ||
load File.expand_path('../spring', __FILE__) | ||
load File.expand_path("spring", __dir__) | ||
rescue LoadError => e | ||
raise unless e.message.include?('spring') | ||
raise unless e.message.include?("spring") | ||
end | ||
APP_PATH = File.expand_path('../config/application', __dir__) | ||
require_relative '../config/boot' | ||
require 'rails/commands' | ||
APP_PATH = File.expand_path("../config/application", __dir__) | ||
require_relative "../config/boot" | ||
require "rails/commands" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/usr/bin/env ruby | ||
begin | ||
load File.expand_path('../spring', __FILE__) | ||
load File.expand_path("spring", __dir__) | ||
rescue LoadError => e | ||
raise unless e.message.include?('spring') | ||
raise unless e.message.include?("spring") | ||
end | ||
require_relative '../config/boot' | ||
require 'rake' | ||
require_relative "../config/boot" | ||
require "rake" | ||
Rake.application.run |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# This file is used by Rack-based servers to start the application. | ||
|
||
require_relative 'config/environment' | ||
require_relative "config/environment" | ||
|
||
run Rails.application |
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
Oops, something went wrong.