Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
Update bundle and add Dockerfile for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nning committed Sep 13, 2017
1 parent af8f52a commit 80f32b9
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 20 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM ruby:2.3.4

ADD . /moeil
WORKDIR /moeil

RUN \
ln -sf database.yml.example config/database.yml && \
bundle && \
rake db:migrate

CMD \
rake
48 changes: 28 additions & 20 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ GEM
bcrypt (3.1.11)
bcrypt (3.1.11-java)
bcrypt_pbkdf (1.0.0)
better_errors (2.1.1)
better_errors (2.3.0)
coderay (>= 1.0.0)
erubis (>= 2.6.6)
erubi (>= 1.0.0)
rack (>= 0.9.0)
binding_of_caller (0.7.2)
debug_inspector (>= 0.0.1)
bootstrap-sass (3.1.1.1)
sass (~> 3.2)
brakeman (3.6.2)
brakeman (3.7.2)
builder (3.0.4)
cancan (1.6.10)
capistrano (3.1.0)
Expand All @@ -73,7 +73,7 @@ GEM
capistrano (~> 3.1)
capistrano-bundler (~> 1.1)
choice (0.2.0)
coderay (1.1.1)
coderay (1.1.2)
coffee-rails (3.2.2)
coffee-script (>= 2.2.0)
railties (~> 3.2.0)
Expand Down Expand Up @@ -113,31 +113,32 @@ GEM
elasticsearch-transport (5.0.4)
faraday
multi_json
erubi (1.6.1)
erubis (2.7.0)
execjs (2.7.0)
factory_girl (4.8.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.8.0)
factory_girl (~> 4.8.0)
railties (>= 3.0.0)
faker (1.7.3)
faker (1.8.4)
i18n (~> 0.5)
faraday (0.12.1)
faraday (0.13.1)
multipart-post (>= 1.2, < 3)
ffi (1.9.18)
ffi (1.9.18-java)
foreigner (1.7.4)
activerecord (>= 3.0.0)
haml (5.0.1)
haml (5.0.3)
temple (>= 0.8.0)
tilt
has_scope (0.6.0)
actionpack (>= 3.2, < 5)
activesupport (>= 3.2, < 5)
hashie (3.5.5)
hashie (3.5.6)
highline (1.7.8)
hike (1.2.3)
i18n (0.8.4)
i18n (0.8.6)
inherited_resources (1.4.1)
has_scope (~> 0.6.0.rc)
responders (~> 1.0.0.rc)
Expand All @@ -158,21 +159,21 @@ GEM
mime-types (~> 1.16)
treetop (~> 1.4.8)
mime-types (1.25.1)
multi_json (1.12.1)
multi_json (1.12.2)
multipart-post (2.0.0)
mysql2 (0.4.6)
mysql2 (0.4.9)
net-scp (1.2.1)
net-ssh (>= 2.6.5)
net-ssh (4.1.0)
net-ssh (4.2.0)
orm_adapter (0.5.0)
paper_trail (2.7.2)
activerecord (~> 3.0)
railties (~> 3.0)
pg (0.21.0)
polyglot (0.3.5)
power_assert (1.0.2)
power_assert (1.1.0)
rack (1.4.7)
rack-cache (1.7.0)
rack-cache (1.7.1)
rack (>= 0.4)
rack-ssl (1.3.4)
rack
Expand All @@ -198,18 +199,25 @@ GEM
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (>= 0.14.6, < 2.0)
rake (12.0.0)
rake (12.1.0)
rb-fsevent (0.10.2)
rb-inotify (0.9.10)
ffi (>= 0.5.0, < 2)
rbnacl (4.0.2)
ffi
rbnacl-libsodium (1.0.11)
rbnacl-libsodium (1.0.13)
rbnacl (>= 3.0.1)
rdoc (3.12.2)
json (~> 1.4)
ref (2.0.0)
responders (1.0.0)
railties (>= 3.2, < 5)
ruby-graphviz (1.2.3)
sass (3.4.24)
sass (3.5.1)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
sass-rails (3.2.6)
railties (~> 3.2.0)
sass (>= 3.1.10)
Expand All @@ -231,7 +239,7 @@ GEM
docile (~> 1.1.0)
json (>= 1.8, < 3)
simplecov-html (~> 0.10.0)
simplecov-html (0.10.1)
simplecov-html (0.10.2)
sprockets (2.2.3)
hike (~> 1.2)
multi_json (~> 1.0)
Expand All @@ -245,7 +253,7 @@ GEM
temple (0.8.0)
term-ansicolor (1.6.0)
tins (~> 1.0)
test-unit (3.2.4)
test-unit (3.2.5)
power_assert
therubyracer (0.12.3)
libv8 (~> 3.16.14.15)
Expand All @@ -257,7 +265,7 @@ GEM
thread_safe (0.3.6)
thread_safe (0.3.6-java)
tilt (1.4.1)
tins (1.14.0)
tins (1.15.0)
treetop (1.4.15)
polyglot
polyglot (>= 0.3.1)
Expand Down

0 comments on commit 80f32b9

Please sign in to comment.