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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b8100101af9062470fae8319c4cb690414f383161cbb63633266854a915443a7
4
- data.tar.gz: 6994d87362c0f14d95ec530577e88cbef3060d056dd07e9084e7510c5b227499
3
+ metadata.gz: 6de8f709fd3d7b38308c2599e4dfb6f3bb54789c352ba1cdda9f7c1fd7e8c73a
4
+ data.tar.gz: 66cec47126044ea3446bf59be7bd8bdf8a6a302799b03c962d56aaee960942d0
5
5
  SHA512:
6
- metadata.gz: 4a7635eb6ffada562ba7b84faa62ba9eb620289d7e3d8ad6aeba5f3db6774aa93f7944dfccb5a585504339097c2e4f62f960778dcab8a5a0c37002cb663e7a40
7
- data.tar.gz: a4f324c013cfc572e4f58e21ae3c3b6ae0156f27a54a9c11b63d2e6b55deb6f57e392f2fc911f0323bc387444f274c728164fc513acac1ecca2f900bed363d73
6
+ metadata.gz: 24396930f75f02ffa2e066dae8065fc594922d857b136b19241d4da39357b576c5c2b406f4fe30171de616c29d2fc15d25a4c05379bcc60e6ebf038fd5ce303b
7
+ data.tar.gz: 3e31535b41c6c2d138a4e0eee5767c21e09dbd19e780706ead3c364fd1610e81c740f25bc0a59262327336459015c910b42b068c7e2cee4b9a252612b2c8d7ba
data/README.md CHANGED
@@ -1,15 +1,6 @@
1
1
  # CNC
2
2
 
3
- Stop milling about and build rails apps faster with CNC.
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 'setup_inflections' do
6
- ActiveSupport::Inflector.inflections {|inflect| inflect.acronym 'CNC' }
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
@@ -1,3 +1,3 @@
1
1
  module CNC
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
data/lib/cnc.rb CHANGED
@@ -2,5 +2,4 @@ require "cnc/version"
2
2
  require "cnc/engine"
3
3
 
4
4
  module CNC
5
- # Your code goes here...
6
5
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Peterson
8
8
  autorequire:
9
- bindir: bin
9
+ bindir: exe
10
10
  cert_chain: []
11
- date: 2023-05-14 00:00:00.000000000 Z
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: 7.0.4.3
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: 7.0.4.3
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.3.7
101
+ rubygems_version: 3.5.21
73
102
  signing_key:
74
103
  specification_version: 4
75
104
  summary: Rails starter kit.