devup 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +1 -1
- data/README.md +10 -1
- data/lib/devup/env.rb +10 -0
- data/lib/devup/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cad20921807b07f89d5f023a3c1cdb67f99c4b0768f6dca9a92403159cc179c7
|
4
|
+
data.tar.gz: 91a2e16e6d0d8dd48e2eac8e02c30bd4005b09a3a63933b71dc8f5aa1e75d66f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dee679549ee12b6b27c6673e5f69df48cf410ad1d5690f6e8e238cef4b8eb6f76b32d4a7b1db28ecb43c23ad188dd449d9b0b237cbb6abc9d7866b4b694d05f0
|
7
|
+
data.tar.gz: 64080623291135a341af34c102b2b8223c80cafbe9eef40425851cf20bea71bb04e8a68cc7bbad567d55a883f03841f1cee53f656bc898943aa4a3646e397be5
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
# DevUp! [![Travis (.com) branch](https://img.shields.io/travis/com/sergio-fry/devup/master)](https://travis-ci.com/github/sergio-fry/devup) [![Gem](https://img.shields.io/gem/v/devup)](https://rubygems.org/gems/devup) [![Code Climate coverage](https://img.shields.io/codeclimate/coverage/sergio-fry/devup)](https://codeclimate.com/github/sergio-fry/devup) [![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability/sergio-fry/devup)](https://codeclimate.com/github/sergio-fry/devup) [![Gem](https://img.shields.io/gem/dt/devup)](https://rubygems.org/gems/devup) [![Hits-of-Code](https://hitsofcode.com/github/sergio-fry/devup)](https://hitsofcode.com/view/github/sergio-fry/devup)
|
2
2
|
|
3
|
-
|
3
|
+
|
4
|
+
Instead of installing and configuring local PostgreSQL, Redis and other external services, describe development dependencies with docker-compose. It is not required to remember any fancy command to start docker. Just start developing your app. Rails is a first-class citizen, but could be used without ruby.
|
5
|
+
|
6
|
+
1. `bundle add aasm --group=development,test`
|
7
|
+
2. Describe external services inside docker-compose.devup.yml
|
8
|
+
3. `devup up`
|
9
|
+
4. Confugure app to use ENV
|
4
10
|
|
5
11
|
|
6
12
|
## Requirements
|
@@ -28,6 +34,9 @@ Add **DevUp!** to your Gemfile
|
|
28
34
|
|
29
35
|
```ruby
|
30
36
|
gem "devup", group: [:development, :test]
|
37
|
+
|
38
|
+
# To prevent devup boot every time, you can require "devup/env" only:
|
39
|
+
# gem "devup", group: [:development, :test], require: "devup/env"
|
31
40
|
```
|
32
41
|
|
33
42
|
and
|
data/lib/devup/env.rb
ADDED
data/lib/devup/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: devup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergei O. Udalov
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dotenv
|
@@ -77,6 +77,7 @@ files:
|
|
77
77
|
- lib/devup/compose/v2/compose.rb
|
78
78
|
- lib/devup/compose/v2/processes.rb
|
79
79
|
- lib/devup/dotenv_load_list.rb
|
80
|
+
- lib/devup/env.rb
|
80
81
|
- lib/devup/environment.rb
|
81
82
|
- lib/devup/logger.rb
|
82
83
|
- lib/devup/port_checker.rb
|