repo stringlengths 5 92 | file_url stringlengths 80 287 | file_path stringlengths 5 197 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:37:27 2026-01-04 17:58:21 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/bin/girb_runner.rb | bin/girb_runner.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/spec_helper.rb | spec/spec_helper.rb | ENV['APP_ENV'] = 'test'
require 'simplecov'
require 'simplecov-lcov'
require 'coveralls' if ENV['TRAVIS']
SimpleCov::Formatter::LcovFormatter.config.report_with_single_file = true
formatters = []
formatters << SimpleCov::Formatter::LcovFormatter
formatters << Coveralls::SimpleCov::Formatter if ENV['TRAVIS']
SimpleCov.... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/samples/elaborate/snake/model/game_spec.rb | spec/samples/elaborate/snake/model/game_spec.rb | require 'spec_helper'
require File.join(ROOT_PATH, 'samples/elaborate/snake/model/game')
RSpec.describe Snake::Model::Game do
it 'has a grid of vertebrae of width of 20 and height of 20' do
expect(subject).to be_a(Snake::Model::Game)
expect(subject.width).to eq(20)
expect(subject.height).to eq(20)
end... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/samples/elaborate/tic_tac_toe/board_spec.rb | spec/samples/elaborate/tic_tac_toe/board_spec.rb | require "spec_helper"
require File.join(ROOT_PATH, 'samples/elaborate/tic_tac_toe/board')
class TicTacToe
describe Board do
before do
@board = TicTacToe::Board.new
end
it "tests mark_center_x" do
expect(@board[2, 2].sign).to eq("")
@board.mark(2, 2)
expect(@board[2, 2].empty).... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/samples/elaborate/contact_manager/contact_manager_presenter_spec.rb | spec/samples/elaborate/contact_manager/contact_manager_presenter_spec.rb | require "spec_helper"
require File.join(ROOT_PATH, 'samples/elaborate/contact_manager/contact_manager_presenter')
require File.join(ROOT_PATH, 'samples/elaborate/contact_manager/contact')
class ContactManager
describe ContactManagerPresenter do
let(:contacts) do
[
Contact.new(:first_name => "Anne"... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/samples/elaborate/game_of_life/model/grid_spec.rb | spec/samples/elaborate/game_of_life/model/grid_spec.rb | require 'spec_helper'
require File.join(ROOT_PATH, 'samples/elaborate/game_of_life/model/grid')
class GameOfLife
module Model
describe Grid do
describe '#new' do
let(:row_count_default) {100}
let(:column_count_default) {100}
let(:row_count) {20}
let(:column_count) {10}
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__exec__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__exec__spec.rb | require "spec_helper"
module GlimmerSpec
context 'UI code execution' do
include Glimmer
after do
if @target
@target.async_exec do
@target.dispose
end
@target.start_event_loop
end
end
it 'asyncronously executes UI code' do
@target = shell {
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__swt__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__swt__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer swt" do
include Glimmer
it 'returns SWT constant value for a single symbol' do
expect(swt(:center)).to eq(SWT::CENTER)
end
it 'returns SWT constant value for a single string' do
expect(swt('center')).to eq(SWT::CENTER)
end
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__color__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__color__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Color" do
include Glimmer
it "tests label with RGBAlpha background/foreground color" do
@foreground = rgba(4, 40, 244, 50) # get singleton display
@foreground_color = @foreground.swt_color
@target = shell {
@label = label {... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__table__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__table__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Table Data Binding" do
include Glimmer
before(:all) do
class PersonCommunity
attr_accessor :groups
def initialize
@groups = []
end
end
class PersonGroup
attr_accessor :people
attr... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | true |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__listeners__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__listeners__spec.rb | require "spec_helper"
require 'os'
module GlimmerSpec
describe "Glimmer Listeners" do
include Glimmer
before(:all) do
class Person
attr_accessor :name, :age, :adult
end
class ::RedButton
include Glimmer::UI::CustomWidget
body {
button(swt_style) {
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__checkbox_group__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__checkbox_group__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Radio Group" do
include Glimmer
before(:all) do
class Person
attr_accessor :countries, :countries_options
def initialize
self.countries_options=["Canada", "US", "Mexico"]
end
end
class ::RedCheck... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__menu_item__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__menu_item__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Menu Item" do
include Glimmer
before(:all) do
class ::RedShell
include Glimmer::UI::CustomShell
body {
shell {
background :red
}
}
end
class ::HistoryMenu
include Gli... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__constant__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__constant__spec.rb | require "spec_helper"
java_import 'org.eclipse.swt.widgets.Composite'
module GlimmerSpec
describe "Glimmer Constant" do
include Glimmer
it "test shell with default layout and composite" do
@target = shell {
composite(:border, :no_focus) {
}
}
expect(@target.swt_widget.chi... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__import_swt_packages__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__import_swt_packages__spec.rb | require "spec_helper"
describe Glimmer do
include Glimmer
after do
Glimmer::Config.import_swt_packages = true
%w[
SomeApp
SomeWidget
SomeShell
].each do |constant|
Object.send(:remove_const, constant) if Object.const_defined?(constant)
end
Glimmer::Config.send(:remove... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__data_binding__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__data_binding__spec.rb | require 'spec_helper'
module GlimmerSpec
describe "Glimmer Data Binding" do
include Glimmer
before(:all) do
class Person
attr_accessor :name, :age, :adult, :name_selection
attr_reader :id
def initialize(id = nil)
@id = id
end
end
class PersonWith... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__scrolled_composite__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__scrolled_composite__spec.rb | require "spec_helper"
module GlimmerSpec
describe 'Glimmer Scrolled Composite' do
include Glimmer
it 'renders a scrolled composite with v_scroll and h_scroll styles' do
@target = shell {
@scrolled_composite = scrolled_composite {
@label = label {
text "Hello"
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__layout__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__layout__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Layout" do
include Glimmer
describe 'FillLayout' do
it "sets FillLayout with all properties specified via property methods" do
@target = shell {
@composite = composite {
fill_layout {
type :horizonta... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__message_box__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__message_box__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Message Box" do
include Glimmer
it 'renders a message box without specifying a shell' do
@target = @message_box = message_box {
text 'Hello'
message 'Hello, this is a greeting!'
}
expect(@message_box).to be_a... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__shine_data_binding__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__shine_data_binding__spec.rb | ## NOTE: Unsupported in Ruby 2 syntax
# require "spec_helper"
#
# require_relative "../../lib/shine"
#
# describe "Glimmer Shine Data Binding" do
# include Glimmer
#
# include_package 'org.eclipse.swt'
# include_package 'org.eclipse.swt.swt_widgets'
# include_package 'org.eclipse.swt.layout'
#
# after do
# @ta... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__image__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__image__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Image" do
include Glimmer
it "builds ImageProxy with file path" do
@target = @image = image(File.join(ROOT_PATH, 'images', 'glimmer-hello-world.png'))
expect(@target.bounds.width).to eq(132)
expect(@target.bounds.height).to ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__layout_data__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__layout_data__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Layout Data" do
include Glimmer
before(:all) do
class ::RedLabel
include Glimmer::UI::CustomWidget
body {
label(swt_style) {
background :red
}
}
end
end
after(:all) do
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__expand_item__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__expand_item__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Expand Item" do
include Glimmer
it "renders expand item composite with default layout" do
@target = shell {
@expand_bar = expand_bar {
@expand_item_composite = expand_item {
text "Expand Item 1"
label ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__list_data_binding__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__list_data_binding__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer List Data Binding" do
include Glimmer
before(:all) do
class Person
attr_accessor :country, :country_options
attr_accessor :provinces, :provinces_options
def initialize
self.country_options=[
"",
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__display__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__display__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Display" do
include Glimmer
context 'standard operation' do
after do
@target2.dispose if @target2
end
it "instantiates display" do
@target = display
expect(@target).to be_a(Glimmer::SWT::DisplayProxy)
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__drag_and_drop__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__drag_and_drop__spec.rb | require 'spec_helper'
require 'ostruct'
module GlimmerSpec
describe "Glimmer Drag & Drop" do
include Glimmer
before(:all) do
class ::RedLabel
include Glimmer::UI::CustomWidget
body {
label {
background :red
}
}
end
end
after(:... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__tree__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__tree__spec.rb | require 'spec_helper'
module GlimmerSpec
describe "Glimmer Tree Data Binding" do
include Glimmer
before(:all) do
class Person
attr_accessor :name, :age, :adult, :coworkers
def initialize
@coworkers = []
end
end
class Manager < Person
attr... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__sash_form__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__sash_form__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer SashForm" do
include Glimmer
it "sets weights using an array after content of sash_form" do
@target = shell {
@sash_form = sash_form {
@composite1 = composite
@composite2 = composite
weights [1, 2]
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer_spec.rb | spec/lib/glimmer/dsl/swt/glimmer_spec.rb | require "spec_helper"
module GlimmerSpec
describe Glimmer do
include Glimmer
it "tests shell with no args having default layout and singleton display instance" do
@target = shell
expect(@target).to_not be_nil
expect(@target.swt_widget).to_not be_nil
expect(@target.swt_widget).to be_... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__date_time__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__date_time__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Date Time" do
include Glimmer
before(:all) do
class Person
attr_accessor :dob
end
end
after(:all) do
%w[
Person
RedDateTime
].each do |constant|
Object.send(:remove_const, constant) if... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__data_binding_converters__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__data_binding_converters__spec.rb | require 'spec_helper'
module GlimmerSpec
describe "Glimmer Data Binding Converters" do
include Glimmer
before(:all) do
class Person
attr_accessor :name, :age, :spouse
end
end
after(:all) do
%w[
Person
].each do |constant|
Object.send(:remove_const, co... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__combo_data_binding__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__combo_data_binding__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Combo Data Binding" do
include Glimmer
before(:all) do
class Person
attr_accessor :country, :country_options
def initialize
self.country_options=["", "Canada", "US", "Mexico"]
end
end
class ::Red... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__observe__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__observe__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Observe" do
include Glimmer
before do
class Person
attr_accessor :name, :main_address, :addresses
def initialize
self.addresses = []
end
end
class Address
attr_accessor :main_stre... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__tab_item__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__tab_item__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Tab Item" do
include Glimmer
before(:all) do
class ::RedTabFolder
include Glimmer::UI::CustomWidget
body {
tab_folder {
background :red
}
}
end
end
after(:all) do
Ob... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__radio_group__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__radio_group__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Radio Group" do
include Glimmer
before(:all) do
class Person
attr_accessor :country, :country_options
def initialize
self.country_options=["Canada", "US", "Mexico"]
end
end
class ::RedRadioGroup
... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__font__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__font__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Font" do
include Glimmer
it "sets font via hash having name, height, and style" do
@target = shell {
@label = label {
font name: 'Times', height: 36, style: :normal
}
}
font_data = @label.swt_widget.getFo... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__styled_text__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__styled_text__spec.rb | require 'spec_helper'
module GlimmerSpec
describe "Glimmer Styled Text" do
include Glimmer
before(:all) do
class StyledTextPresenter
attr_accessor :text, :caret_offset, :selection_count, :selection, :top_index, :top_pixel
end
end
after(:all) do
%w[
StyledTextPr... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/dsl/swt/glimmer__dialog__spec.rb | spec/lib/glimmer/dsl/swt/glimmer__dialog__spec.rb | require "spec_helper"
module GlimmerSpec
describe "Glimmer Dialog" do
include Glimmer
it 'renders a dialog having dialog trim and application modal styles' do
@target = dialog
expect(@target).to be_a(Glimmer::SWT::ShellProxy)
expect(@target.swt_widget).to be_a(Shell)
expect(@target.... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/swt/table_proxy_spec.rb | spec/lib/glimmer/swt/table_proxy_spec.rb | require 'spec_helper'
module GlimmerSpec
describe Glimmer::SWT::TableProxy do
include Glimmer
before(:all) do
class Person
attr_accessor :name
def initialize(name)
@name = name
end
end
class Company
attr_accessor :name, :coworkers
def in... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/swt/tree_proxy_spec.rb | spec/lib/glimmer/swt/tree_proxy_spec.rb | require 'spec_helper'
module GlimmerSpec
describe Glimmer::SWT::TreeProxy do
include Glimmer
before(:all) do
class Person
attr_accessor :name, :coworkers
def initialize(name)
@name = name
@coworkers = []
end
end
class Company
def initia... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/swt/widget_proxy_spec.rb | spec/lib/glimmer/swt/widget_proxy_spec.rb | require "spec_helper"
module GlimmerSpec
describe Glimmer::SWT::WidgetProxy do
include Glimmer
it "wraps an existing swt_widget instead of initializing with init_args" do
@target = shell
@swt_scrolled_composite = ScrolledComposite.new(@target.swt_widget, swt(:none))
@scrolled_composite... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/swt/shell_proxy_spec.rb | spec/lib/glimmer/swt/shell_proxy_spec.rb | require "spec_helper"
module GlimmerSpec
describe Glimmer::SWT::ShellProxy do
include Glimmer
it "sets data('proxy')" do
@target = shell {
}
expect(@target.get_data('proxy')).to eq(@target)
end
unless OS.windows?
describe '#visible?' do
it 'returns false b... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/swt/swt_proxy_spec.rb | spec/lib/glimmer/swt/swt_proxy_spec.rb | require "spec_helper"
java_import 'org.eclipse.swt.SWT'
module GlimmerSpec
describe Glimmer::SWT::SWTProxy do
describe '.constant' do
it 'returns SWT constant value for symbol' do
expect(Glimmer::SWT::SWTProxy.constant(:border)).to eq(::SWT::BORDER)
end
it 'returns SWT constant value ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/data_binding/observable_model_spec.rb | spec/lib/glimmer/data_binding/observable_model_spec.rb | require "spec_helper"
module GlimmerSpec
describe Glimmer::DataBinding::ObservableModel do
before(:all) do
class Person
attr_accessor :name
end
class SpecObserver
include Glimmer::DataBinding::Observer
attr_reader :observed_name
def call(name)
@observe... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/ui/custom_shell_spec.rb | spec/lib/glimmer/ui/custom_shell_spec.rb | require "spec_helper"
module GlimmerSpec
describe Glimmer::UI::CustomShell do
include Glimmer
before(:all) do
class ::TimeShell
include Glimmer::UI::CustomShell
body {
shell {
alpha 0 # keep invisible while running specs
label {
text "It... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/spec/lib/glimmer/ui/custom_widget_spec.rb | spec/lib/glimmer/ui/custom_widget_spec.rb | require "spec_helper"
module GlimmerSpec
describe Glimmer::UI::CustomWidget do
include Glimmer
before(:all) do
class ::RedLabel
include Glimmer::UI::CustomWidget
body {
label(swt_style) {
background :red
}
}
end
class ::ColoredLabel... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer-dsl-swt.rb | lib/glimmer-dsl-swt.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/ext/glimmer.rb | lib/ext/glimmer.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/ext/rouge/themes/glimmer.rb | lib/ext/rouge/themes/glimmer.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/ext/rouge/themes/glimmer_dark.rb | lib/ext/rouge/themes/glimmer_dark.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/ext/glimmer/config.rb | lib/ext/glimmer/config.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/ui.rb | lib/glimmer/ui.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/rake_task.rb | lib/glimmer/rake_task.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/launcher.rb | lib/glimmer/launcher.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/util/proc_tracker.rb | lib/glimmer/util/proc_tracker.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/exec_expression.rb | lib/glimmer/dsl/swt/exec_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/image_expression.rb | lib/glimmer/dsl/swt/image_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/auto_exec_expression.rb | lib/glimmer/dsl/swt/auto_exec_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/pixel_expression.rb | lib/glimmer/dsl/swt/pixel_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/dnd_expression.rb | lib/glimmer/dsl/swt/dnd_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/rgba_expression.rb | lib/glimmer/dsl/swt/rgba_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/menu_expression.rb | lib/glimmer/dsl/swt/menu_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/shine_data_binding_expression.rb | lib/glimmer/dsl/swt/shine_data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/sync_exec_expression.rb | lib/glimmer/dsl/swt/sync_exec_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/color_expression.rb | lib/glimmer/dsl/swt/color_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/tray_expression.rb | lib/glimmer/dsl/swt/tray_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/message_box_expression.rb | lib/glimmer/dsl/swt/message_box_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/tray_item_expression.rb | lib/glimmer/dsl/swt/tray_item_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/custom_shape_expression.rb | lib/glimmer/dsl/swt/custom_shape_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/table_items_data_binding_expression.rb | lib/glimmer/dsl/swt/table_items_data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/tree_properties_expression.rb | lib/glimmer/dsl/swt/tree_properties_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/dialog_expression.rb | lib/glimmer/dsl/swt/dialog_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/shell_expression.rb | lib/glimmer/dsl/swt/shell_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/block_property_expression.rb | lib/glimmer/dsl/swt/block_property_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/property_expression.rb | lib/glimmer/dsl/swt/property_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/cursor_expression.rb | lib/glimmer/dsl/swt/cursor_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/radio_group_selection_data_binding_expression.rb | lib/glimmer/dsl/swt/radio_group_selection_data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/custom_widget_expression.rb | lib/glimmer/dsl/swt/custom_widget_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/expand_item_expression.rb | lib/glimmer/dsl/swt/expand_item_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/multiply_expression.rb | lib/glimmer/dsl/swt/multiply_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/observe_expression.rb | lib/glimmer/dsl/swt/observe_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/layout_data_expression.rb | lib/glimmer/dsl/swt/layout_data_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/data_binding_expression.rb | lib/glimmer/dsl/swt/data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/dsl.rb | lib/glimmer/dsl/swt/dsl.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/transform_expression.rb | lib/glimmer/dsl/swt/transform_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/combo_selection_data_binding_expression.rb | lib/glimmer/dsl/swt/combo_selection_data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/listener_expression.rb | lib/glimmer/dsl/swt/listener_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/animation_expression.rb | lib/glimmer/dsl/swt/animation_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/bind_expression.rb | lib/glimmer/dsl/swt/bind_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/swt_expression.rb | lib/glimmer/dsl/swt/swt_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/shape_expression.rb | lib/glimmer/dsl/swt/shape_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/c_tab_item_expression.rb | lib/glimmer/dsl/swt/c_tab_item_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/display_expression.rb | lib/glimmer/dsl/swt/display_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/font_expression.rb | lib/glimmer/dsl/swt/font_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/async_exec_expression.rb | lib/glimmer/dsl/swt/async_exec_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/checkbox_group_selection_data_binding_expression.rb | lib/glimmer/dsl/swt/checkbox_group_selection_data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/column_properties_expression.rb | lib/glimmer/dsl/swt/column_properties_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# ... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/layout_expression.rb | lib/glimmer/dsl/swt/layout_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/widget_expression.rb | lib/glimmer/dsl/swt/widget_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
AndyObtiva/glimmer-dsl-swt | https://github.com/AndyObtiva/glimmer-dsl-swt/blob/449cf07ada1ec965ae2ac91715ccdf22488df4ca/lib/glimmer/dsl/swt/list_selection_data_binding_expression.rb | lib/glimmer/dsl/swt/list_selection_data_binding_expression.rb | # Copyright (c) 2007-2025 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# d... | ruby | MIT | 449cf07ada1ec965ae2ac91715ccdf22488df4ca | 2026-01-04T17:52:38.125591Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.