glimmer-dsl-libui 0.13.0 → 0.13.1
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/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/VERSION +1 -1
- data/glimmer-dsl-libui.gemspec +0 -0
- data/lib/glimmer/libui.rb +5 -1
- metadata +5 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e385cd77c53aa0d88ae57065031652b46a43cae650673ec5e8fb19d17f51abc
|
|
4
|
+
data.tar.gz: 28934fa1b0ba7682ce73d65671238f21b0c00de17d265df02564bb7fe8cf0488
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4284ac332f566ed15b121c088f16401949c507a8bce32406c98457ba2adb74107f5ed9a0913741017587b713a502bdf1659473ac5631c57d1fd7159515a670d5
|
|
7
|
+
data.tar.gz: 25463eca0013a0517de153bd3bf757c1e0384b0bb675741735281441d24d8cd4054ee3261bb4e27e72c57650c95ca72de73afad475b83019070c3bc8ef3523be
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=85 />](https://github.com/AndyObtiva/glimmer) Glimmer DSL for LibUI 0.13.
|
|
1
|
+
# [<img src="https://raw.githubusercontent.com/AndyObtiva/glimmer/master/images/glimmer-logo-hi-res.png" height=85 />](https://github.com/AndyObtiva/glimmer) Glimmer DSL for LibUI 0.13.1
|
|
2
2
|
## Prerequisite-Free Ruby Desktop Development Cross-Platform Native GUI Library ([Fukuoka Award Winning](https://andymaleh.blogspot.com/2022/02/glimmer-dsl-for-libui-wins-fukuoka-ruby.html))
|
|
3
3
|
### The Quickest Way From Zero To GUI
|
|
4
4
|
[](http://badge.fury.io/rb/glimmer-dsl-libui)
|
|
@@ -468,7 +468,7 @@ gem install glimmer-dsl-libui
|
|
|
468
468
|
Or install via Bundler `Gemfile`:
|
|
469
469
|
|
|
470
470
|
```ruby
|
|
471
|
-
gem 'glimmer-dsl-libui', '~> 0.13.
|
|
471
|
+
gem 'glimmer-dsl-libui', '~> 0.13.1'
|
|
472
472
|
```
|
|
473
473
|
|
|
474
474
|
Test that installation worked by running the [Glimmer Meta-Example](#examples):
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.13.
|
|
1
|
+
0.13.1
|
data/glimmer-dsl-libui.gemspec
CHANGED
|
Binary file
|
data/lib/glimmer/libui.rb
CHANGED
|
@@ -195,7 +195,11 @@ module Glimmer
|
|
|
195
195
|
end
|
|
196
196
|
|
|
197
197
|
def x11_colors
|
|
198
|
-
|
|
198
|
+
begin
|
|
199
|
+
require 'color/rgb/colors'
|
|
200
|
+
rescue
|
|
201
|
+
require 'color'
|
|
202
|
+
end
|
|
199
203
|
Color::RGB.constants.reject {|c| c.to_s.upcase == c.to_s}.map(&:to_s).map(&:underscore).map(&:to_sym)
|
|
200
204
|
end
|
|
201
205
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: glimmer-dsl-libui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.13.
|
|
4
|
+
version: 0.13.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Andy Maleh
|
|
@@ -115,22 +115,16 @@ dependencies:
|
|
|
115
115
|
name: color
|
|
116
116
|
requirement: !ruby/object:Gem::Requirement
|
|
117
117
|
requirements:
|
|
118
|
-
- - "
|
|
119
|
-
- !ruby/object:Gem::Version
|
|
120
|
-
version: 2.0.0
|
|
121
|
-
- - "<"
|
|
118
|
+
- - "~>"
|
|
122
119
|
- !ruby/object:Gem::Version
|
|
123
|
-
version:
|
|
120
|
+
version: '1.8'
|
|
124
121
|
type: :runtime
|
|
125
122
|
prerelease: false
|
|
126
123
|
version_requirements: !ruby/object:Gem::Requirement
|
|
127
124
|
requirements:
|
|
128
|
-
- - "
|
|
129
|
-
- !ruby/object:Gem::Version
|
|
130
|
-
version: 2.0.0
|
|
131
|
-
- - "<"
|
|
125
|
+
- - "~>"
|
|
132
126
|
- !ruby/object:Gem::Version
|
|
133
|
-
version:
|
|
127
|
+
version: '1.8'
|
|
134
128
|
- !ruby/object:Gem::Dependency
|
|
135
129
|
name: rake
|
|
136
130
|
requirement: !ruby/object:Gem::Requirement
|