-
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
0 parents
commit c89705b
Showing
149 changed files
with
4,763 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,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 | ||
|
||
.byebug_history | ||
|
||
.DS_Store | ||
/app/.DS_Store | ||
|
||
/coverage/* | ||
|
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,70 @@ | ||
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 | ||
|
||
|
||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | ||
gem 'rails', '~> 5.1.5' | ||
# Use sqlite3 as the database for Active Record | ||
gem 'sqlite3' | ||
# Use Puma as the app server | ||
gem 'puma', '~> 3.7' | ||
# 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', '~> 4.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', '1.0.2' | ||
|
||
# For handling date validation | ||
gem 'validates_timeliness', '4.0.2' | ||
|
||
# For serializing models to json for the API | ||
gem 'active_model_serializers', '0.10.7' | ||
|
||
# For generating the swagger docs to document the API | ||
gem 'swagger-docs', '0.2.9' | ||
|
||
group :development, :test do | ||
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | ||
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] | ||
end | ||
|
||
group :development do | ||
gem 'listen', '>= 3.0.5', '< 3.2' | ||
# 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 | ||
|
||
# Additional gems that are very useful in Rails development | ||
group :development do | ||
gem 'better_errors', '2.4.0' | ||
gem 'binding_of_caller', '0.8.0' | ||
gem 'meta_request', '0.5.0' | ||
gem 'hirb', '0.7.3' | ||
gem 'faker', '1.8.7' | ||
end | ||
|
||
# Gems used only in testing | ||
group :test do | ||
gem 'shoulda', '2.11.3' | ||
gem 'shoulda-matchers', '3.1.2' | ||
gem 'factory_bot_rails', '4.8.2' | ||
gem 'simplecov', '0.16.1' | ||
gem 'cucumber-rails', '1.5.0', require: false | ||
gem 'database_cleaner', '1.6.2' | ||
gem 'launchy', '2.4.3' | ||
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,246 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
actioncable (5.1.5) | ||
actionpack (= 5.1.5) | ||
nio4r (~> 2.0) | ||
websocket-driver (~> 0.6.1) | ||
actionmailer (5.1.5) | ||
actionpack (= 5.1.5) | ||
actionview (= 5.1.5) | ||
activejob (= 5.1.5) | ||
mail (~> 2.5, >= 2.5.4) | ||
rails-dom-testing (~> 2.0) | ||
actionpack (5.1.5) | ||
actionview (= 5.1.5) | ||
activesupport (= 5.1.5) | ||
rack (~> 2.0) | ||
rack-test (>= 0.6.3) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.2) | ||
actionview (5.1.5) | ||
activesupport (= 5.1.5) | ||
builder (~> 3.1) | ||
erubi (~> 1.4) | ||
rails-dom-testing (~> 2.0) | ||
rails-html-sanitizer (~> 1.0, >= 1.0.3) | ||
active_model_serializers (0.10.7) | ||
actionpack (>= 4.1, < 6) | ||
activemodel (>= 4.1, < 6) | ||
case_transform (>= 0.2) | ||
jsonapi-renderer (>= 0.1.1.beta1, < 0.3) | ||
activejob (5.1.5) | ||
activesupport (= 5.1.5) | ||
globalid (>= 0.3.6) | ||
activemodel (5.1.5) | ||
activesupport (= 5.1.5) | ||
activerecord (5.1.5) | ||
activemodel (= 5.1.5) | ||
activesupport (= 5.1.5) | ||
arel (~> 8.0) | ||
activesupport (5.1.5) | ||
concurrent-ruby (~> 1.0, >= 1.0.2) | ||
i18n (~> 0.7) | ||
minitest (~> 5.1) | ||
tzinfo (~> 1.1) | ||
addressable (2.5.2) | ||
public_suffix (>= 2.0.2, < 4.0) | ||
arel (8.0.0) | ||
backports (3.11.1) | ||
bcrypt (3.1.11) | ||
better_errors (2.4.0) | ||
coderay (>= 1.0.0) | ||
erubi (>= 1.0.0) | ||
rack (>= 0.9.0) | ||
binding_of_caller (0.8.0) | ||
debug_inspector (>= 0.0.1) | ||
builder (3.2.3) | ||
byebug (10.0.1) | ||
callsite (0.0.11) | ||
capybara (2.18.0) | ||
addressable | ||
mini_mime (>= 0.1.3) | ||
nokogiri (>= 1.3.3) | ||
rack (>= 1.0.0) | ||
rack-test (>= 0.5.4) | ||
xpath (>= 2.0, < 4.0) | ||
case_transform (0.2) | ||
activesupport | ||
coderay (1.1.2) | ||
concurrent-ruby (1.0.5) | ||
crass (1.0.3) | ||
cucumber (3.1.0) | ||
builder (>= 2.1.2) | ||
cucumber-core (~> 3.1.0) | ||
cucumber-expressions (~> 5.0.4) | ||
cucumber-wire (~> 0.0.1) | ||
diff-lcs (~> 1.3) | ||
gherkin (~> 5.0) | ||
multi_json (>= 1.7.5, < 2.0) | ||
multi_test (>= 0.1.2) | ||
cucumber-core (3.1.0) | ||
backports (>= 3.8.0) | ||
cucumber-tag_expressions (~> 1.1.0) | ||
gherkin (>= 5.0.0) | ||
cucumber-expressions (5.0.13) | ||
cucumber-rails (1.5.0) | ||
capybara (>= 1.1.2, < 3) | ||
cucumber (>= 1.3.8, < 4) | ||
mime-types (>= 1.17, < 4) | ||
nokogiri (~> 1.5) | ||
railties (>= 4, < 5.2) | ||
cucumber-tag_expressions (1.1.1) | ||
cucumber-wire (0.0.1) | ||
database_cleaner (1.6.2) | ||
debug_inspector (0.0.3) | ||
diff-lcs (1.3) | ||
docile (1.3.0) | ||
erubi (1.7.1) | ||
factory_bot (4.8.2) | ||
activesupport (>= 3.0.0) | ||
factory_bot_rails (4.8.2) | ||
factory_bot (~> 4.8.2) | ||
railties (>= 3.0.0) | ||
faker (1.8.7) | ||
i18n (>= 0.7) | ||
ffi (1.9.23) | ||
gherkin (5.0.0) | ||
globalid (0.4.1) | ||
activesupport (>= 4.2.0) | ||
hirb (0.7.3) | ||
i18n (0.9.5) | ||
concurrent-ruby (~> 1.0) | ||
json (2.1.0) | ||
jsonapi-renderer (0.2.0) | ||
launchy (2.4.3) | ||
addressable (~> 2.3) | ||
listen (3.1.5) | ||
rb-fsevent (~> 0.9, >= 0.9.4) | ||
rb-inotify (~> 0.9, >= 0.9.7) | ||
ruby_dep (~> 1.2) | ||
loofah (2.2.2) | ||
crass (~> 1.0.2) | ||
nokogiri (>= 1.5.9) | ||
mail (2.7.0) | ||
mini_mime (>= 0.1.1) | ||
meta_request (0.5.0) | ||
callsite (~> 0.0, >= 0.0.11) | ||
rack-contrib (>= 1.1, < 3) | ||
railties (>= 3.0.0, < 6) | ||
method_source (0.9.0) | ||
mime-types (3.1) | ||
mime-types-data (~> 3.2015) | ||
mime-types-data (3.2016.0521) | ||
mini_mime (1.0.0) | ||
mini_portile2 (2.3.0) | ||
minitest (5.11.3) | ||
multi_json (1.13.1) | ||
multi_test (0.1.2) | ||
nio4r (2.3.0) | ||
nokogiri (1.8.2) | ||
mini_portile2 (~> 2.3.0) | ||
public_suffix (3.0.2) | ||
puma (3.11.3) | ||
rack (2.0.4) | ||
rack-contrib (2.0.1) | ||
rack (~> 2.0) | ||
rack-cors (1.0.2) | ||
rack-test (0.8.3) | ||
rack (>= 1.0, < 3) | ||
rails (5.1.5) | ||
actioncable (= 5.1.5) | ||
actionmailer (= 5.1.5) | ||
actionpack (= 5.1.5) | ||
actionview (= 5.1.5) | ||
activejob (= 5.1.5) | ||
activemodel (= 5.1.5) | ||
activerecord (= 5.1.5) | ||
activesupport (= 5.1.5) | ||
bundler (>= 1.3.0) | ||
railties (= 5.1.5) | ||
sprockets-rails (>= 2.0.0) | ||
rails-dom-testing (2.0.3) | ||
activesupport (>= 4.2.0) | ||
nokogiri (>= 1.6) | ||
rails-html-sanitizer (1.0.4) | ||
loofah (~> 2.2, >= 2.2.2) | ||
railties (5.1.5) | ||
actionpack (= 5.1.5) | ||
activesupport (= 5.1.5) | ||
method_source | ||
rake (>= 0.8.7) | ||
thor (>= 0.18.1, < 2.0) | ||
rake (12.3.1) | ||
rb-fsevent (0.10.3) | ||
rb-inotify (0.9.10) | ||
ffi (>= 0.5.0, < 2) | ||
ruby_dep (1.5.0) | ||
shoulda (2.11.3) | ||
shoulda-matchers (3.1.2) | ||
activesupport (>= 4.0.0) | ||
simplecov (0.16.1) | ||
docile (~> 1.1) | ||
json (>= 1.8, < 3) | ||
simplecov-html (~> 0.10.0) | ||
simplecov-html (0.10.2) | ||
spring (2.0.2) | ||
activesupport (>= 4.2) | ||
spring-watcher-listen (2.0.1) | ||
listen (>= 2.7, < 4.0) | ||
spring (>= 1.2, < 3.0) | ||
sprockets (3.7.1) | ||
concurrent-ruby (~> 1.0) | ||
rack (> 1, < 3) | ||
sprockets-rails (3.2.1) | ||
actionpack (>= 4.0) | ||
activesupport (>= 4.0) | ||
sprockets (>= 3.0.0) | ||
sqlite3 (1.3.13) | ||
swagger-docs (0.2.9) | ||
activesupport (>= 3) | ||
rails (>= 3) | ||
thor (0.20.0) | ||
thread_safe (0.3.6) | ||
timeliness (0.3.8) | ||
tzinfo (1.2.5) | ||
thread_safe (~> 0.1) | ||
validates_timeliness (4.0.2) | ||
timeliness (~> 0.3.7) | ||
websocket-driver (0.6.5) | ||
websocket-extensions (>= 0.1.0) | ||
websocket-extensions (0.1.3) | ||
xpath (3.0.0) | ||
nokogiri (~> 1.8) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
active_model_serializers (= 0.10.7) | ||
bcrypt (~> 3.1.7) | ||
better_errors (= 2.4.0) | ||
binding_of_caller (= 0.8.0) | ||
byebug | ||
cucumber-rails (= 1.5.0) | ||
database_cleaner (= 1.6.2) | ||
factory_bot_rails (= 4.8.2) | ||
faker (= 1.8.7) | ||
hirb (= 0.7.3) | ||
launchy (= 2.4.3) | ||
listen (>= 3.0.5, < 3.2) | ||
meta_request (= 0.5.0) | ||
puma (~> 3.7) | ||
rack-cors (= 1.0.2) | ||
rails (~> 5.1.5) | ||
shoulda (= 2.11.3) | ||
shoulda-matchers (= 3.1.2) | ||
simplecov (= 0.16.1) | ||
spring | ||
spring-watcher-listen (~> 2.0.0) | ||
sqlite3 | ||
swagger-docs (= 0.2.9) | ||
tzinfo-data | ||
validates_timeliness (= 4.0.2) | ||
|
||
BUNDLED WITH | ||
1.16.1 |
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 |
Oops, something went wrong.