code_snippet_manager 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b205c39884940619838c148bde4136bdaea5640d516ef7abbb732c4a2bc94d06
4
- data.tar.gz: 4e9e40a1fab8cba51d7cdffba34ccc58de6d1b95a92378feaf445ffbb8de6c2a
3
+ metadata.gz: 2e42f34b5b8cbb39879b7f2657a84e4620480c651833defcbea27c8b92e3805a
4
+ data.tar.gz: c4170e6f676af45ebfa73c4c49d934294ed3c1d0bfd1c9cca2b86ba8814572aa
5
5
  SHA512:
6
- metadata.gz: e88293a742b4e3d55317075e94200d98e634f519d9ba52e2a1cb803565bff31b7b3fb1348c3305a140e767393f2d7f3e896598fb245249e48722dcade4d6253c
7
- data.tar.gz: e07a988128bfecfd07d1e891a9a4775776ebfdfddc5f51954a824dfe207ffc6658b0d024ef276ee1c8a7594c4f999c2dd023edb38128897175045bb1ee3563e0
6
+ metadata.gz: 8f95cbdda7cda8f3b4ee7fbeda886d161a19d004104a32200837db6843e6c0f7f0ea08246f1dc5bb068c18baadf1e98c8b6a4c2e910ba5bdcb12d0b657ca92cf
7
+ data.tar.gz: 9fccdc47ff66a40682aa61e918573ba20e55d5fa087905ec81ef7c17672825a30e2d1a3bea589b52da8cd79ddc85bc47b6f71a997424aa4abcc0014d27376807
data/.rubocop.yml CHANGED
@@ -1,5 +1,10 @@
1
1
  AllCops:
2
2
  TargetRubyVersion: 3.0
3
+ Include:
4
+ - 'lib/**/*.rb'
5
+ - spec/**/*.rb'
6
+ Exlude:
7
+ - 'bin'
3
8
 
4
9
  Style/StringLiterals:
5
10
  EnforcedStyle: double_quotes
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CodeSnippetManager
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.3"
5
5
  end
@@ -1,25 +1,22 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative "code_snippet_manager/version"
4
- require "tty-prompt"
4
+ require_relative "code_snippet_manager/configuration"
5
5
 
6
6
  module CodeSnippetManager
7
- def self.run
8
- prompt = TTY::Prompt.new
9
- choice = prompt.select("Choose your action:") do |menu|
10
- menu.choice name: "Add a new snippet", value: :add
11
- menu.choice name: "List all snippets", value: :list
12
- # Add more options here
13
- end
7
+ def self.included(base)
8
+ base.include Configuration
9
+ base.extend ClassMethods
10
+ end
14
11
 
15
- case choice
16
- when :add
17
- puts 'add'
18
- # Implementation for adding a new snippet
19
- when :list
20
- puts 'list'
21
- # Implementation for listing all snippets
22
- # More cases as necessary
12
+ module ClassMethods
13
+ def init(&block)
14
+ config_instance = ConfigurationInstance.new
15
+ config_instance.instance_eval(&block)
23
16
  end
24
17
  end
25
18
  end
19
+
20
+ class ConfigurationInstance
21
+ include CodeSnippetManager::Configuration
22
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: code_snippet_manager
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - jovan-sremacki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-04 00:00:00.000000000 Z
11
+ date: 2024-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-prompt