glimmer-dsl-swt 4.20.15.5 → 4.20.16.0

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: 9f6821f06b97a6c28c25a3b1cc20e54e02b360aac68ef2aafb7c57e7e8fb8818
4
- data.tar.gz: 2c14c0ab6171e18fea43a53af15597e2dd936e47dfda9ab4954d8f7d7a1a5bbf
3
+ metadata.gz: 82d9785cf890715947534ab665bf4f821cd79d67149e5bf7eb98d461d6457e46
4
+ data.tar.gz: 89ca9c71b72d865b69b526f3a9f7c1745e38df226ca32a71d800e34e80c35228
5
5
  SHA512:
6
- metadata.gz: 21bd62433c3ea4e6b6b2bb58ae26bf2db5ea06a8a74a56462120587ea5309a95444782a4eec0619a2b900bb2b76384f5099738d2ece518c6114b6bde6db064be
7
- data.tar.gz: 1db0ae532b03899d7350d547eea9b49703a9ca91e8768388a8ca6d6a30631bf2b6ace6114e09df343275c1520ad5c7841e8b78e523a1aa7f7b3a34828ee54fd4
6
+ metadata.gz: 76f88567594af281b05b30a521ec609c8b6ac305870addcd7e018f3cdbae79f1dc7d415900cc047057e4f3f970f14c2f4b46a5db4fa8ede29957d4b1ce42effc
7
+ data.tar.gz: fa5ee13574ea2c71de9e0d285ff3b4f3a9eea2e068292e6f7b86908f2b1d69e8412e40db28b68d4df9f93dab9ce749e41e50431fccbdbff141a28062330d1f0a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ### 4.20.16.0
4
+
5
+ - Fix API of `Glimmer::Launcher` by renaming `#application_paths` to `#application_path`
6
+
3
7
  ### 4.20.15.5
4
8
 
5
9
  - Upgrade to glimmer 2.1.5
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 SWT 4.20.15.5
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 SWT 4.20.16.0
2
2
  ## JRuby Desktop Development GUI Framework
3
3
  [![Gem Version](https://badge.fury.io/rb/glimmer-dsl-swt.svg)](http://badge.fury.io/rb/glimmer-dsl-swt)
4
4
  [![Travis CI](https://travis-ci.com/AndyObtiva/glimmer-dsl-swt.svg?branch=master)](https://travis-ci.com/github/AndyObtiva/glimmer-dsl-swt)
@@ -15,7 +15,7 @@
15
15
  [<img src="https://covers.oreillystatic.com/images/9780596519650/lrg.jpg" width=105 /><br />
16
16
  Featured in JRuby Cookbook](http://shop.oreilly.com/product/9780596519650.do) and [Chalmers/Gothenburg University Software Engineering Master's Lecture Material](http://www.cse.chalmers.se/~bergert/slides/guest_lecture_DSLs.pdf)
17
17
 
18
- [Glimmer DSL for SWT](https://rubygems.org/gems/glimmer-dsl-swt) 4.20.15.5 includes [SWT 4.20](https://download.eclipse.org/eclipse/downloads/drops4/R-4.20-202106111600/), which was released on June 11, 2021. Gem version numbers are in sync with the SWT library versions. The first two digits represent the SWT version number. The last two digits represent the minor and patch versions of Glimmer DSL for SWT. Note that SWT now supports AARCH64 on Mac and Linux, but it is not fully tested in Glimmer DSL for SWT yet, so deem its support experimental for the time being without guarantees for functionality until declared otherwise (please report any issues you may encounter).
18
+ [Glimmer DSL for SWT](https://rubygems.org/gems/glimmer-dsl-swt) 4.20.16.0 includes [SWT 4.20](https://download.eclipse.org/eclipse/downloads/drops4/R-4.20-202106111600/), which was released on June 11, 2021. Gem version numbers are in sync with the SWT library versions. The first two digits represent the SWT version number. The last two digits represent the minor and patch versions of Glimmer DSL for SWT. Note that SWT now supports AARCH64 on Mac and Linux, but it is not fully tested in Glimmer DSL for SWT yet, so deem its support experimental for the time being without guarantees for functionality until declared otherwise (please report any issues you may encounter).
19
19
 
20
20
  **Starting in version 4.20.0.0, [Glimmer DSL for SWT](https://rubygems.org/gems/glimmer-dsl-swt) comes with the new [***Shine***](/docs/reference/GLIMMER_GUI_DSL_SYNTAX.md#shine) syntax** for highly intuitive and visually expressive View/Model Attribute Mapping, relying on `<=>` for bidirectional (two-way) data-binding and `<=` for unidirectional (one-way) data-binding, providing an alternative to the `bind` keyword (keep in mind that it is still a beta, so default back to `bind` whenever needed).
21
21
 
@@ -322,7 +322,7 @@ jgem install glimmer-dsl-swt
322
322
 
323
323
  Or this command if you want a specific version:
324
324
  ```
325
- jgem install glimmer-dsl-swt -v 4.20.15.5
325
+ jgem install glimmer-dsl-swt -v 4.20.16.0
326
326
  ```
327
327
 
328
328
  `jgem` is JRuby's version of `gem` command.
@@ -350,7 +350,7 @@ Note: if you're using activerecord or activesupport, keep in mind that Glimmer u
350
350
 
351
351
  Add the following to `Gemfile`:
352
352
  ```
353
- gem 'glimmer-dsl-swt', '~> 4.20.15.5'
353
+ gem 'glimmer-dsl-swt', '~> 4.20.16.0'
354
354
  ```
355
355
 
356
356
  And, then run:
@@ -371,7 +371,7 @@ glimmer
371
371
  ```
372
372
 
373
373
  ```
374
- Glimmer (JRuby Desktop Development GUI Framework) - JRuby Gem: glimmer-dsl-swt v4.20.15.5
374
+ Glimmer (JRuby Desktop Development GUI Framework) - JRuby Gem: glimmer-dsl-swt v4.20.16.0
375
375
 
376
376
  Usage: glimmer [--bundler] [--pd] [--quiet] [--debug] [--log-level=VALUE] [[ENV_VAR=VALUE]...] [[-jruby-option]...] (application.rb or task[task_args]) [[application2.rb]...]
377
377
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.20.15.5
1
+ 4.20.16.0
Binary file
@@ -146,7 +146,7 @@ module Glimmer
146
146
  end
147
147
  end
148
148
 
149
- attr_reader :application_paths
149
+ attr_reader :application_path
150
150
  attr_reader :env_vars
151
151
  attr_reader :glimmer_options
152
152
  attr_reader :jruby_options
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glimmer-dsl-swt
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.20.15.5
4
+ version: 4.20.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andy Maleh
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-26 00:00:00.000000000 Z
11
+ date: 2021-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -712,7 +712,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
712
712
  - !ruby/object:Gem::Version
713
713
  version: '0'
714
714
  requirements: []
715
- rubygems_version: 3.2.27
715
+ rubygems_version: 3.1.6
716
716
  signing_key:
717
717
  specification_version: 4
718
718
  summary: Glimmer DSL for SWT (JRuby Desktop Development GUI Framework)