Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

igor-arkhipov/performance-improvement-7 #137

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
env:
browser: true
node: true
es6: true
extends: 'eslint:recommended'
globals:
Atomics: readonly
SharedArrayBuffer: readonly
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 2018
sourceType: module
plugins:
- react
rules: {}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ latest.dump
/public/packs-test
/node_modules
config/database.yml
config/influxdb.yml

# Ignore storybook static site generation
storybook-static/
Expand All @@ -52,4 +53,4 @@ package-lock.json
.idea/

#sitemap
/public/sitemap.xml.gz
/public/sitemap.xml.gz
3 changes: 3 additions & 0 deletions .rspec_parallel
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
--format progress
--format ParallelTests::RSpec::RuntimeLogger --out tmp/parallel_runtime_rspec.log
--format ParallelTests::RSpec::SummaryLogger --out tmp/spec_summary.log
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.3
2.7.7
20 changes: 15 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# rubocop:disable LineLength
source "https://rubygems.org"
ruby "2.6.3"
ruby "2.7.7"

# Enforce git to transmitted via https.
# workaround until bundler 2.0 is released.
Expand All @@ -10,6 +10,7 @@ git_source(:github) do |repo_name|
end

group :production do
gem "honeycomb-rails"
gem "nakayoshi_fork"
end

Expand Down Expand Up @@ -50,7 +51,6 @@ gem "front_matter_parser", "~> 0.2"
gem "gemoji", "~> 3.0.0"
gem "gibbon", "~> 2.2"
gem "google-api-client", "~> 0.27"
gem "honeycomb-rails"
gem "html_truncator", "~> 0.4"
gem "httparty", "~> 0.16"
gem "inline_svg", "~> 1.3"
Expand All @@ -65,13 +65,15 @@ gem "omniauth", "~> 1.9"
gem "omniauth-github", "~> 1.3"
gem "omniauth-twitter", "~> 1.4"
gem "pg", "~> 1.1"
gem "prometheus_exporter", "~> 2.0"
gem "pry", "~> 0.12"
gem "pry-rails", "~> 0.3"
gem "puma", "~> 3.12"
gem "pundit", "~> 2.0"
gem "pusher", "~> 1.3"
gem "pusher-push-notifications", "~> 1.0"
gem "rack-host-redirect", "~> 1.3"
gem "rack-mini-profiler", "~> 3.1", require: false
gem "rack-timeout", "~> 0.5"
gem "rails", "~> 5.1.6"
gem "rails-assets-airbrake-js-client", "~> 1.5", source: "https://rails-assets.org"
Expand All @@ -89,7 +91,7 @@ gem "sdoc", "~> 1.0", group: :doc
gem "serviceworker-rails", "~> 0.5"
gem "share_meow_client", "~> 0.1"
gem "sitemap_generator", "~> 6.0"
gem "skylight", "~> 3.1"
gem "skylight", "~> 4.3"
gem "slack-notifier", "~> 2.3"
gem "sprockets", "~> 3.7"
gem "staccato", "~> 0.5"
Expand All @@ -103,6 +105,11 @@ gem "validate_url", "~> 1.0"
gem "webpacker", "~> 3.5"
gem "webpush", "~> 0.3"

group :localproduction, :development do
gem 'meta_request', "~> 0.7"
gem 'newrelic_rpm', "~> 9.6"
end

group :development do
gem "better_errors", "~> 2.5"
gem "binding_of_caller", "~> 0.8"
Expand Down Expand Up @@ -132,7 +139,9 @@ group :development, :test do
gem "rubocop-rspec", "~> 1.31"
gem "spring", "~> 2.0"
gem "spring-commands-rspec", "~> 1.0"
gem "tty-command", "~> 0.10"
gem "vcr", "~> 4.0"
gem "warning", "~> 1.3"
end

group :test do
Expand All @@ -141,17 +150,18 @@ group :test do
gem "database_cleaner", "~> 1.7"
gem "factory_bot_rails", "~> 4.11"
gem "fake_stripe", "~> 0.2"
gem "influxer", "~> 1.4"
gem "launchy", "~> 2.4"
gem "pundit-matchers", "~> 1.6"
gem "rails-controller-testing", "~> 1.0"
gem "ruby-prof", "~> 0.17", require: false
gem "ruby-prof", "~> 1.6", require: false
gem "selenium-webdriver", "~> 3.141"
gem "shoulda-matchers", "4.0.0.rc1", require: false
gem "simplecov", "~> 0.16", require: false
gem "sinatra", "~> 2.0"
gem "stackprof", "~> 0.2", require: false, platforms: :ruby
gem "stripe-ruby-mock", "~> 2.5", require: "stripe_mock"
gem "test-prof", "~> 0.7"
gem "test-prof", "~> 1.3"
gem "timecop", "~> 0.9"
gem "webmock", "~> 3.5"
gem "zonebie", "~> 0.6.1"
Expand Down
Loading