djin 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: 43fa5ed070cc953adb7ad4864322e97cf8ef59d9fc514d65d2a4f8800a3f1a0a
4
- data.tar.gz: 0ade4fdef165250abfbb8c80f46d6f67ec89eb7a2f60482402f5b0609ee12425
3
+ metadata.gz: 9b1c6e4a65fd3d45dda2ccea34bafb2a33e927d59b25d273486152968629956d
4
+ data.tar.gz: 7d5bac09875862642943dcf43bdfb61e9874203b6264c16aceeb918669fd4939
5
5
  SHA512:
6
- metadata.gz: d7d80c7af51b9ce35249c5b57d2820947d43d5872a9ef59d619e47969dabfb1b0055888b650be5e7ea15444786eebe7d518543db0f180c0afe568992a162af64
7
- data.tar.gz: 2968f433099a2df4b4449b45f2a94dfa889976e1bdb17dc96ebcca0c8c52f7b099426f5d0bdbac0921b4527bc96e8d0c0a29edf0b14c92d2921e44debff2a832
6
+ metadata.gz: 0ab09434fc83b94f14a2f2eed6bc23cbb1319a36083e9d110621e71b540953294e62eca5d59d7d4daa667066bd713d20595079c742aa8fe60d41d709e1f9323b
7
+ data.tar.gz: 85628587736a959d29946c56ffea2e9379bd9184a0f6b9ad939967630d8a71b3004c276a203086bf3b510bfe11902c9c24d3ad279569044686af750a0ec17577
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- djin (0.1.0)
4
+ djin (0.1.1)
5
5
  dry-cli (~> 0.5.0)
6
6
  dry-struct (~> 1.3.0)
7
- dry-validation (~> 1.4.0)
7
+ dry-validation (~> 1.5.0)
8
8
 
9
9
  GEM
10
10
  remote: https://rubygems.org/
@@ -30,33 +30,33 @@ GEM
30
30
  concurrent-ruby (~> 1.0)
31
31
  dry-core (~> 0.2)
32
32
  dry-equalizer (~> 0.2)
33
- dry-schema (1.4.3)
33
+ dry-schema (1.5.0)
34
34
  concurrent-ruby (~> 1.0)
35
35
  dry-configurable (~> 0.8, >= 0.8.3)
36
36
  dry-core (~> 0.4)
37
37
  dry-equalizer (~> 0.2)
38
38
  dry-initializer (~> 3.0)
39
39
  dry-logic (~> 1.0)
40
- dry-types (~> 1.2)
40
+ dry-types (~> 1.4)
41
41
  dry-struct (1.3.0)
42
42
  dry-core (~> 0.4, >= 0.4.4)
43
43
  dry-equalizer (~> 0.3)
44
44
  dry-types (~> 1.3)
45
45
  ice_nine (~> 0.11)
46
- dry-types (1.3.1)
46
+ dry-types (1.4.0)
47
47
  concurrent-ruby (~> 1.0)
48
48
  dry-container (~> 0.3)
49
49
  dry-core (~> 0.4, >= 0.4.4)
50
50
  dry-equalizer (~> 0.3)
51
51
  dry-inflector (~> 0.1, >= 0.1.2)
52
52
  dry-logic (~> 1.0, >= 1.0.2)
53
- dry-validation (1.4.2)
53
+ dry-validation (1.5.0)
54
54
  concurrent-ruby (~> 1.0)
55
55
  dry-container (~> 0.7, >= 0.7.1)
56
56
  dry-core (~> 0.4)
57
57
  dry-equalizer (~> 0.2)
58
58
  dry-initializer (~> 3.0)
59
- dry-schema (~> 1.4, >= 1.4.3)
59
+ dry-schema (~> 1.5)
60
60
  ice_nine (0.11.2)
61
61
  rake (10.5.0)
62
62
  rspec (3.9.0)
data/README.md CHANGED
@@ -25,12 +25,12 @@ test:
25
25
  docker-compose:
26
26
  service: app
27
27
  run:
28
- command: rspec
28
+ commands: rspec
29
29
  options: "--rm"
30
30
 
31
31
  ```
32
32
 
33
- After that you can run djin {{task_name}}, like djin script or djin test
33
+ After that you can run `djin {{task_name}}`, like `djin script` or `djin test`
34
34
 
35
35
  ## Development
36
36
 
@@ -38,10 +38,10 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
38
38
 
39
39
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
40
40
 
41
- # TODO:
41
+ ## TODO:
42
42
 
43
- 1. Add depends_on to run dependent tasks
44
- 2. Adds a -f option to load custom djin files
43
+ 1. Add `depends_on` to run dependent tasks
44
+ 2. Adds a `-f` option to load custom djin files
45
45
 
46
46
  ## Contributing
47
47
 
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.add_dependency "dry-struct", "~> 1.3.0"
29
29
  spec.add_dependency "dry-cli", "~> 0.5.0"
30
- spec.add_dependency "dry-validation", "~> 1.4.0"
30
+ spec.add_dependency "dry-validation", "~> 1.5.0"
31
31
  spec.add_development_dependency "bundler", "~> 2.0"
32
32
  spec.add_development_dependency "rake", "~> 10.0"
33
33
  spec.add_development_dependency "rspec", "~> 3.0"
data/djin.yml CHANGED
@@ -4,4 +4,10 @@ test:
4
4
  run:
5
5
  commands: "cd /usr/src/djin && rspec"
6
6
  options: "--rm --entrypoint=''"
7
+ sh:
8
+ docker-compose:
9
+ service: app
10
+ run:
11
+ commands: "sh"
12
+ options: "--rm --entrypoint=''"
7
13
 
@@ -8,7 +8,7 @@ test:
8
8
  docker-compose:
9
9
  service: app
10
10
  run:
11
- command: rspec
11
+ commands: rspec
12
12
  options: "--rm"
13
13
 
14
14
  script:
@@ -1,3 +1,3 @@
1
1
  module Djin
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: djin
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
  - Carlos Atkinson
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.4.0
47
+ version: 1.5.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.4.0
54
+ version: 1.5.0
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: bundler
57
57
  requirement: !ruby/object:Gem::Requirement