orats 5.1.1 → 5.1.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: eb20963767e37cb986ff42fb5a57f75b2b5f1f4f
4
- data.tar.gz: 508c76aed5f130ab05257bc146560b896cb4a03b
3
+ metadata.gz: 4896af6920ab324eed17012d6cbdc55f685e5fab
4
+ data.tar.gz: ed5c95a9d96a687a3fb4790a43054a23ffe095c7
5
5
  SHA512:
6
- metadata.gz: 7f3be6ed7d606750b8f958a174383571f6cdfe27fb2f630479ad8002462be3073a5f54a61f0410da031b5a99ce116dec7f50144b3be641d41c2b6797180ec143
7
- data.tar.gz: 5ac1c565210c8f9cada3dc39882b6a66285a6100a9873d9da8f2d7bfc45e53d40d3a55f629341110f5e90379aa097d0805ad00c5985937144235a86cb176c8c6
6
+ metadata.gz: fa1124e7ac1eae2d15ad49ba0695aa5c3a66f50d0af44515330ce14a4e59b6d41dcfd551671f13283067538fd67fdbff31e0255c29cea0bcbd4d9c78bac1edb9
7
+ data.tar.gz: 0ba9a705a265ffe5f73275f64ade9bb226bfd78148d11b4d0566acf4f26220bf6adeb1b8f9736a12570e334ea12e92848b5fce01a555cea3a756dfd4492a29c2
@@ -1,3 +1,9 @@
1
+ ## orats 5.1.2 (August 23, 2017)
2
+
3
+ - Fix missing `fileutil` require
4
+ - Update Rails to `5.1.3`
5
+ - Update Puma to `3.10`
6
+
1
7
  ## orats 5.1.1 (June 16, 2017)
2
8
 
3
9
  - Update Ruby to `2.4`
data/README.md CHANGED
@@ -14,8 +14,7 @@ It also happens to use Docker so that your app can be ran on any major
14
14
  platform -- even without needing Ruby installed.
15
15
 
16
16
  If you want to learn about Docker specifically then I recommend checking out
17
- the [Dive Into Docker: The Complete Docker Course for Developers course](https://diveintodocker.com/courses/dive-into-docker). You can even watch the
18
- first 20 videos for free.
17
+ [Dive Into Docker: The Complete Docker Course for Developers](https://diveintodocker.com/courses/dive-into-docker?utm_source=orats&utm_medium=github&utm_campaign=readmetop).
19
18
 
20
19
  ## What versions are you targeting?
21
20
 
@@ -126,7 +125,7 @@ add it.
126
125
  Check out the blog post
127
126
  [Dockerize a Rails 5, Postgres, Redis, Sidekiq and Action Cable Application](http://nickjanetakis.com/blog/dockerize-a-rails-5-postgres-redis-sidekiq-action-cable-app-with-docker-compose).
128
127
 
129
- Another option is to take my [Dive Into Docker course](https://diveintodocker.com/courses/dive-into-docker).
128
+ Another option is to take my [Dive Into Docker course](https://diveintodocker.com/courses/dive-into-docker?utm_source=orats&utm_medium=github&utm_campaign=readmebottom).
130
129
 
131
130
  #### What do I do after I generate the application?
132
131
 
@@ -1,3 +1,4 @@
1
+ require 'fileutils'
1
2
  require 'pathname'
2
3
 
3
4
  require 'orats/common'
@@ -6,10 +6,10 @@ git_source(:github) do |repo_name|
6
6
  end
7
7
 
8
8
  # Looking to use the Edge version? gem 'rails', github: 'rails/rails'
9
- gem 'rails', '~> 5.1.1'
9
+ gem 'rails', '~> 5.1.3'
10
10
 
11
11
  # Use Puma as the app server
12
- gem 'puma', '~> 3.9'
12
+ gem 'puma', '~> 3.10'
13
13
 
14
14
  # Use Rack Timeout. Read more: https://github.com/heroku/rack-timeout
15
15
  gem 'rack-timeout', '~> 0.4'
@@ -22,7 +22,7 @@
22
22
 
23
23
  <ul>
24
24
  <li>
25
- <%= link_to 'Learn how to build web apps with Docker', 'https://diveintodocker.com/courses/dive-into-docker' %>
25
+ <%= link_to 'Learn how to build web apps with Docker', 'https://diveintodocker.com/courses/dive-into-docker?utm_source=orats&utm_medium=github&utm_campaign=homepage' %>
26
26
  </li>
27
27
  </ul>
28
28
 
@@ -17,7 +17,7 @@ services:
17
17
  ports:
18
18
  - '6379:6379'
19
19
  volumes:
20
- - 'redis:/var/lib/redis/data'
20
+ - 'redis:/data'
21
21
 
22
22
  website:
23
23
  depends_on:
@@ -1,4 +1,4 @@
1
1
  # set the version of this gem
2
2
  module Orats
3
- VERSION = '5.1.1'.freeze
3
+ VERSION = '5.1.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.1.1
4
+ version: 5.1.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: 2017-06-17 00:00:00.000000000 Z
11
+ date: 2017-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor