walk_up 0.0.5 → 0.0.6

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: c043b6263be9b68cb3b976d1f4e94f0a8aa45664f1971f6370b2ddd639324d99
4
- data.tar.gz: d29f7a8badf42bec62fef098036e95d525b39e1541f88f5cbcc35cb656b87d47
3
+ metadata.gz: 5f7a286d41687c31f3f9408660077db61af6869517f115ffc1398d8d96cb15af
4
+ data.tar.gz: 97fafc5fd26405e5939b0e5d4dcd8665b7edca3ae0fa7d88de5c36479cc6b98a
5
5
  SHA512:
6
- metadata.gz: 81b4a8dfe8c5dafb624e729a70c791a0a6761d50894fa710e114c61892dd37da0542a05a0c338c00d71b95e3e552b3cbf5c9b71d9ba0eff6da20fa508019bad7
7
- data.tar.gz: 1b9a1d7e65e84ffc5ea0abf0883ffb6db20e470986aa52c0fb0f5fb0d774158cc45a21d253e06ada40ddf360900972ba045547685a424857b013f5547a23cb54
6
+ metadata.gz: 3cb4e9c8886198ceec2af870ca9dfefc1f55dea30bb599182e99297494eda56607e1f2b49514e3999d6108165ff20e34f157bb705088f01a930969d832a65f84
7
+ data.tar.gz: 0ba6bee3b4fa5d471530d61fd99dd866985566ddac5e71217ca876c6b9fab4ec694477e59fb57e316524d0ea4a0e9150f5857d2758d99560ad39c9b4c07884a9
data/LICENSE.md ADDED
@@ -0,0 +1 @@
1
+ This work is licensed under the Creative Commons Attribution-NoDerivatives 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-nd/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA.
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Setup
2
+
3
+ Everything is detailed in the `documentation/setup.md`!
data/main/Gemfile ADDED
@@ -0,0 +1,25 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "http://rubygems.org"
4
+
5
+ ruby ">=2.5.0"
6
+
7
+ gem "walk_up", :path => File.expand_path(__dir__)
8
+
9
+ gem 'deep_clone'
10
+ gem 'logging'
11
+
12
+ gem 'plist', :require => false
13
+
14
+ group :test do
15
+ gem 'minitest'
16
+ gem 'rake'
17
+ gem 'simplecov'
18
+ gem 'simplecov-lcov'
19
+ end
20
+
21
+ group :development do
22
+ gem 'rubocop'
23
+ gem 'solargraph'
24
+ gem 'yard'
25
+ end
data/main/Gemfile.lock ADDED
@@ -0,0 +1,101 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ walk_up (0.0.0)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ ast (2.4.2)
10
+ backport (1.2.0)
11
+ benchmark (0.1.1)
12
+ deep_clone (0.0.1)
13
+ diff-lcs (1.4.4)
14
+ docile (1.4.0)
15
+ e2mmap (0.1.0)
16
+ jaro_winkler (1.5.4)
17
+ kramdown (2.3.1)
18
+ rexml
19
+ kramdown-parser-gfm (1.1.0)
20
+ kramdown (~> 2.0)
21
+ little-plugger (1.1.4)
22
+ logging (2.3.0)
23
+ little-plugger (~> 1.1)
24
+ multi_json (~> 1.14)
25
+ mini_portile2 (2.6.1)
26
+ minitest (5.14.4)
27
+ multi_json (1.15.0)
28
+ nokogiri (1.12.4)
29
+ mini_portile2 (~> 2.6.1)
30
+ racc (~> 1.4)
31
+ parallel (1.20.1)
32
+ parser (3.0.2.0)
33
+ ast (~> 2.4.1)
34
+ plist (3.6.0)
35
+ racc (1.5.2)
36
+ rainbow (3.0.0)
37
+ rake (13.0.6)
38
+ regexp_parser (2.1.1)
39
+ reverse_markdown (2.0.0)
40
+ nokogiri
41
+ rexml (3.2.5)
42
+ rubocop (1.20.0)
43
+ parallel (~> 1.10)
44
+ parser (>= 3.0.0.0)
45
+ rainbow (>= 2.2.2, < 4.0)
46
+ regexp_parser (>= 1.8, < 3.0)
47
+ rexml
48
+ rubocop-ast (>= 1.9.1, < 2.0)
49
+ ruby-progressbar (~> 1.7)
50
+ unicode-display_width (>= 1.4.0, < 3.0)
51
+ rubocop-ast (1.11.0)
52
+ parser (>= 3.0.1.1)
53
+ ruby-progressbar (1.11.0)
54
+ simplecov (0.21.2)
55
+ docile (~> 1.1)
56
+ simplecov-html (~> 0.11)
57
+ simplecov_json_formatter (~> 0.1)
58
+ simplecov-html (0.12.3)
59
+ simplecov-lcov (0.8.0)
60
+ simplecov_json_formatter (0.1.3)
61
+ solargraph (0.43.0)
62
+ backport (~> 1.2)
63
+ benchmark
64
+ bundler (>= 1.17.2)
65
+ diff-lcs (~> 1.4)
66
+ e2mmap
67
+ jaro_winkler (~> 1.5)
68
+ kramdown (~> 2.3)
69
+ kramdown-parser-gfm (~> 1.1)
70
+ parser (~> 3.0)
71
+ reverse_markdown (>= 1.0.5, < 3)
72
+ rubocop (>= 0.52)
73
+ thor (~> 1.0)
74
+ tilt (~> 2.0)
75
+ yard (~> 0.9, >= 0.9.24)
76
+ thor (1.1.0)
77
+ tilt (2.0.10)
78
+ unicode-display_width (2.0.0)
79
+ yard (0.9.26)
80
+
81
+ PLATFORMS
82
+ ruby
83
+
84
+ DEPENDENCIES
85
+ deep_clone
86
+ logging
87
+ minitest
88
+ plist
89
+ rake
90
+ rubocop
91
+ simplecov
92
+ simplecov-lcov
93
+ solargraph
94
+ walk_up!
95
+ yard
96
+
97
+ RUBY VERSION
98
+ ruby 2.7.3p183
99
+
100
+ BUNDLED WITH
101
+ 2.1.4
data/main/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 Jeff Hykin
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/main/gem.gemspec ADDED
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+ require "date"
3
+ require 'fileutils'
4
+
5
+ if ENV["FORNIX_FOLDER"] == nil
6
+ exit 1
7
+ end
8
+
9
+ FileUtils.cd(ENV["FORNIX_FOLDER"])
10
+
11
+ Gem::Specification.new do |spec|
12
+ spec.name = 'walk_up'
13
+ spec.version = IO.read(ENV["FORNIX_FOLDER"]+"/gem_tools/version.txt")
14
+ spec.date = Date.today.to_s
15
+ spec.summary = 'A simple library to walk up a folder path'
16
+ spec.authors = ["Jeff Hykin",]
17
+ spec.homepage = 'https://github.com/jeff-hykin/walk_up.git'
18
+ spec.license = 'MIT'
19
+ spec.description = <<-desc
20
+ desc
21
+ spec.files = Dir["{main}/**/*", "LICENSE", "*.md"]
22
+
23
+ spec.add_runtime_dependency 'deep_clone', '~> 0.0.1', '>= 0.0.1'
24
+ spec.required_ruby_version = '>=2.5.0'
25
+
26
+ spec.metadata = {
27
+ "yard.run" => "yri",
28
+ }
29
+ end
data/main/main/main.rb ADDED
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ puts "You found main!"
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: walk_up
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Hykin
@@ -9,27 +9,55 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2021-09-09 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: deep_clone
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.0.1
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.0.1
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: 0.0.1
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 0.0.1
13
33
  description: ''
