-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.7.8 changes (data-binding improvements):
- Allow passing `BindExpression` only 1 argument (e.g. presenter.todos) or 1 argument + 1 hash (e.g. presenter.todos, on_read: -> {}) - `ObserveExpression` always uses `ModelBinding` for arguments to leverage its advanced features, like nested/computed/indexed/keyed data-binding - In Opal, `ModelBinding` converters/hooks do not require an argument anymore (e.g. can invoke `after_write: -> { do_something }` without block args) - Fix issue whereby observing `model, :collection` was not firing on collection changes, but observing `model.collection` was firing on collection changes (now both fire on collection changes)
- Loading branch information
1 parent
30dcaec
commit 049ae43
Showing
10 changed files
with
41 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ unless jeweler_required.nil? | |
gem.homepage = "http://github.com/AndyObtiva/glimmer" | ||
gem.license = "MIT" | ||
gem.summary = %Q{Glimmer (DSL Framework for Ruby GUI and More)} | ||
gem.description = %Q{Glimmer is a Ruby DSL Framework for Ruby GUI and More, consisting of a DSL Engine and a Data-Binding Library (including Observer Design Pattern, Observable Model, Observable Array, and Observable Hash). Used in Glimmer DSL for SWT (JRuby Desktop Development GUI Framework), Glimmer DSL for Opal (Pure Ruby Web GUI and Auto-Webifier of Desktop Apps), Glimmer DSL for LibUI (Prerequisite-Free Ruby Desktop Development GUI Library and Winner of Fukuoka Ruby Award Competition 2022 Special Award), Glimmer DSL for Tk (Ruby Tk Desktop Development GUI Library), Glimmer DSL for GTK (Ruby-GNOME Desktop Development GUI Library), Glimmer DSL for FX (FOX Toolkit Ruby Desktop Development GUI Library), Glimmer DSL for WX (wxWidgets Ruby Desktop Development GUI Library), Glimmer DSL for Swing (JRuby Swing Desktop Development GUI Library), Glimmer DSL for JFX (JRuby JavaFX Desktop Development GUI Library), Glimmer DSL for XML (& HTML), and Glimmer DSL for CSS.} | ||
gem.description = %Q{Glimmer is a Ruby DSL Framework for Ruby GUI and More, consisting of a DSL Engine and a Data-Binding Library (including Observer Design Pattern, Observable Model, Observable Array, and Observable Hash). Used in Glimmer DSL for SWT (JRuby Desktop Development GUI Framework), Glimmer DSL for Web (Ruby in the Browser Web Frontend Framework), Glimmer DSL for LibUI (Prerequisite-Free Ruby Desktop Development GUI Library and Winner of Fukuoka Ruby Award Competition 2022 Special Award), Glimmer DSL for Tk (Ruby Tk Desktop Development GUI Library), Glimmer DSL for GTK (Ruby-GNOME Desktop Development GUI Library), Glimmer DSL for FX (FOX Toolkit Ruby Desktop Development GUI Library), Glimmer DSL for WX (wxWidgets Ruby Desktop Development GUI Library), Glimmer DSL for Swing (JRuby Swing Desktop Development GUI Library), Glimmer DSL for JFX (JRuby JavaFX Desktop Development GUI Library), Glimmer DSL for XML (& HTML), and Glimmer DSL for CSS.} | ||
gem.email = "[email protected]" | ||
gem.authors = ["AndyMaleh"] | ||
# gem.executables = ['glimmer', 'girb'] # moved to glimmer-dsl-swt for now | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.7.7 | ||
2.7.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,16 +2,16 @@ | |
# DO NOT EDIT THIS FILE DIRECTLY | ||
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' | ||
# -*- encoding: utf-8 -*- | ||
# stub: glimmer 2.7.7 ruby lib | ||
# stub: glimmer 2.7.8 ruby lib | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "glimmer".freeze | ||
s.version = "2.7.7".freeze | ||
s.version = "2.7.8" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= | ||
s.require_paths = ["lib".freeze] | ||
s.authors = ["AndyMaleh".freeze] | ||
s.date = "2024-01-10" | ||
s.date = "2024-07-01" | ||
s.description = "Glimmer is a Ruby DSL Framework for Ruby GUI and More, consisting of a DSL Engine and a Data-Binding Library (including Observer Design Pattern, Observable Model, Observable Array, and Observable Hash). Used in Glimmer DSL for SWT (JRuby Desktop Development GUI Framework), Glimmer DSL for Opal (Pure Ruby Web GUI and Auto-Webifier of Desktop Apps), Glimmer DSL for LibUI (Prerequisite-Free Ruby Desktop Development GUI Library and Winner of Fukuoka Ruby Award Competition 2022 Special Award), Glimmer DSL for Tk (Ruby Tk Desktop Development GUI Library), Glimmer DSL for GTK (Ruby-GNOME Desktop Development GUI Library), Glimmer DSL for FX (FOX Toolkit Ruby Desktop Development GUI Library), Glimmer DSL for WX (wxWidgets Ruby Desktop Development GUI Library), Glimmer DSL for Swing (JRuby Swing Desktop Development GUI Library), Glimmer DSL for JFX (JRuby JavaFX Desktop Development GUI Library), Glimmer DSL for XML (& HTML), and Glimmer DSL for CSS.".freeze | ||
s.email = "[email protected]".freeze | ||
s.extra_rdoc_files = [ | ||
|
@@ -53,22 +53,22 @@ Gem::Specification.new do |s| | |
] | ||
s.homepage = "http://github.com/AndyObtiva/glimmer".freeze | ||
s.licenses = ["MIT".freeze] | ||
s.rubygems_version = "3.5.3".freeze | ||
s.rubygems_version = "3.4.10".freeze | ||
s.summary = "Glimmer (DSL Framework for Ruby GUI and More)".freeze | ||
|
||
s.specification_version = 4 | ||
|
||
s.add_runtime_dependency(%q<array_include_methods>.freeze, [">= 1.4.0".freeze, "< 1.6.0".freeze]) | ||
s.add_runtime_dependency(%q<facets>.freeze, [">= 3.1.0".freeze, "< 4.0.0".freeze]) | ||
s.add_development_dependency(%q<rspec-mocks>.freeze, ["~> 3.5.0".freeze]) | ||
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0".freeze]) | ||
s.add_development_dependency(%q<puts_debuggerer>.freeze, ["~> 0.13".freeze]) | ||
s.add_development_dependency(%q<rake>.freeze, [">= 10.1.0".freeze, "< 14.0.0".freeze]) | ||
s.add_development_dependency(%q<jeweler>.freeze, [">= 2.0.0".freeze, "< 3.0.0".freeze]) | ||
s.add_development_dependency(%q<rdoc>.freeze, [">= 6.2.1".freeze, "< 7.0.0".freeze]) | ||
s.add_development_dependency(%q<coveralls>.freeze, [">= 0".freeze]) | ||
s.add_development_dependency(%q<simplecov>.freeze, ["~> 0.16.1".freeze]) | ||
s.add_development_dependency(%q<simplecov-lcov>.freeze, ["~> 0.7.0".freeze]) | ||
s.add_development_dependency(%q<rake-tui>.freeze, ["> 0".freeze]) | ||
s.add_runtime_dependency(%q<array_include_methods>.freeze, [">= 1.4.0", "< 1.6.0"]) | ||
s.add_runtime_dependency(%q<facets>.freeze, [">= 3.1.0", "< 4.0.0"]) | ||
s.add_development_dependency(%q<rspec-mocks>.freeze, ["~> 3.5.0"]) | ||
s.add_development_dependency(%q<rspec>.freeze, ["~> 3.5.0"]) | ||
s.add_development_dependency(%q<puts_debuggerer>.freeze, [">= 1.0.1"]) | ||
s.add_development_dependency(%q<rake>.freeze, [">= 10.1.0", "< 14.0.0"]) | ||
s.add_development_dependency(%q<jeweler>.freeze, [">= 2.0.0", "< 3.0.0"]) | ||
s.add_development_dependency(%q<rdoc>.freeze, [">= 6.2.1", "< 7.0.0"]) | ||
s.add_development_dependency(%q<coveralls>.freeze, [">= 0"]) | ||
s.add_development_dependency(%q<simplecov>.freeze, ["~> 0.16.1"]) | ||
s.add_development_dependency(%q<simplecov-lcov>.freeze, ["~> 0.7.0"]) | ||
s.add_development_dependency(%q<rake-tui>.freeze, ["> 0"]) | ||
end | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters