Skip to content

Commit 46017a5

Browse files
committed
first commit
0 parents  commit 46017a5

File tree

94 files changed

+1858
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+1858
-0
lines changed

.gitignore

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
# Ignore uploaded files in development
21+
/storage/*
22+
!/storage/.keep
23+
24+
/node_modules
25+
/yarn-error.log
26+
27+
/public/assets
28+
.byebug_history
29+
30+
# Ignore master key for decrypting credentials and more.
31+
/config/master.key

.ruby-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ruby-2.6.1

Gemfile

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
source 'https://rubygems.org'
2+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
3+
4+
ruby '2.6.1'
5+
6+
gem 'rails', '~> 5.2.2'
7+
gem 'pg'
8+
gem 'puma', '~> 3.11'
9+
gem 'sass-rails', '~> 5.0'
10+
gem 'uglifier', '>= 1.3.0'
11+
gem 'jbuilder', '~> 2.5'
12+
gem 'discordrb'
13+
gem 'graphql-client'
14+
gem 'awesome_print'
15+
gem 'dry-transaction'
16+
17+
group :development do
18+
gem 'bullet'
19+
gem 'i18n-debug', require: false
20+
gem 'letter_opener_web'
21+
gem 'rubocop', '~> 0.57.2', require: false
22+
gem 'rubycritic', require: false
23+
gem 'listen'
24+
end
25+
26+
group :development, :test, :fakeprod, :realprod do
27+
gem 'figaro'
28+
gem 'better_errors'
29+
gem 'binding_of_caller'
30+
gem 'byebug'
31+
gem 'faker'
32+
gem 'pry'
33+
gem 'pry-byebug'
34+
gem 'pry-rails'
35+
gem 'pry-remote'
36+
gem 'rails-footnotes', require: false
37+
gem 'rails_real_favicon', require: false
38+
gem 'seedbank'
39+
gem 'shog'
40+
end
41+
42+
group :test do
43+
gem 'database_cleaner'
44+
gem 'factory_bot_rails'
45+
gem 'json-schema'
46+
gem 'pundit-matchers'
47+
gem 'rails-controller-testing'
48+
gem 'rspec-rails'
49+
gem 'simplecov', require: false
50+
gem 'timecop', '~> 0.8'
51+
gem 'vcr'
52+
gem 'webmock'
53+
end

0 commit comments

Comments
 (0)