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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +2 -3
- data/lib/orats/commands/new.rb +1 -0
- data/lib/orats/templates/base/Gemfile +2 -2
- data/lib/orats/templates/base/app/views/pages/home.html.erb +1 -1
- data/lib/orats/templates/base/docker-compose.yml +1 -1
- data/lib/orats/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4896af6920ab324eed17012d6cbdc55f685e5fab
|
|
4
|
+
data.tar.gz: ed5c95a9d96a687a3fb4790a43054a23ffe095c7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa1124e7ac1eae2d15ad49ba0695aa5c3a66f50d0af44515330ce14a4e59b6d41dcfd551671f13283067538fd67fdbff31e0255c29cea0bcbd4d9c78bac1edb9
|
|
7
|
+
data.tar.gz: 0ba9a705a265ffe5f73275f64ade9bb226bfd78148d11b4d0566acf4f26220bf6adeb1b8f9736a12570e334ea12e92848b5fce01a555cea3a756dfd4492a29c2
|
data/CHANGELOG.md
CHANGED
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
|
-
|
|
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
|
|
data/lib/orats/commands/new.rb
CHANGED
|
@@ -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.
|
|
9
|
+
gem 'rails', '~> 5.1.3'
|
|
10
10
|
|
|
11
11
|
# Use Puma as the app server
|
|
12
|
-
gem 'puma', '~> 3.
|
|
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
|
|
data/lib/orats/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2017-08-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|