Skip to content

Commit

Permalink
to the good old days
Browse files Browse the repository at this point in the history
  • Loading branch information
Dang Viet Hung committed Aug 4, 2018
0 parents commit fd55c11
Show file tree
Hide file tree
Showing 309 changed files with 47,760 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .gitignore
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
50 changes: 50 additions & 0 deletions Gemfile
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]
Loading

0 comments on commit fd55c11

Please sign in to comment.