docker_dir_env 0.1.0 → 0.1.1
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 +9 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/docker_dir_env.gemspec +1 -1
- data/lib/docker_dir_env/version.rb +1 -1
- data/lib/generators/docker_dir_env/install_generator.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e816baad1bbaf3f6968e2281180fd23f92ff90b3169b9bbdbd31c87871bfb0dc
|
4
|
+
data.tar.gz: 11df3736e118b0f9e60cb057aecd66416a418b8dea27f8f844ce9a710d194287
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa77ed4e952ea0936fae67bc9de6cbc8ea8bda8f50d6be13f98aba87c41e4cdf735cce6daa9391b27b245af99283a74cc95bae2ec40304a85084e6f8be132559
|
7
|
+
data.tar.gz: 3a541478bd56ea0214965358baf0df6e8971e7a8e7ccf2048d012cd666b9e1dcdcb8c9a6e05a0ad83d87039c4e8dfdf5d5a7a9b30aa8ec70afb517b10d29fecd
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
# DockerDirEnv
|
2
2
|
|
3
|
-
|
3
|
+
I am using docker containers for development of a rails app as well as the environmental credentials. I figured that I'm adding the same three files to all of my projects. Since I have a bunch of existing projects a custom template is not an option. So I went with a gem and a generator instead.
|
4
4
|
|
5
|
-
|
5
|
+
I am pretty inexperienced with gem development. Tips are very welcome!
|
6
6
|
|
7
7
|
## Installation
|
8
8
|
|
data/docker_dir_env.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["ben@bdeutscher.org"]
|
11
11
|
|
12
12
|
spec.summary = %q{This gem brings a setup of docker management script, a database.yml and .envrc file.}
|
13
|
-
spec.description = %q{I am using docker containers for development of a rails app as well as the environmental credentials. I figured that I'm adding the same three files to all of my projects. Since I have a bunch of existing projects a custom template is not an option. So I went with a gem and a generator instead.
|
13
|
+
spec.description = %q{I am using docker containers for development of a rails app as well as the environmental credentials. I figured that I'm adding the same three files to all of my projects. Since I have a bunch of existing projects a custom template is not an option. So I went with a gem and a generator instead.}
|
14
14
|
spec.homepage = "https://github.com/BedeDD/DockerDirEnv.git"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: docker_dir_env
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin Deutscher
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,10 +66,10 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '6.0'
|
69
|
-
description:
|
70
|
-
|
71
|
-
|
72
|
-
is not an option. So I went with a gem and a generator instead.
|
69
|
+
description: I am using docker containers for development of a rails app as well as
|
70
|
+
the environmental credentials. I figured that I'm adding the same three files to
|
71
|
+
all of my projects. Since I have a bunch of existing projects a custom template
|
72
|
+
is not an option. So I went with a gem and a generator instead.
|
73
73
|
email:
|
74
74
|
- ben@bdeutscher.org
|
75
75
|
executables:
|