Skip to content
This repository was archived by the owner on May 14, 2018. It is now read-only.

Commit bf2d6ef

Browse files
committed
Initial import
1 parent 8e95b25 commit bf2d6ef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+831
-0
lines changed

.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
10+
# Ignore the default SQLite database.
11+
/db/*.sqlite3
12+
/db/*.sqlite3-journal
13+
14+
# Ignore all logfiles and tempfiles.
15+
/log/*
16+
/tmp/*
17+
!/log/.keep
18+
!/tmp/.keep
19+
20+
.byebug_history

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM ruby:2
2+
RUN apt-get update -qq && apt-get install -y build-essential nodejs
3+
RUN mkdir /cell
4+
WORKDIR /cell
5+
ADD Gemfile /cell/Gemfile
6+
ADD Gemfile.lock /cell/Gemfile.lock
7+
RUN bundle install
8+
ADD . /cell

Gemfile

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
source 'https://rubygems.org'
2+
3+
git_source(:github) do |repo_name|
4+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
5+
"https://github.com/#{repo_name}.git"
6+
end
7+
8+
gem 'rails', '~> 5.1.1'
9+
gem 'sqlite3'
10+
gem 'puma', '~> 3.7'
11+
gem 'jbuilder', '~> 2.5'
12+
13+
group :development, :test do
14+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
15+
end
16+
17+
group :development do
18+
gem 'listen', '>= 3.0.5', '< 3.2'
19+
gem 'spring'
20+
gem 'spring-watcher-listen', '~> 2.0.0'
21+
end
22+
23+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock

Lines changed: 139 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,139 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
actioncable (5.1.1)
5+
actionpack (= 5.1.1)
6+
nio4r (~> 2.0)
7+
websocket-driver (~> 0.6.1)
8+
actionmailer (5.1.1)
9+
actionpack (= 5.1.1)
10+
actionview (= 5.1.1)
11+
activejob (= 5.1.1)
12+
mail (~> 2.5, >= 2.5.4)
13+
rails-dom-testing (~> 2.0)
14+
actionpack (5.1.1)
15+
actionview (= 5.1.1)
16+
activesupport (= 5.1.1)
17+
rack (~> 2.0)
18+
rack-test (~> 0.6.3)
19+
rails-dom-testing (~> 2.0)
20+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
21+
actionview (5.1.1)
22+
activesupport (= 5.1.1)
23+
builder (~> 3.1)
24+
erubi (~> 1.4)
25+
rails-dom-testing (~> 2.0)
26+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
27+
activejob (5.1.1)
28+
activesupport (= 5.1.1)
29+
globalid (>= 0.3.6)
30+
activemodel (5.1.1)
31+
activesupport (= 5.1.1)
32+
activerecord (5.1.1)
33+
activemodel (= 5.1.1)
34+
activesupport (= 5.1.1)
35+
arel (~> 8.0)
36+
activesupport (5.1.1)
37+
concurrent-ruby (~> 1.0, >= 1.0.2)
38+
i18n (~> 0.7)
39+
minitest (~> 5.1)
40+
tzinfo (~> 1.1)
41+
arel (8.0.0)
42+
builder (3.2.3)
43+
byebug (9.0.6)
44+
concurrent-ruby (1.0.5)
45+
erubi (1.6.0)
46+
ffi (1.9.18)
47+
globalid (0.4.0)
48+
activesupport (>= 4.2.0)
49+
i18n (0.8.1)
50+
jbuilder (2.6.4)
51+
activesupport (>= 3.0.0)
52+
multi_json (>= 1.2)
53+
listen (3.1.5)
54+
rb-fsevent (~> 0.9, >= 0.9.4)
55+
rb-inotify (~> 0.9, >= 0.9.7)
56+
ruby_dep (~> 1.2)
57+
loofah (2.0.3)
58+
nokogiri (>= 1.5.9)
59+
mail (2.6.5)
60+
mime-types (>= 1.16, < 4)
61+
method_source (0.8.2)
62+
mime-types (3.1)
63+
mime-types-data (~> 3.2015)
64+
mime-types-data (3.2016.0521)
65+
mini_portile2 (2.1.0)
66+
minitest (5.10.2)
67+
multi_json (1.12.1)
68+
nio4r (2.0.0)
69+
nokogiri (1.7.2)
70+
mini_portile2 (~> 2.1.0)
71+
puma (3.8.2)
72+
rack (2.0.3)
73+
rack-test (0.6.3)
74+
rack (>= 1.0)
75+
rails (5.1.1)
76+
actioncable (= 5.1.1)
77+
actionmailer (= 5.1.1)
78+
actionpack (= 5.1.1)
79+
actionview (= 5.1.1)
80+
activejob (= 5.1.1)
81+
activemodel (= 5.1.1)
82+
activerecord (= 5.1.1)
83+
activesupport (= 5.1.1)
84+
bundler (>= 1.3.0, < 2.0)
85+
railties (= 5.1.1)
86+
sprockets-rails (>= 2.0.0)
87+
rails-dom-testing (2.0.3)
88+
activesupport (>= 4.2.0)
89+
nokogiri (>= 1.6)
90+
rails-html-sanitizer (1.0.3)
91+
loofah (~> 2.0)
92+
railties (5.1.1)
93+
actionpack (= 5.1.1)
94+
activesupport (= 5.1.1)
95+
method_source
96+
rake (>= 0.8.7)
97+
thor (>= 0.18.1, < 2.0)
98+
rake (12.0.0)
99+
rb-fsevent (0.9.8)
100+
rb-inotify (0.9.8)
101+
ffi (>= 0.5.0)
102+
ruby_dep (1.5.0)
103+
spring (2.0.1)
104+
activesupport (>= 4.2)
105+
spring-watcher-listen (2.0.1)
106+
listen (>= 2.7, < 4.0)
107+
spring (>= 1.2, < 3.0)
108+
sprockets (3.7.1)
109+
concurrent-ruby (~> 1.0)
110+
rack (> 1, < 3)
111+
sprockets-rails (3.2.0)
112+
actionpack (>= 4.0)
113+
activesupport (>= 4.0)
114+
sprockets (>= 3.0.0)
115+
sqlite3 (1.3.13)
116+
thor (0.19.4)
117+
thread_safe (0.3.6)
118+
tzinfo (1.2.3)
119+
thread_safe (~> 0.1)
120+
websocket-driver (0.6.5)
121+
websocket-extensions (>= 0.1.0)
122+
websocket-extensions (0.1.2)
123+
124+
PLATFORMS
125+
ruby
126+
127+
DEPENDENCIES
128+
byebug
129+
jbuilder (~> 2.5)
130+
listen (>= 3.0.5, < 3.2)
131+
puma (~> 3.7)
132+
rails (~> 5.1.1)
133+
spring
134+
spring-watcher-listen (~> 2.0.0)
135+
sqlite3
136+
tzinfo-data
137+
138+
BUNDLED WITH
139+
1.14.6

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# README
2+
3+
This README would normally document whatever steps are necessary to get the
4+
application up and running.
5+
6+
Things you may want to cover:
7+
8+
* Ruby version
9+
10+
* System dependencies
11+
12+
* Configuration
13+
14+
* Database creation
15+
16+
* Database initialization
17+
18+
* How to run the test suite
19+
20+
* Services (job queues, cache servers, search engines, etc.)
21+
22+
* Deployment instructions
23+
24+
* ...

Rakefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require_relative 'config/application'
5+
6+
Rails.application.load_tasks
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Channel < ActionCable::Channel::Base
3+
end
4+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module ApplicationCable
2+
class Connection < ActionCable::Connection::Base
3+
end
4+
end
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
class ApplicationController < ActionController::API
2+
end

app/controllers/concerns/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)