archestry_lookup 0.0.12 → 0.0.13
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/archestry_lookup.gemspec +3 -3
- data/bin/archestry_lookup.rb +19 -0
- data/exe/archestry_lookup +12 -0
- metadata +6 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e83d7f0c8962de62e866ac7d1d6e6a715edc1ef09c9bf4c9b2f084389ab9d60d
|
|
4
|
+
data.tar.gz: 39b762ae71142b4855f4d3cc66c9d14cb931ee97d1e36da373d209b727e32c7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 654717db2d614d7e66580437b2ac8394b9268fcb05f96b03dec964aaad60fda2451d21752bb64e4ba8c5c70284019cac3ba10fbf3b707e9a9d55082d04f21895
|
|
7
|
+
data.tar.gz: a63d14b093e10c108b81b79afef5e6df4a53c191bf9f97c9b35f686b5aa9874f8dfa50faf70c2017842ddde21de049646b23a456fd4caf888003bbb643359e05
|
data/archestry_lookup.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'archestry_lookup'.freeze
|
|
7
|
-
s.version = '0.0.
|
|
7
|
+
s.version = '0.0.13'
|
|
8
8
|
s.authors = ['Eugene Istomin'.freeze]
|
|
9
9
|
s.email = ['info@innosense.org'.freeze]
|
|
10
10
|
s.license = 'CC-BY-SA-4.0'
|
|
@@ -15,8 +15,8 @@ Gem::Specification.new do |s|
|
|
|
15
15
|
|
|
16
16
|
s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
17
17
|
s.bindir = 'exe'
|
|
18
|
-
s.executables =
|
|
19
|
-
s.require_paths = ['lib'.freeze]
|
|
18
|
+
s.executables = %w[archestry_lookup]
|
|
19
|
+
s.require_paths = ['lib'.freeze, 'bin'.freeze]
|
|
20
20
|
|
|
21
21
|
s.required_ruby_version = '>= 2.5'
|
|
22
22
|
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
######## ####### ######## ####### ######## ########
|
|
4
|
+
## / / / / License \ \ \ \
|
|
5
|
+
## Copyleft culture, Copyright (C) is prohibited here
|
|
6
|
+
## This work is licensed under a CC BY-SA 4.0
|
|
7
|
+
## Creative Commons Attribution-ShareAlike 4.0 License
|
|
8
|
+
## Refer to the http://creativecommons.org/licenses/by-sa/4.0/
|
|
9
|
+
######## ####### ######## ####### ######## ########
|
|
10
|
+
## / / / / Code Climate \ \ \ \
|
|
11
|
+
## Language = ruby
|
|
12
|
+
## Indent = space; 4 chars;
|
|
13
|
+
######## ####### ######## ####### ######## ########
|
|
14
|
+
|
|
15
|
+
require "rubygems"
|
|
16
|
+
archestry_lookup_gemspec = Gem::Specification.load(File.expand_path("../../archestry_lookup.gemspec", __FILE__))
|
|
17
|
+
archestry_lookup_gemspec.instance_variable_set(:@full_gem_path, File.expand_path("../..", __FILE__))
|
|
18
|
+
archestry_lookup_gemspec.activate if archestry_lookup_gemspec.respond_to?(:activate)
|
|
19
|
+
load File.expand_path("../../exe/archestry_lookup", __FILE__)
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# frozen_string_literal: true
|
|
3
|
+
|
|
4
|
+
# Exit cleanly from an early interrupt
|
|
5
|
+
Signal.trap("INT") do
|
|
6
|
+
#Bundler.ui.debug("\n#{caller.join("\n")}") if defined?(Bundler)
|
|
7
|
+
exit 1
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
base_path = File.expand_path("../lib", __dir__)
|
|
11
|
+
p base_path
|
|
12
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: archestry_lookup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eugene Istomin
|
|
@@ -55,7 +55,8 @@ dependencies:
|
|
|
55
55
|
description: Dialect lookup
|
|
56
56
|
email:
|
|
57
57
|
- info@innosense.org
|
|
58
|
-
executables:
|
|
58
|
+
executables:
|
|
59
|
+
- archestry_lookup
|
|
59
60
|
extensions: []
|
|
60
61
|
extra_rdoc_files: []
|
|
61
62
|
files:
|
|
@@ -63,6 +64,8 @@ files:
|
|
|
63
64
|
- ".gitlab-ci.yml"
|
|
64
65
|
- Gemfile
|
|
65
66
|
- archestry_lookup.gemspec
|
|
67
|
+
- bin/archestry_lookup.rb
|
|
68
|
+
- exe/archestry_lookup
|
|
66
69
|
- lib/archestry_lookup.rb
|
|
67
70
|
- lib/context/_refactor_dialog/constructors/DockedGroupings2AppFunctions.rb
|
|
68
71
|
- lib/context/_refactor_dialog/constructors/Element2ModSend.rb
|
|
@@ -104,6 +107,7 @@ post_install_message:
|
|
|
104
107
|
rdoc_options: []
|
|
105
108
|
require_paths:
|
|
106
109
|
- lib
|
|
110
|
+
- bin
|
|
107
111
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
108
112
|
requirements:
|
|
109
113
|
- - ">="
|