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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bcbc31c4bcc5eab6ea54edbb29d980063c53d8dcb8152d21ebd0e39b3e3527f0
4
- data.tar.gz: d083b3d418396a5c9e5d403360e7d30de00b63f7ba27e7b218099d61c6008b5b
3
+ metadata.gz: e816baad1bbaf3f6968e2281180fd23f92ff90b3169b9bbdbd31c87871bfb0dc
4
+ data.tar.gz: 11df3736e118b0f9e60cb057aecd66416a418b8dea27f8f844ce9a710d194287
5
5
  SHA512:
6
- metadata.gz: 4b5dc38c2a1a8b2cb46251de251f3efa6958a1e28524caacef7dcb3586cd448b016dcbdd464f36c87acc3e8573208ab94ef73e5b6333fe21ab3d7df1dd21f7cc
7
- data.tar.gz: 1ab1b97d1091347ecfc8165ee7888096d12b4204aa43ebf6d8bb05ab9a923b7ebc2089ed63a843f4cf7c0fd6a3d519f11598b3dc9b6ce21a8c7a312d87f940dc
6
+ metadata.gz: aa77ed4e952ea0936fae67bc9de6cbc8ea8bda8f50d6be13f98aba87c41e4cdf735cce6daa9391b27b245af99283a74cc95bae2ec40304a85084e6f8be132559
7
+ data.tar.gz: 3a541478bd56ea0214965358baf0df6e8971e7a8e7ccf2048d012cd666b9e1dcdcb8c9a6e05a0ad83d87039c4e8dfdf5d5a7a9b30aa8ec70afb517b10d29fecd
data/CHANGELOG.md CHANGED
@@ -0,0 +1,9 @@
1
+ # 0.1.1 (2021-03-28)
2
+ ## Changed features
3
+ - post install message now includes the correct app name in credentials example
4
+
5
+ # 0.1.0 (2021-03-27)
6
+
7
+ ## New Features
8
+
9
+ - installer for the config files
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- docker_dir_env (0.1.0)
4
+ docker_dir_env (0.1.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # DockerDirEnv
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/docker_dir_env`. To experiment with that code, run `bin/console` for an interactive prompt.
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
- TODO: Delete this and the text above, and describe your gem
5
+ I am pretty inexperienced with gem development. Tips are very welcome!
6
6
 
7
7
  ## Installation
8
8
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module DockerDirEnv
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -48,7 +48,7 @@ module DockerDirEnv
48
48
 
49
49
  Provide the following structure inside the credentials:
50
50
  database:
51
- username: YOUR_USERNAME
51
+ username: #{Rails.application.class.name&.deconstantize&.underscore}_RAILS_ENV
52
52
  password: YOUR_PASSWORD
53
53
  README
54
54
  end
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.0
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-27 00:00:00.000000000 Z
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: 'I am using docker containers for development of a rails app as well
70
- as the environmental credentials. I figured that I''m adding the same three files
71
- to 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. '
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: