cnc 0.1.3 → 0.1.5
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/.rubocop.yml +2 -40
- data/exe/cnc +8 -0
- data/lib/cnc/cli/commands.rb +2 -0
- data/lib/cnc/engine.rb +3 -0
- data/lib/cnc/version.rb +1 -1
- data/lib/cnc.rb +2 -0
- data/lib/object.rb +30 -0
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9397b7a6d013228b0aacbdb960d2d1e926af5aed6b7942f267de5be171e5e86d
|
4
|
+
data.tar.gz: 9f3327dc68947db9dc7f24e1b5366e98b168bc1fe3a42bc86e78c714d02b7e37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d34b3543d0a2d90b235f96001a11fb1d19c0d9d525a14df9f689b7024153b1152182e38be8a4a86420749ecfcd995110462093be7cf8e3a7158135e6997997ad
|
7
|
+
data.tar.gz: 2f24d60005dd07b903ee6cb89143c0accdf2bd45236f1015c4576363c4f242685c60216bfce14f12f174a4f7465fe75fd120f3fe2e184c4e72b82785101d9652
|
data/.rubocop.yml
CHANGED
@@ -1,40 +1,2 @@
|
|
1
|
-
|
2
|
-
|
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: ["*"]
|
1
|
+
inherit_from:
|
2
|
+
- rubocop.yml
|
data/exe/cnc
ADDED
data/lib/cnc/cli/commands.rb
CHANGED
data/lib/cnc/engine.rb
CHANGED
data/lib/cnc/version.rb
CHANGED
data/lib/cnc.rb
CHANGED
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
|
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
|
+
version: 0.1.5
|
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-
|
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
|
@@ -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,10 +73,12 @@ 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
|
78
80
|
- lib/cnc/version.rb
|
81
|
+
- lib/object.rb
|
79
82
|
- lib/tasks/cnc_tasks.rake
|
80
83
|
homepage: https://github.com/craft-concept/cnc
|
81
84
|
licenses:
|