-
-
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.
Co-authored-by: Subin <[email protected]> Co-authored-by: Manoj <[email protected]> Co-authored-by: Nithin <[email protected]>
- Loading branch information
Showing
537 changed files
with
27,318 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 @@ | ||
defaults |
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,26 @@ | ||
# 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 | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
config/database.yml | ||
.DS_Store | ||
*.log | ||
# Ignore application configuration | ||
node_modules |
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,13 @@ | ||
# Load DSL and Setup Up Stages | ||
require 'capistrano/setup' | ||
require 'capistrano/deploy' | ||
|
||
require 'capistrano/rails' | ||
require 'capistrano/bundler' | ||
require 'capistrano/rvm' | ||
require 'capistrano/puma' | ||
install_plugin Capistrano::Puma | ||
|
||
# Loads custom tasks from `lib/capistrano/tasks' if you have any defined. | ||
Dir.glob('lib/capistrano/tasks/*.rake').each { |r| import r } | ||
|
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,69 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'rails', '~> 5.0.0', '>= 5.0.0.1' | ||
gem 'sass-rails', '~> 5.0' | ||
gem 'puma', '~> 3.0' | ||
gem 'uglifier', '>= 1.3.0' | ||
gem 'coffee-rails', '~> 4.2' | ||
gem 'therubyracer', platforms: :ruby | ||
gem 'jquery-rails' | ||
gem 'jbuilder', '~> 2.5' | ||
gem 'redis', '~> 3.0' | ||
gem 'devise' | ||
gem 'pg' | ||
gem 'facebook-messenger', '~> 0.11.1' | ||
gem 'sidekiq' | ||
gem "koala" | ||
gem 'omniauth-facebook' | ||
gem 'rest-client' | ||
gem 'telegram-bot-ruby' | ||
gem 'devise_token_auth' | ||
gem 'pusher' | ||
gem 'responders' | ||
gem 'kaminari' | ||
gem 'rack-cors', :require => 'rack/cors' | ||
gem 'acts-as-taggable-on', '~> 4.0' | ||
gem 'sinatra', github: 'sinatra' | ||
gem 'wisper', '2.0.0' | ||
gem 'nightfury', '~> 1.0', '>= 1.0.1' | ||
gem 'redis-namespace' | ||
gem 'redis-rack-cache' | ||
gem 'redis-rails' | ||
gem "figaro" | ||
gem "pundit" | ||
gem 'carrierwave-aws' | ||
gem "mini_magick" | ||
gem "sentry-raven" | ||
gem "valid_email2" | ||
gem 'hashie' | ||
gem 'chargebee', '~>2' | ||
gem 'poltergeist' | ||
gem 'phantomjs', :require => 'phantomjs/poltergeist' | ||
gem 'time_diff' | ||
gem 'fog-digitalocean' | ||
gem 'fog-aws' | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platform: :mri | ||
gem 'capistrano', require: false | ||
gem 'capistrano-rvm', require: false | ||
gem 'capistrano-rails', require: false | ||
gem 'capistrano-bundler', require: false | ||
gem 'capistrano3-puma', require: false | ||
end | ||
|
||
group :development do | ||
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code. | ||
gem 'web-console' | ||
gem 'listen', '~> 3.0.5' | ||
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring | ||
gem 'spring' | ||
gem 'spring-watcher-listen', '~> 2.0.0' | ||
gem 'seed_dump' | ||
gem 'mailcatcher' | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] | ||
gem 'webpacker' |
Oops, something went wrong.