cnc 0.1.2 → 0.1.4

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/exe/cnc +8 -0
  4. data/lib/cnc/version.rb +1 -1
  5. metadata +4 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76260bcab9682f3afb6be739d81bc8cf9ce29a987c29298565555616f8bc6a3b
4
- data.tar.gz: b4a96224c5494b54f7f4de48f99620291095af15477737e52a62eafa83b27464
3
+ metadata.gz: 7839cbe6156c9e89640d56f53a98b41398362fc28d21b5914e4c52efeaa16705
4
+ data.tar.gz: c8419733674fd2a46613a25a3bde83d0766f55d068a5565057d5b56f405ead23
5
5
  SHA512:
6
- metadata.gz: c2855f7d55c9ccedd49536b9cde6cb1a8def4aa32354a828802c37a2722392dbb68072a38bf18ab547b622e96ca05f3b16a0b84820cfdd5dc382df13fd3f35ad
7
- data.tar.gz: a4ff05c495d0274f6c73a99a0285760184afde61d831c5b9e63689a9f833045d420d9a8644adef3899e0646e3c6158b5f804f0d9094d40d6f2def227b6d96ba5
6
+ metadata.gz: 3b084618068293d9de59e04c506e09cb4d00719ee72e896373e36a8400cbfe9e1d8c1c84875751f4f05d1892220dc4a2749a7686ed6987cce52b9f89a72c633d
7
+ data.tar.gz: 764bcc76bea5064c904f26f7cfc9c43507be07827123754630136e0554db99bfb0af67bf97406ef6f3ad3a53cc467fb66a9e12c9d86d075f66308b1b3cde32e2
data/.rubocop.yml CHANGED
@@ -2,7 +2,7 @@ inherit_gem:
2
2
  rubocop-rails-omakase: rubocop.yml
3
3
 
4
4
  AllCops:
5
- ParserEngine: parser_prism
5
+ # ParserEngine: parser_prism
6
6
  TargetRubyVersion: 3.3
7
7
 
8
8
  Layout/ArgumentAlignment:
data/exe/cnc ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "dry/cli"
5
+
6
+ require "cnc/cli/commands"
7
+
8
+ Dry::CLI.new(CNC::CLI::Commands).call
data/lib/cnc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module CNC
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cnc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Peterson
@@ -55,7 +55,8 @@ dependencies:
55
55
  description: Stop milling about and build rails apps faster with CNC.
56
56
  email:
57
57
  - jeff@concept.love
58
- executables: []
58
+ executables:
59
+ - cnc
59
60
  extensions: []
60
61
  extra_rdoc_files: []
61
62
  files:
@@ -72,6 +73,7 @@ files:
72
73
  - app/models/cnc/application_record.rb
73
74
  - app/views/layouts/cnc/application.html.erb
74
75
  - config/routes.rb
76
+ - exe/cnc
75
77
  - lib/cnc.rb
76
78
  - lib/cnc/cli/commands.rb
77
79
  - lib/cnc/engine.rb