cnc 0.1.4 → 0.1.6

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: 7839cbe6156c9e89640d56f53a98b41398362fc28d21b5914e4c52efeaa16705
4
- data.tar.gz: c8419733674fd2a46613a25a3bde83d0766f55d068a5565057d5b56f405ead23
3
+ metadata.gz: 51e3b73ab88e990cdb1fb24bf9e7ccbb06042a4e8829c4c6216d14dab350fc43
4
+ data.tar.gz: 2578f0bee1b7f83f2d5604da4347f4f1ff83cbd7f0f7acf9b08921e5da2f1694
5
5
  SHA512:
6
- metadata.gz: 3b084618068293d9de59e04c506e09cb4d00719ee72e896373e36a8400cbfe9e1d8c1c84875751f4f05d1892220dc4a2749a7686ed6987cce52b9f89a72c633d
7
- data.tar.gz: 764bcc76bea5064c904f26f7cfc9c43507be07827123754630136e0554db99bfb0af67bf97406ef6f3ad3a53cc467fb66a9e12c9d86d075f66308b1b3cde32e2
6
+ metadata.gz: 659f625e7a2e4e1af0bb99e1f5d9476770dea0fd79a3c2ae795ba0cc3f5ba90054a46e808246155e66be873b299cd0310f2968f4bffbd293530e87c5da5a6037
7
+ data.tar.gz: c076ff3abae955f61a1a042fda3a1401624237300676e075d2528222e6c846f8d2aaaac8aa603bc5259a21ba65bc98b571576e9a79443c8ce751737b32b50320
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "cnc/version"
4
+
3
5
  module CNC
4
6
  module CLI
5
7
  module Commands
data/lib/cnc/engine.rb CHANGED
@@ -1,6 +1,9 @@
1
+ require "active_support"
2
+
1
3
  module CNC
2
4
  class Engine < ::Rails::Engine
3
5
  isolate_namespace CNC
6
+ config.autoload_paths += paths["lib"].to_a
4
7
 
5
8
  initializer "cnc.inflections" do
6
9
  ActiveSupport::Inflector.inflections { _1.acronym "CNC" }
data/lib/cnc/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module CNC
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.6"
3
3
  end
data/lib/cnc.rb CHANGED
@@ -1,5 +1,7 @@
1
1
  require "cnc/version"
2
2
  require "cnc/engine"
3
3
 
4
+ require_relative "object"
5
+
4
6
  module CNC
5
7
  end
