orats 5.0.1 → 5.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 36e79bf0f322b9defaa743ca95c88b59a0120dd4
4
- data.tar.gz: 349f8ff57deec2802ffe5cf6da5bd6cae66b07df
3
+ metadata.gz: 0d7e5aa5200d6a82f91f806a1b51e71686d0b2fd
4
+ data.tar.gz: 97bcc8ad2a1d4ec87a6e70766fb4235f64105b95
5
5
  SHA512:
6
- metadata.gz: bb3a8da069e08566e189ac967b4390d7aea9f3760fe5a8955d9c885172e2111430c98c5edba1a5b1e07cc4d1b92e82883e83516e44c24c48c6f2f369b6552406
7
- data.tar.gz: b0af3616b3319ed14e499b8e4d6cfa015a8747cdd876513b1505c4917a8ae9aa1389103ee52036b05f6ed28b09e4a7a3830551a6398c4ebcddbc5869ff826b4c
6
+ metadata.gz: 2ea921eeeaee98d57d92f785539b9da667dda72a31637b2c7a670785c55a25c6b53b7b4fa8cff2fa075aa334b51290f909a4f082e9838083c7bdb1ed986b796b
7
+ data.tar.gz: e2c5a730adaa3e5cba7d8e65f4f86e5d7828f555392c7058400830a23436434cea20149617faa7c3a985c632761cfc56f0cdb75b225ce609a6c4f92c749b14ef
@@ -1,3 +1,7 @@
1
+ ## orats 5.0.2 (July 11, 2016)
2
+
3
+ - Fix `Dockerfile` to use orats_base not my_dockerized_app
4
+
1
5
  ## orats 5.0.1 (July 10, 2016)
2
6
 
3
7
  - Fix missing `.env` file (Fixes #12)
@@ -24,8 +24,8 @@ RUN apt-get update && apt-get install -qq -y --no-install-recommends \
24
24
  # packages to ensure that we can compile assets (nodejs) and
25
25
  # communicate with PostgreSQL (libpq-dev).
26
26
 
27
- ENV INSTALL_PATH /my_dockerized_app
28
- # The name of the application is my_dockerized_app and while there
27
+ ENV INSTALL_PATH /orats_base
28
+ # The name of the application is orats_base and while there
29
29
  # is no standard on where your project should live inside of the Docker
30
30
  # image, I like to put it in the root of the image and name it
31
31
  # after the project.
@@ -42,8 +42,8 @@ RUN mkdir -p $INSTALL_PATH
42
42
 
43
43
  WORKDIR $INSTALL_PATH
44
44
  # We're going to be executing a number of commands below, and
45
- # having to CD into the /my_dockerized_app folder every time would be
46
- # lame, so instead we can set the WORKDIR to be /my_dockerized_app.
45
+ # having to CD into the /orats_base folder every time would be
46
+ # lame, so instead we can set the WORKDIR to be /orats_base.
47
47
  #
48
48
  # By doing this, Docker will be smart enough to execute all
49
49
  # future commands from within this directory.
@@ -51,9 +51,9 @@ WORKDIR $INSTALL_PATH
51
51
  COPY Gemfile Gemfile.lock ./
52
52
  # This is going to copy in the Gemfile and Gemfile.lock from our
53
53
  # work station at a path relative to the Dockerfile to the
54
- # my_dockerized_app/ path inside of the Docker image.
54
+ # orats_base/ path inside of the Docker image.
55
55
  #
56
- # It copies it to /my_dockerized_app because of the WORKDIR being set.
56
+ # It copies it to /orats_base because of the WORKDIR being set.
57
57
  #
58
58
  # We copy in our Gemfile before the main app because Docker is
59
59
  # smart enough to cache "layers" when you build a Docker image.
@@ -75,7 +75,7 @@ RUN bundle install --binstubs
75
75
  COPY . .
76
76
  # This might look a bit alien but it's copying in everything from
77
77
  # the current directory relative to the Dockerfile, over to the
78
- # /my_dockerized_app folder inside of the Docker image.
78
+ # /orats_base folder inside of the Docker image.
79
79
  #
80
80
  # We can get away with using the . for the second argument because
81
81
  # this is how the unix command cp (copy) works. It stands for the
@@ -1,4 +1,4 @@
1
1
  # set the version of this gem
2
2
  module Orats
3
- VERSION = '5.0.1'.freeze
3
+ VERSION = '5.0.2'.freeze
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: orats
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Janetakis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-10 00:00:00.000000000 Z
11
+ date: 2016-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor