-
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.
- Loading branch information
Dang Viet Hung
committed
Aug 4, 2018
0 parents
commit fd55c11
Showing
309 changed files
with
47,760 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 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 | ||
|
||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
/node_modules | ||
/yarn-error.log | ||
|
||
.byebug_history | ||
|
||
# Ignore application configuration | ||
/config/application.yml | ||
|
||
config/settings.local.yml | ||
config/settings/*.local.yml | ||
config/environments/*.local.yml |
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 |
---|---|---|
@@ -0,0 +1,50 @@ | ||
source "https://rubygems.org" | ||
|
||
git_source(:github) do |repo_name| | ||
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/") | ||
"https://github.com/#{repo_name}.git" | ||
end | ||
|
||
gem "bcrypt" | ||
gem "bootstrap-datepicker-rails" | ||
gem "bootstrap-kaminari-views" | ||
gem "bootstrap-sass", "3.3.7" | ||
gem "bootstrap_progressbar" | ||
gem "coffee-rails", "~> 4.2" | ||
gem "config" | ||
gem "figaro" | ||
gem "font-awesome-rails" | ||
gem "jbuilder", "~> 2.5" | ||
gem "jquery-rails", "~> 4.3", ">= 4.3.1" | ||
gem "kaminari" | ||
gem "mysql2" | ||
gem "puma", "~> 3.7" | ||
gem "rails", "~> 5.1.6" | ||
gem "sass-rails", "~> 5.0" | ||
gem "sqlite3" | ||
gem "time_difference", "~> 0.7.0" | ||
gem "turbolinks", "~> 5" | ||
gem "ransack" | ||
gem "uglifier", ">= 1.3.0" | ||
gem "carrierwave" | ||
gem "mini_magick" | ||
gem "omniauth" | ||
gem "omniauth-facebook" | ||
gem "omniauth-google-oauth2" | ||
gem "ckeditor" | ||
|
||
|
||
group :development, :test do | ||
gem "byebug", platforms: [:mri, :mingw, :x64_mingw] | ||
gem "capybara", "~> 2.13" | ||
gem "selenium-webdriver" | ||
end | ||
|
||
group :development do | ||
gem "web-console", ">= 3.3.0" | ||
gem "listen", ">= 3.0.5", "< 3.2" | ||
gem "spring" | ||
gem "spring-watcher-listen", "~> 2.0.0" | ||
end | ||
|
||
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
Oops, something went wrong.