-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
vitalie
committed
Jul 10, 2023
1 parent
a7c0a75
commit 16e4c48
Showing
11 changed files
with
223 additions
and
151 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,45 @@ | ||
*.md | ||
# Ignore docker files | ||
.dockerignore | ||
Dockerfile* | ||
docker-compose* | ||
|
||
# Ignore .git | ||
/.git | ||
.gitignore | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
vendor/bundle | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
.env | ||
.env.* | ||
.git | ||
.gitignore | ||
|
||
.travis.yml | ||
Dockerfile | ||
|
||
*.md | ||
|
||
spec | ||
#IDEs folders | ||
.idea | ||
|
||
migration.log | ||
|
||
# Ignore editor specific configs | ||
/.idea | ||
/.vscode | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
.generators | ||
.rakeTasks | ||
|
||
# System Files | ||
.DS_Store | ||
Thumbs.db |
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,12 +1,36 @@ | ||
.bundle | ||
.ruby-gemset | ||
log | ||
*.gem | ||
vendor | ||
# See https://help.github.com/articles/ignoring-files for more about ignoring files. | ||
# | ||
# If you find yourself ignoring temporary files generated by your text editor | ||
# or operating system, you probably want to add a global ignore instead: | ||
# git config --global core.excludesfile '~/.gitignore_global' | ||
|
||
# Ignore bundler config. | ||
/.bundle | ||
vendor/bundle | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
.env | ||
.env.* | ||
|
||
#IDEs | ||
.idea | ||
migration.log | ||
|
||
# Ignore editor specific configs | ||
/.idea | ||
/.vscode | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
.generators | ||
.rakeTasks | ||
|
||
.history | ||
# System Files | ||
.DS_Store | ||
Thumbs.db |
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,10 @@ | ||
source 'https://rubygems.org' | ||
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | ||
|
||
ruby '2.5.9' | ||
|
||
gem 'rails', '~> 5.2' | ||
gem 'pg', '~> 1.0' | ||
gem 'rails', '~> 5.2.8' | ||
gem 'pg', '>= 0.18', '< 2.0' | ||
gem 'rake' | ||
gem 'rspec', '~>3.4' | ||
gem 'rspec' | ||
gem 's3' |
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
Oops, something went wrong.