cnc 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/README.md +1 -10
- data/lib/cnc/cli/commands.rb +21 -0
- data/lib/cnc/engine.rb +2 -2
- data/lib/cnc/version.rb +1 -1
- data/lib/cnc.rb +0 -1
- metadata +35 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6de8f709fd3d7b38308c2599e4dfb6f3bb54789c352ba1cdda9f7c1fd7e8c73a
|
4
|
+
data.tar.gz: 66cec47126044ea3446bf59be7bd8bdf8a6a302799b03c962d56aaee960942d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24396930f75f02ffa2e066dae8065fc594922d857b136b19241d4da39357b576c5c2b406f4fe30171de616c29d2fc15d25a4c05379bcc60e6ebf038fd5ce303b
|
7
|
+
data.tar.gz: 3e31535b41c6c2d138a4e0eee5767c21e09dbd19e780706ead3c364fd1610e81c740f25bc0a59262327336459015c910b42b068c7e2cee4b9a252612b2c8d7ba
|
data/README.md
CHANGED
@@ -1,15 +1,6 @@
|
|
1
1
|
# CNC
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
## Usage
|
6
|
-
|
7
|
-
CNC bolsters rails with some helpful modules:
|
8
|
-
|
9
|
-
- `CNC::UI` - UI builders.
|
10
|
-
- `CNC::Model` - Model helpers.
|
11
|
-
- `CNC::REST` - RESTful controllers.
|
12
|
-
- `CNC::Policy` - Pundit integration.
|
3
|
+
CLI and helpers for building things the Craft & Concept way.
|
13
4
|
|
14
5
|
## Installation
|
15
6
|
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module CNC
|
4
|
+
module CLI
|
5
|
+
module Commands
|
6
|
+
extend Dry::CLI::Registry
|
7
|
+
|
8
|
+
class Command < Dry::CLI::Command; end
|
9
|
+
|
10
|
+
class Version < Command
|
11
|
+
desc "Print version"
|
12
|
+
|
13
|
+
def call(*)
|
14
|
+
puts VERSION
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
register "version", Version, aliases: %w[v -v --version]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
data/lib/cnc/engine.rb
CHANGED
@@ -2,8 +2,8 @@ module CNC
|
|
2
2
|
class Engine < ::Rails::Engine
|
3
3
|
isolate_namespace CNC
|
4
4
|
|
5
|
-
initializer
|
6
|
-
ActiveSupport::Inflector.inflections {
|
5
|
+
initializer "cnc.inflections" do
|
6
|
+
ActiveSupport::Inflector.inflections { _1.acronym "CNC" }
|
7
7
|
end
|
8
8
|
end
|
9
9
|
end
|
data/lib/cnc/version.rb
CHANGED
data/lib/cnc.rb
CHANGED
metadata
CHANGED
@@ -1,29 +1,57 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cnc
|
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
|
- Jeff Peterson
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-10-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rubocop-rails-omakase
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: rails
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
16
30
|
requirements:
|
17
31
|
- - ">="
|
18
32
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
33
|
+
version: '0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: dry-cli
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
20
48
|
type: :runtime
|
21
49
|
prerelease: false
|
22
50
|
version_requirements: !ruby/object:Gem::Requirement
|
23
51
|
requirements:
|
24
52
|
- - ">="
|
25
53
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
54
|
+
version: '0'
|
27
55
|
description: Stop milling about and build rails apps faster with CNC.
|
28
56
|
email:
|
29
57
|
- jeff@concept.love
|
@@ -44,6 +72,7 @@ files:
|
|
44
72
|
- app/views/layouts/cnc/application.html.erb
|
45
73
|
- config/routes.rb
|
46
74
|
- lib/cnc.rb
|
75
|
+
- lib/cnc/cli/commands.rb
|
47
76
|
- lib/cnc/engine.rb
|
48
77
|
- lib/cnc/version.rb
|
49
78
|
- lib/tasks/cnc_tasks.rake
|
@@ -69,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
98
|
- !ruby/object:Gem::Version
|
70
99
|
version: '0'
|
71
100
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
101
|
+
rubygems_version: 3.5.21
|
73
102
|
signing_key:
|
74
103
|
specification_version: 4
|
75
104
|
summary: Rails starter kit.
|