data/lib/object.rb ADDED
@@ -0,0 +1,30 @@
1
+ Object.class_eval do
2
+ def rubymine(file, line = 0)
3
+ puts "rubymine --line #{line || 0} #{file} "
4
+ system("rubymine --line #{line || 0} #{file} ")
5
+ end
6
+
7
+ def locate_method(name)
8
+ method(name)
9
+ rescue NameError
10
+ instance_method(name)
11
+ end
12
+
13
+ def vim(method_name = nil)
14
+ if method_name
15
+ file, line = locate_method(method_name).source_location
16
+ elsif is_a?(Method)
17
+ file, line = source_location
18
+ elsif is_a?(Module)
19
+ file, line = module_parent.const_source_location(name)
20
+ else
21
+ raise "What is this? I can't edit this..."
22
+ end
23
+
24
+ # return system("tmux split-window -h \"vim #{file} +#{line}\"") if file
25
+ # return system("$VISUAL --goto #{file}:#{line || 0}") if file
26
+ return rubymine(file, line || 0) if file
27
+
28
+ puts 'Source not available. Is this a C extension?'
29
+ end
30
+ end
data/rubocop.yml ADDED
@@ -0,0 +1,66 @@
1
+ inherit_gem:
2
+ rubocop-rails-omakase: rubocop.yml
3
+
4
+ AllCops:
5
+ # ParserEngine: parser_prism
6
+ TargetRubyVersion: 3.3
7
+
8
+ # wrapped invocations should line up arguments
9
+ Layout/ArgumentAlignment:
10
+ EnforcedStyle: with_first_argument
11
+
12
+ # Ensure the proper ordering of class macros, etc.
13
+ Layout/ClassStructure:
14
+ Enabled: true
15
+
16
+ # `end` should be aligned with the keyword that started the block
17
+ Layout/EndAlignment:
18
+ EnforcedStyleAlignWith: keyword
19
+
20
+ # Line up adjacent assignments
21
+ Layout/ExtraSpacing:
22
+ ForceEqualSignAlignment: true
23
+
24
+ # disabled by rubocop-rails-omakase
25
+ Layout/IndentationConsistency:
26
+ EnforcedStyle: normal
27
+ Enabled: true
28
+
29
+ # disabled by rubocop-rails-omakase
30
+ Layout/IndentationWidth:
31
+ Width: 2
32
+ Enabled: true
33
+
34
+ # No spaces inside array literals: `[1, 2]`. Matches method invocation: `foo(1, 2)`.
35
+ Layout/SpaceInsideArrayLiteralBrackets:
36
+ EnforcedStyle: no_space
37
+
38
+ # `{|x| x }` No need for the first space
39
+ Layout/SpaceInsideBlockBraces:
40
+ SpaceBeforeBlockParameters: false
41
+
42
+ # No spaces inside hash literals: `{a: 1}`. Matches method invocation: `foo(a: 1)`
43
+ Layout/SpaceInsideHashLiteralBraces:
44
+ EnforcedStyle: no_space
45
+
46
+ # `if x = 1` is fine and should be used relatively often
47
+ Lint/AssignmentInCondition:
48
+ Enabled: false
49
+
50
+ # ensure test filenames include "test"
51
+ Minitest/TestFileName:
52
+ Enabled: true
53
+
54
+ # Prefer `refute` over `assert_not`. `assert_not_*` are rails-only.
55
+ Rails/RefuteMethods:
56
+ EnforcedStyle: refute
57
+
58
+ # `{x:}` preferred over `x: x` or `:x => x`. Ignored for > ruby-3.3 code.
59
+ Style/HashSyntax:
60
+ EnforcedShorthandSyntax: always
61
+
62
+ # Prefer "x" over 'x' for all files.
63
+ Style/StringLiterals:
64
+ Enabled: true
65
+ EnforcedStyle: double_quotes
66
+ Include: ["*"]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cnc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Peterson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-23 00:00:00.000000000 Z
11
+ date: 2024-11-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop-rails-omakase
@@ -60,7 +60,6 @@ executables:
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - ".rubocop.yml"
64
63
  - MIT-LICENSE
65
64
  - README.md
66
65
  - Rakefile
@@ -78,7 +77,9 @@ files:
78
77
  - lib/cnc/cli/commands.rb
79
78
  - lib/cnc/engine.rb
80
79
  - lib/cnc/version.rb
80
+ - lib/object.rb
81
81
  - lib/tasks/cnc_tasks.rake
82
+ - rubocop.yml
82
83
  homepage: https://github.com/craft-concept/cnc
83
84
  licenses:
84
85
  - MIT
data/.rubocop.yml DELETED
@@ -1,40 +0,0 @@
1
- inherit_gem:
2
- rubocop-rails-omakase: rubocop.yml
3
-
4
- AllCops:
5
- # ParserEngine: parser_prism
6
- TargetRubyVersion: 3.3
7
-
8
- Layout/ArgumentAlignment:
9
- EnforcedStyle: with_first_argument
10
-
11
- Layout/ClassStructure:
12
- Enabled: true
13
-
14
- Layout/EndAlignment:
15
- EnforcedStyleAlignWith: keyword
16
-
17
- Layout/IndentationConsistency:
18
- EnforcedStyle: normal
19
- Enabled: true
20
-
21
- Layout/IndentationWidth:
22
- Width: 2
23
- Enabled: true
24
-
25
- Layout/SpaceInsideArrayLiteralBrackets:
26
- EnforcedStyle: no_space
27
-
28
- Layout/SpaceInsideBlockBraces:
29
- SpaceBeforeBlockParameters: false
30
-
31
- Layout/SpaceInsideHashLiteralBraces:
32
- EnforcedStyle: no_space
33
-
34
- Style/HashSyntax:
35
- EnforcedShorthandSyntax: always
36
-
37
- Style/StringLiterals:
38
- Enabled: true
39
- EnforcedStyle: double_quotes
40
- # Include: ["*"]