y_support 2.4.5 → 2.4.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 +4 -4
- data/lib/y_support.rb +1 -1
- data/lib/y_support/all.rb +0 -1
- data/lib/y_support/core_ext/symbol/misc.rb +1 -1
- data/lib/y_support/inert_recorder.rb +1 -1
- data/lib/y_support/name_magic.rb +1 -1
- data/lib/y_support/name_magic/namespace.rb +7 -2
- data/lib/y_support/version.rb +1 -1
- data/lib/y_support/x.rb +13 -1
- data/test/misc_test.rb +1 -1
- data/test/unicode_test.rb +1 -1
- data/y_support.gemspec +0 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: eb3706957a1022fffe6b271c1585bf23dc27a922
|
4
|
+
data.tar.gz: 9a632cf5c99aef509bc144adf2f179e3d51331ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 811f88237a88ec79297ba24a517d4f8923333e5cf49a97759e95eca881a124975b2d754addcd288fa414780ea93e18cb47d3f2c46c89e6526f9319b314e6407b
|
7
|
+
data.tar.gz: c8d6ed7aa7cac621d6e576fa1ddf939c359e561a3de2f4846e34802ec4ac7d18cad42eb26d0e532915c560d88ec0cf5425a5965e90ce7b75ab6031091f204705
|
data/lib/y_support.rb
CHANGED
data/lib/y_support/all.rb
CHANGED
data/lib/y_support/name_magic.rb
CHANGED
@@ -224,7 +224,7 @@ module NameMagic::Namespace
|
|
224
224
|
# Get the list of all instances.
|
225
225
|
ii = instances
|
226
226
|
# If arg belongs to the list, just return it back.
|
227
|
-
return arg if ii.
|
227
|
+
return arg if ii.any? { |i| arg.equal? i }
|
228
228
|
# Assume that arg is an instance name.
|
229
229
|
name = arg.to_sym
|
230
230
|
registry = __instances__
|
@@ -396,7 +396,12 @@ module NameMagic::Namespace
|
|
396
396
|
# Some constants cause unexpected problems. The line
|
397
397
|
# below is the result of trial-and-error programming
|
398
398
|
# and I am afraid to delete it quite yet.
|
399
|
-
|
399
|
+
|
400
|
+
ɱ == Object and case const_ß
|
401
|
+
when :Config then next
|
402
|
+
when :TimeoutError then next
|
403
|
+
end
|
404
|
+
|
400
405
|
# Those constants that raise certain errors upon attempts
|
401
406
|
# to access their contents are handled by this
|
402
407
|
# begin-rescue-end statement.
|
data/lib/y_support/version.rb
CHANGED
data/lib/y_support/x.rb
CHANGED
@@ -1,9 +1,21 @@
|
|
1
|
-
require 'gtk2'
|
2
1
|
require_relative '../y_support'
|
2
|
+
require 'gtk2'
|
3
3
|
|
4
4
|
# Assets related to X windows control.
|
5
5
|
#
|
6
6
|
module YSupport::X
|
7
|
+
# ==================================================================
|
8
|
+
#
|
9
|
+
# Notice: Assets related to X windows control do not really belong
|
10
|
+
# to YSupport. I should keep them somewhere else. I will keep this
|
11
|
+
# file in YSupport 2.x for historical reasons. Module YSupport::X
|
12
|
+
# will be removed in YSupport 3.0, which will no longer cover tools
|
13
|
+
# for X windows control.
|
14
|
+
#
|
15
|
+
warn "YSupport::X is obsolete!"
|
16
|
+
#
|
17
|
+
# ==================================================================
|
18
|
+
|
7
19
|
# Echo a string to the primary X clip; `xsel -b -i`.
|
8
20
|
#
|
9
21
|
def echo_primary_clipboard string
|
data/test/misc_test.rb
CHANGED
data/test/unicode_test.rb
CHANGED
data/y_support.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: y_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- boris
|
@@ -52,20 +52,6 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: shoulda
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - ">="
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: '0'
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - ">="
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: '0'
|
69
55
|
description: Methods and assets of general utility. NameMagic, core extensions, typing
|
70
56
|
etc.
|
71
57
|
email:
|
@@ -169,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
169
155
|
version: '0'
|
170
156
|
requirements: []
|
171
157
|
rubyforge_project:
|
172
|
-
rubygems_version: 2.
|
158
|
+
rubygems_version: 2.5.1
|
173
159
|
signing_key:
|
174
160
|
specification_version: 4
|
175
161
|
summary: Support library used by Y gems.
|