glimmer-dsl-libui 0.6.0.pre.1 → 0.6.0.pre.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 106b243e8f5420d898d1c8a847ffb465194cf0b12af0f8b3c566389fc9f8b1e3
4
- data.tar.gz: 28591ee6e9b8e91f24d41f74a457f093e1923af247915d1a31ef8d6465589b57
3
+ metadata.gz: 92740dabc6bcd24626b2f02847b37e81f7a713f787d0dda73457e57ad7c92316
4
+ data.tar.gz: 92eabe4c6043527bd218ee867e564883be14d295fd00b6a6ee5d2b1fd6762e64
5
5
  SHA512:
6
- metadata.gz: 59c52fe1dc4ae80c36e78e271bc259c55be5e775fb7bcf7e1d5a3ae240d00a4444c7184c3b80d1e2717f0370f02ab1db3f21380ed0f5de3e28819705d84111d8
7
- data.tar.gz: 868b71ed7280a0f388ad5f55457d85f245ab697ed1540210062a4e4dcb93b1e2d978666c4b6e1a4f90258df299122b04a6e8d79319d20de951306a999cca7816
6
+ metadata.gz: 20469c207b97d91102f8c864449668c30ae7f34c82c0c8c4c054c1ca63e5bba12810fe437aa78e0fe67e8950b415ff59a401bb8289e267305585b53bec408977
7
+ data.tar.gz: 6a56bc7b09ddaf51b2f766da5dd6066cff9db9f93a6e39cd80f2217f4b1ee1f0a7cd3e9cb78c6ae149d4f007bca2cd4b2d335858cc35621ac6048fcfae969f67
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 0.6.0.pre.2
4
+
5
+ - Fix issue "Cannot add rows to a table that started empty": https://github.com/AndyObtiva/glimmer-dsl-libui/issues/36
6
+
3
7
  ## 0.6.0.pre.1
4
8
 
5
9
  - `window` `#open` method as alias to `#show`
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.6.0.pre.1
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.6.0.pre.2
2
2
  ## Prerequisite-Free Ruby Desktop Development GUI Library
3
3
  ### The Quickest Way From Zero To GUI
4
4
  [![Gem Version](https://badge.fury.io/rb/glimmer-dsl-libui.svg)](http://badge.fury.io/rb/glimmer-dsl-libui)
@@ -542,7 +542,7 @@ gem install glimmer-dsl-libui
542
542
  Or install via Bundler `Gemfile`:
543
543
 
544
544
  ```ruby
545
- gem 'glimmer-dsl-libui', '~> 0.6.0.pre.1'
545
+ gem 'glimmer-dsl-libui', '~> 0.6.0.pre.2'
546
546
  ```
547
547
 
548
548
  Test that installation worked by running the [Meta-Example](#examples):
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.0.pre.1
1
+ 0.6.0.pre.2
Binary file
@@ -86,7 +86,7 @@ module Glimmer
86
86
  if rows.nil?
87
87
  @cell_rows
88
88
  else
89
- if rows != @cell_rows
89
+ if !rows.equal?(@cell_rows)
90
90
  @cell_rows = rows
91
91
  @cell_rows = @cell_rows.to_a if @cell_rows.is_a?(Enumerator)
92
92
  end
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.6.0.pre.1
4
+ version: 0.6.0.pre.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Maleh