ddenv 0.1.1 → 0.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.
data/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "ddenv",
3
+ "version": "1.0.0",
4
+ "description": "**ddenv** (*Denis’ Developer Environment*) is a tool for maintaining a local environment for development.",
5
+ "main": "index.js",
6
+ "directories": {
7
+ "lib": "lib",
8
+ "test": "test"
9
+ },
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1"
12
+ },
13
+ "author": "",
14
+ "license": "ISC",
15
+ "dependencies": {
16
+ "lodash": "^4.17.21"
17
+ },
18
+ "devDependencies": {
19
+ "postcss": "^8.4.38",
20
+ "postcss-cli": "^11.0.0"
21
+ }
22
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ddenv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis Defreyne
@@ -10,6 +10,20 @@ bindir: exe
10
10
  cert_chain: []
11
11
  date: 2024-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: cri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.15'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.15'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: tty-command
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -54,16 +68,22 @@ files:
54
68
  - LICENSE.txt
55
69
  - README.md
56
70
  - Rakefile
71
+ - TODO.md
57
72
  - ddenv.yaml
58
73
  - exe/ddenv
59
74
  - lib/ddenv.rb
60
75
  - lib/ddenv/cli.rb
61
76
  - lib/ddenv/command.rb
62
- - lib/ddenv/commands/help.rb
63
77
  - lib/ddenv/commands/up.rb
64
78
  - lib/ddenv/config.rb
65
79
  - lib/ddenv/goal.rb
80
+ - lib/ddenv/goals/bundle_installed.rb
81
+ - lib/ddenv/goals/gem_installed.rb
66
82
  - lib/ddenv/goals/homebrew_package_installed.rb
83
+ - lib/ddenv/goals/node_build_installed.rb
84
+ - lib/ddenv/goals/node_installed.rb
85
+ - lib/ddenv/goals/node_shadowenv_created.rb
86
+ - lib/ddenv/goals/npm_packages_installed.rb
67
87
  - lib/ddenv/goals/ruby_install_installed.rb
68
88
  - lib/ddenv/goals/ruby_installed.rb
69
89
  - lib/ddenv/goals/ruby_shadowenv_created.rb
@@ -74,6 +94,8 @@ files:
74
94
  - lib/ddenv/homebrew.rb
75
95
  - lib/ddenv/subclass_responsibility_error.rb
76
96
  - lib/ddenv/version.rb
97
+ - package-lock.json
98
+ - package.json
77
99
  homepage: https://github.com/denisdefreyne/ddenv
78
100
  licenses:
79
101
  - MIT
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Ddenv
4
- module Commands
5
- class Help < Ddenv::Command
6
- def call
7
- # TODO
8
- puts "ddenv help goes here…"
9
- end
10
- end
11
- end
12
- end