14
34
  email:
15
35
  executables: []
16
36
  extensions: []
17
37
  extra_rdoc_files: []
18
38
  files:
19
- - "/Users/jeffhykin/repos/walk_up/main/main.rb"
39
+ - LICENSE.md
40
+ - README.md
41
+ - main/Gemfile
42
+ - main/Gemfile.lock
43
+ - main/LICENSE
44
+ - main/gem.gemspec
45
+ - main/main/main.rb
46
+ - main/walk_up-0.0.5.gem
20
47
  homepage: https://github.com/jeff-hykin/walk_up.git
21
48
  licenses:
22
49
  - MIT
23
- metadata: {}
50
+ metadata:
51
+ yard.run: yri
24
52
  post_install_message:
25
53
  rdoc_options: []
26
54
  require_paths:
27
- - "/Users/jeffhykin/repos/walk_up/main"
55
+ - lib
28
56
  required_ruby_version: !ruby/object:Gem::Requirement
29
57
  requirements:
30
58
  - - ">="
31
59
  - !ruby/object:Gem::Version
32
- version: 2.2.0
60
+ version: 2.5.0
33
61
  required_rubygems_version: !ruby/object:Gem::Requirement
34
62
  requirements:
35
63
  - - ">="
@@ -1,3 +0,0 @@
1
- module Testing
2
- puts "testing worked"
3
- end