-
Notifications
You must be signed in to change notification settings - Fork 2
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
Yury Dymov
committed
Aug 7, 2016
1 parent
04d24de
commit 5804a0b
Showing
65 changed files
with
1,017 additions
and
56 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,42 +1,22 @@ | ||
*.rbc | ||
capybara-*.html | ||
.rspec | ||
/log | ||
/tmp | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
/public/system | ||
/coverage/ | ||
/spec/tmp | ||
**.orig | ||
rerun.txt | ||
pickle-email-*.html | ||
|
||
# TODO Comment out these rules if you are OK with secrets being uploaded to the repo | ||
config/initializers/secret_token.rb | ||
config/secrets.yml | ||
|
||
# dotenv | ||
# TODO Comment out this rule if environment variables can be committed | ||
.env | ||
# 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' | ||
|
||
## Environment normalization: | ||
# Ignore bundler config. | ||
/.bundle | ||
/vendor/bundle | ||
|
||
# these should all be checked in to normalize the environment: | ||
# Gemfile.lock, .ruby-version, .ruby-gemset | ||
|
||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: | ||
.rvmrc | ||
|
||
# if using bower-rails ignore default bower_components path bower.json files | ||
/vendor/assets/bower_components | ||
*.bowerrc | ||
bower.json | ||
# Ignore the default SQLite database. | ||
/db/*.sqlite3 | ||
/db/*.sqlite3-journal | ||
|
||
# Ignore pow environment settings | ||
.powenv | ||
# Ignore all logfiles and tempfiles. | ||
/log/* | ||
/tmp/* | ||
!/log/.keep | ||
!/tmp/.keep | ||
|
||
# Ignore Byebug command history file. | ||
.byebug_history | ||
._* |
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,43 @@ | ||
source 'https://rubygems.org' | ||
|
||
|
||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '~> 5.0.0' | ||
# Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | ||
# Use Puma as the app server | ||
gem 'puma', '~> 3.0' | ||
|
||
gem 'devise' | ||
gem 'devise_token_auth' | ||
|
||
gem 'omniauth' | ||
gem 'omniauth-github' | ||
|
||
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | ||
# gem 'jbuilder', '~> 2.5' | ||
# Use Redis adapter to run Action Cable in production | ||
# gem 'redis', '~> 3.0' | ||
# Use ActiveModel has_secure_password | ||
# gem 'bcrypt', '~> 3.1.7' | ||
|
||
# Use Capistrano for deployment | ||
# gem 'capistrano-rails', group: :development | ||
|
||
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible | ||
gem 'rack-cors' | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platform: :mri | ||
end | ||
|
||
group :development do | ||
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' | ||
end | ||
|
||
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem | ||
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] |
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,176 @@ | ||
GEM | ||
remote: http://rubygems.org/ | ||
specs: | ||
actioncable (5.0.0) | ||
actionpack (= 5.0.0) | ||
nio4r (~> 1.2) | ||
websocket-driver (~> 0.6.1) | ||
actionmailer (5.0.0) | ||
actionpack (= 5.0.0) | ||
actionview (= 5.0.0) | ||
activejob (= 5.0.0) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 2.0) | ||
actionpack (5.0.0) | ||
actionview (= 5.0.0) | ||
activesupport (= 5.0.0) | ||
rack (~> 2.0) | ||
rack-test (~> 0.6.3) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (5.0.0) | ||
activesupport (= 5.0.0) | ||
builder (~> 3.1) | ||
erubis (~> 2.7.0) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
activejob (5.0.0) | ||
activesupport (= 5.0.0) | ||
globalid (>= 0.3.6) | ||
activemodel (5.0.0) | ||
activesupport (= 5.0.0) | ||
activerecord (5.0.0) | ||
activemodel (= 5.0.0) | ||
activesupport (= 5.0.0) | ||
arel (~> 7.0) | ||
activesupport (5.0.0) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
arel (7.1.1) | ||
bcrypt (3.1.11) | ||
builder (3.2.2) | ||
byebug (9.0.5) | ||
concurrent-ruby (1.0.2) | ||
devise (4.2.0) | ||
bcrypt (~> 3.0) | ||
orm_adapter (~> 0.1) | ||
railties (>= 4.1.0, < 5.1) | ||
responders | ||
warden (~> 1.2.3) | ||
devise_token_auth (0.1.38) | ||
devise (> 3.5.2, <= 4.2) | ||
rails (< 6) | ||
erubis (2.7.0) | ||
faraday (0.9.2) | ||
multipart-post (>= 1.2, < 3) | ||
ffi (1.9.14) | ||
globalid (0.3.7) | ||
activesupport (>= 4.1.0) | ||
hashie (3.4.4) | ||
i18n (0.7.0) | ||
jwt (1.5.4) | ||
listen (3.0.8) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
loofah (2.0.3) | ||
nokogiri (>= 1.5.9) | ||
mail (2.6.4) | ||
mime-types (>= 1.16, < 4) | ||
method_source (0.8.2) | ||
mime-types (3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2016.0521) | ||
mini_portile2 (2.1.0) | ||
minitest (5.9.0) | ||
multi_json (1.12.1) | ||
multi_xml (0.5.5) | ||
multipart-post (2.0.0) | ||
nio4r (1.2.1) | ||
nokogiri (1.6.8) | ||
mini_portile2 (~> 2.1.0) | ||
pkg-config (~> 1.1.7) | ||
oauth2 (1.2.0) | ||
faraday (>= 0.8, < 0.10) | ||
jwt (~> 1.0) | ||
multi_json (~> 1.3) | ||
multi_xml (~> 0.5) | ||
rack (>= 1.2, < 3) | ||
omniauth (1.3.1) | ||
hashie (>= 1.2, < 4) | ||
rack (>= 1.0, < 3) | ||
omniauth-github (1.1.2) | ||
omniauth (~> 1.0) | ||
omniauth-oauth2 (~> 1.1) | ||
omniauth-oauth2 (1.4.0) | ||
oauth2 (~> 1.0) | ||
omniauth (~> 1.2) | ||
orm_adapter (0.5.0) | ||
pkg-config (1.1.7) | ||
puma (3.6.0) | ||
rack (2.0.1) | ||
rack-cors (0.4.0) | ||
rack-test (0.6.3) | ||
rack (>= 1.0) | ||
rails (5.0.0) | ||
actioncable (= 5.0.0) | ||
actionmailer (= 5.0.0) | ||
actionpack (= 5.0.0) | ||
actionview (= 5.0.0) | ||
activejob (= 5.0.0) | ||
activemodel (= 5.0.0) | ||
activerecord (= 5.0.0) | ||
activesupport (= 5.0.0) | ||
bundler (>= 1.3.0, < 2.0) | ||
railties (= 5.0.0) | ||
sprockets-rails (>= 2.0.0) | ||
rails-dom-testing (2.0.1) | ||
activesupport (>= 4.2.0, < 6.0) | ||
nokogiri (~> 1.6.0) | ||
rails-html-sanitizer (1.0.3) | ||
loofah (~> 2.0) | ||
railties (5.0.0) | ||
actionpack (= 5.0.0) | ||
activesupport (= 5.0.0) | ||
method_source | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (11.2.2) | ||
rb-fsevent (0.9.7) | ||
rb-inotify (0.9.7) | ||
ffi (>= 0.5.0) | ||
responders (2.2.0) | ||
railties (>= 4.2.0, < 5.1) | ||
spring (1.7.2) | ||
spring-watcher-listen (2.0.0) | ||
listen (>= 2.7, < 4.0) | ||
spring (~> 1.2) | ||
sprockets (3.7.0) | ||
concurrent-ruby (~> 1.0) | ||
rack (> 1, < 3) | ||
sprockets-rails (3.1.1) | ||
actionpack (>= 4.0) | ||
activesupport (>= 4.0) | ||
sprockets (>= 3.0.0) | ||
sqlite3 (1.3.11) | ||
thor (0.19.1) | ||
thread_safe (0.3.5) | ||
tzinfo (1.2.2) | ||
thread_safe (~> 0.1) | ||
warden (1.2.6) | ||
rack (>= 1.0) | ||
websocket-driver (0.6.4) | ||
websocket-extensions (>= 0.1.0) | ||
websocket-extensions (0.1.2) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
byebug | ||
devise | ||
devise_token_auth | ||
listen (~> 3.0.5) | ||
omniauth | ||
omniauth-github | ||
puma (~> 3.0) | ||
rack-cors | ||
rails (~> 5.0.0) | ||
spring | ||
spring-watcher-listen (~> 2.0.0) | ||
sqlite3 | ||
tzinfo-data | ||
|
||
BUNDLED WITH | ||
1.12.5 |
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,24 @@ | ||
# README | ||
|
||
This README would normally document whatever steps are necessary to get the | ||
application up and running. | ||
|
||
Things you may want to cover: | ||
|
||
* Ruby version | ||
|
||
* System dependencies | ||
|
||
* Configuration | ||
|
||
* Database creation | ||
|
||
* Database initialization | ||
|
||
* How to run the test suite | ||
|
||
* Services (job queues, cache servers, search engines, etc.) | ||
|
||
* Deployment instructions | ||
|
||
* ... |
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,6 @@ | ||
# Add your own tasks in files placed in lib/tasks ending in .rake, | ||
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. | ||
|
||
require_relative 'config/application' | ||
|
||
Rails.application.load_tasks |
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,4 @@ | ||
module ApplicationCable | ||
class Channel < ActionCable::Channel::Base | ||
end | ||
end |
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,4 @@ | ||
module ApplicationCable | ||
class Connection < ActionCable::Connection::Base | ||
end | ||
end |
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,3 @@ | ||
class ApplicationController < ActionController::API | ||
include DeviseTokenAuth::Concerns::SetUserByToken | ||
end |
Empty file.
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,17 @@ | ||
class TestController < ApplicationController | ||
def test | ||
return render_401 unless current_user | ||
|
||
render json: { | ||
payload: { | ||
time: Time.now.to_i | ||
} | ||
} | ||
end | ||
|
||
protected | ||
|
||
def render_401 | ||
render json: { errors: ['not authorized'] }, status: 401 | ||
end | ||
end |
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,2 @@ | ||
class ApplicationJob < ActiveJob::Base | ||
end |
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,4 @@ | ||
class ApplicationMailer < ActionMailer::Base | ||
default from: '[email protected]' | ||
layout 'mailer' | ||
end |
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,3 @@ | ||
class ApplicationRecord < ActiveRecord::Base | ||
self.abstract_class = true | ||
end |
Empty file.
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,7 @@ | ||
class User < ActiveRecord::Base | ||
# Include default devise modules. | ||
devise :database_authenticatable, :registerable, | ||
:recoverable, :rememberable, :trackable, :validatable, | ||
:confirmable, :omniauthable | ||
include DeviseTokenAuth::Concerns::User | ||
end |
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 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | ||
<style> | ||
/* Email styles need to be inline */ | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<%= yield %> | ||
</body> | ||
</html> |
Oops, something went wrong.