win_gui 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +43 -0
- data/Rakefile +58 -0
- data/VERSION +1 -0
- data/book_code/early_success/bundle.rb +34 -0
- data/book_code/early_success/english.txt +1 -0
- data/book_code/early_success/jruby_basics.rb +47 -0
- data/book_code/early_success/windows_basics.rb +97 -0
- data/book_code/guessing/locknote.rb +379 -0
- data/book_code/guessing/monkeyshines.rb +14 -0
- data/book_code/guessing/note.rb +120 -0
- data/book_code/guessing/note_spec.rb +175 -0
- data/book_code/guessing/replay.rb +21 -0
- data/book_code/guessing/seed.rb +9 -0
- data/book_code/guessing/spec_helper.rb +69 -0
- data/book_code/guessing/windows_gui.rb +247 -0
- data/book_code/home_stretch/junquenote.rb +151 -0
- data/book_code/home_stretch/locknote.rb +180 -0
- data/book_code/home_stretch/note.rb +144 -0
- data/book_code/home_stretch/note_spec.rb +191 -0
- data/book_code/home_stretch/spec_helper.rb +55 -0
- data/book_code/home_stretch/swing_gui.rb +50 -0
- data/book_code/home_stretch/windows_gui.rb +232 -0
- data/book_code/junquenote/exports.sh +10 -0
- data/book_code/junquenote/jruby_mac.sh +10 -0
- data/book_code/junquenote/junquenote_app.rb +262 -0
- data/book_code/novite/Rakefile +10 -0
- data/book_code/novite/app/controllers/application.rb +18 -0
- data/book_code/novite/app/controllers/guests_controller.rb +28 -0
- data/book_code/novite/app/controllers/parties_controller.rb +77 -0
- data/book_code/novite/app/helpers/application_helper.rb +11 -0
- data/book_code/novite/app/helpers/guests_helper.rb +10 -0
- data/book_code/novite/app/helpers/parties_helper.rb +10 -0
- data/book_code/novite/app/models/guest.rb +11 -0
- data/book_code/novite/app/models/party.rb +32 -0
- data/book_code/novite/app/models/party_mailer.rb +19 -0
- data/book_code/novite/app/views/layouts/application.rhtml +44 -0
- data/book_code/novite/app/views/parties/new.html.erb +42 -0
- data/book_code/novite/app/views/parties/show.html.erb +43 -0
- data/book_code/novite/app/views/party_mailer/invite.erb +17 -0
- data/book_code/novite/config/boot.rb +117 -0
- data/book_code/novite/config/database.yml +19 -0
- data/book_code/novite/config/environment.rb +67 -0
- data/book_code/novite/config/environments/development.rb +29 -0
- data/book_code/novite/config/environments/production.rb +27 -0
- data/book_code/novite/config/environments/test.rb +30 -0
- data/book_code/novite/config/initializers/inflections.rb +18 -0
- data/book_code/novite/config/initializers/mime_types.rb +13 -0
- data/book_code/novite/config/routes.rb +47 -0
- data/book_code/novite/db/migrate/001_create_parties.rb +26 -0
- data/book_code/novite/db/migrate/002_create_guests.rb +23 -0
- data/book_code/novite/db/schema.rb +41 -0
- data/book_code/novite/log/empty.txt +0 -0
- data/book_code/novite/public/.htaccess +40 -0
- data/book_code/novite/public/404.html +38 -0
- data/book_code/novite/public/422.html +38 -0
- data/book_code/novite/public/500.html +38 -0
- data/book_code/novite/public/dispatch.cgi +10 -0
- data/book_code/novite/public/dispatch.fcgi +24 -0
- data/book_code/novite/public/dispatch.rb +18 -0
- data/book_code/novite/public/favicon.ico +0 -0
- data/book_code/novite/public/images/rails.png +0 -0
- data/book_code/novite/public/index.html +285 -0
- data/book_code/novite/public/javascripts/application.js +10 -0
- data/book_code/novite/public/javascripts/controls.js +971 -0
- data/book_code/novite/public/javascripts/dragdrop.js +980 -0
- data/book_code/novite/public/javascripts/effects.js +1128 -0
- data/book_code/novite/public/javascripts/prototype.js +4233 -0
- data/book_code/novite/public/robots.txt +5 -0
- data/book_code/novite/script/about +3 -0
- data/book_code/novite/script/console +3 -0
- data/book_code/novite/script/destroy +3 -0
- data/book_code/novite/script/generate +3 -0
- data/book_code/novite/script/performance/benchmarker +3 -0
- data/book_code/novite/script/performance/profiler +3 -0
- data/book_code/novite/script/performance/request +3 -0
- data/book_code/novite/script/plugin +3 -0
- data/book_code/novite/script/process/inspector +3 -0
- data/book_code/novite/script/process/reaper +3 -0
- data/book_code/novite/script/process/spawner +3 -0
- data/book_code/novite/script/runner +3 -0
- data/book_code/novite/script/server +3 -0
- data/book_code/novite/test/test_helper.rb +46 -0
- data/book_code/one_more_thing/applescript.rb +68 -0
- data/book_code/one_more_thing/note_spec.rb +50 -0
- data/book_code/one_more_thing/spec_helper.rb +17 -0
- data/book_code/one_more_thing/textedit-pure.rb +28 -0
- data/book_code/one_more_thing/textedit.applescript +26 -0
- data/book_code/one_more_thing/textedit.rb +32 -0
- data/book_code/one_more_thing/textnote.rb +87 -0
- data/book_code/simplify/junquenote.rb +48 -0
- data/book_code/simplify/locknote.rb +46 -0
- data/book_code/simplify/note.rb +35 -0
- data/book_code/simplify/note_spec.rb +28 -0
- data/book_code/simplify/swing_gui.rb +45 -0
- data/book_code/simplify/windows_gui.rb +232 -0
- data/book_code/simplify/windows_gui_spec.rb +35 -0
- data/book_code/story/invite.story +19 -0
- data/book_code/story/journal.txt +29 -0
- data/book_code/story/novite_stories.rb +156 -0
- data/book_code/story/party.rb +149 -0
- data/book_code/story/password.rb +61 -0
- data/book_code/story/password.story +26 -0
- data/book_code/story/rsvp.story +29 -0
- data/book_code/tables/TestTime.html +93 -0
- data/book_code/tables/TestTimeSample.html +63 -0
- data/book_code/tables/calculate_time.rb +39 -0
- data/book_code/tables/calculator.rb +108 -0
- data/book_code/tables/calculator_actions.rb +27 -0
- data/book_code/tables/calculator_spec.rb +47 -0
- data/book_code/tables/fit.rb +32 -0
- data/book_code/tables/matrix.rb +109 -0
- data/book_code/tables/pseudocode.rb +17 -0
- data/book_code/tubes/book_selenium.rb +67 -0
- data/book_code/tubes/book_watir.rb +60 -0
- data/book_code/tubes/dragdrop.html +81 -0
- data/book_code/tubes/html_capture.rb +33 -0
- data/book_code/tubes/joke_list.rb +67 -0
- data/book_code/tubes/list_spec.rb +41 -0
- data/book_code/tubes/search_spec.rb +32 -0
- data/book_code/tubes/selenium_example.rb +66 -0
- data/book_code/tubes/selenium_link.rb +23 -0
- data/book_code/tubes/web_server.rb +14 -0
- data/book_code/windows/wgui.rb +29 -0
- data/book_code/windows/wobj.rb +25 -0
- data/book_code/windows/wsh.rb +25 -0
- data/book_code/with_rspec/empty_spec.rb +13 -0
- data/book_code/with_rspec/junquenote.rb +60 -0
- data/book_code/with_rspec/locknote.rb +129 -0
- data/book_code/with_rspec/note_spec.rb +32 -0
- data/book_code/with_rspec/should_examples.rb +18 -0
- data/exp/exp.rb +6 -0
- data/exp/exp_encodings.rb +40 -0
- data/exp/exp_enum_windows.rb +60 -0
- data/exp/exp_quik.rb +38 -0
- data/exp/exp_wsh.rb +115 -0
- data/exp/old/windows_basics.rb +80 -0
- data/exp/old/wnote.rb +80 -0
- data/exp/old/wnote_spec.rb +20 -0
- data/features/step_definitions/win_gui_steps.rb +0 -0
- data/features/support/env.rb +4 -0
- data/features/win_gui.feature +9 -0
- data/lib/note/java/jemmy.jar +0 -0
- data/lib/note/java/jnote.rb +48 -0
- data/lib/note/java/jruby_basics.rb +37 -0
- data/lib/note/java/junquenote_app.rb +262 -0
- data/lib/note/java/note_spec.rb +20 -0
- data/lib/note/win/locknote.rb +19 -0
- data/lib/note.rb +15 -0
- data/lib/win_gui/constants.rb +66 -0
- data/lib/win_gui/string_extensions.rb +24 -0
- data/lib/win_gui/win_gui.rb +274 -0
- data/lib/win_gui/window.rb +70 -0
- data/lib/win_gui.rb +3 -0
- data/spec/note/win/locknote_spec.rb +7 -0
- data/spec/spec.opts +2 -0
- data/spec/spec_helper.rb +100 -0
- data/spec/test_apps/locknote/LockNote.exe +0 -0
- data/spec/win_gui/string_extensions_spec.rb +61 -0
- data/spec/win_gui/win_gui_spec.rb +733 -0
- data/spec/win_gui/window_spec.rb +124 -0
- metadata +251 -0
@@ -0,0 +1,124 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__), ".." , "spec_helper" )
|
2
|
+
|
3
|
+
module GuiTest
|
4
|
+
|
5
|
+
describe Window do
|
6
|
+
before(:each) { @app = launch_test_app }
|
7
|
+
after(:each){ close_test_app }
|
8
|
+
|
9
|
+
context 'creating' do
|
10
|
+
it 'can be wrapped around any existing window' do
|
11
|
+
any_handle = find_window(nil, nil)
|
12
|
+
use{ Window.new any_handle }
|
13
|
+
end
|
14
|
+
|
15
|
+
it 'can be wrapped around specific window' do
|
16
|
+
use{ Window.new @app.handle }
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context 'manipulating' do
|
21
|
+
|
22
|
+
it 'has handle property equal to underlying window handle' do
|
23
|
+
any_handle = find_window(nil, nil)
|
24
|
+
any = Window.new any_handle
|
25
|
+
any.handle.should == any_handle
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'has text property equal to underlying window text(title)' do
|
29
|
+
@app.text.should == TEST_WIN_TITLE
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'closes when asked nicely' do
|
33
|
+
@app.close
|
34
|
+
sleep TEST_SLEEP_DELAY # needed to ensure window had enough time to close down
|
35
|
+
find_window(nil, TEST_WIN_TITLE).should == nil
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'waits f0r window to disappear (NB: this happens before handle is released!)' do
|
39
|
+
start = Time.now
|
40
|
+
@app.close
|
41
|
+
@app.wait_for_close
|
42
|
+
(Time.now - start).should be <= WG_CLOSE_TIMEOUT
|
43
|
+
window_visible?(@app.handle).should be false
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
context '.top_level class method' do
|
48
|
+
it 'finds any top-level window (title = nil) and wraps it in a Window object' do
|
49
|
+
use { @win = Window.top_level(title = nil, timeout_sec = 3) }
|
50
|
+
Window.should === @win
|
51
|
+
end
|
52
|
+
|
53
|
+
it 'finds top-level window by title and wraps it in a Window object' do
|
54
|
+
win = Window.top_level( TEST_WIN_TITLE, 1)
|
55
|
+
win.handle.should == @app.handle
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
context '#child' do
|
60
|
+
spec { use { @control = @app.child(title_class_id = nil) }}
|
61
|
+
|
62
|
+
it 'finds any child window(control) if given nil' do
|
63
|
+
@app.child(nil).should_not == nil
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'finds child window(control) by class' do
|
67
|
+
@app.child(TEST_TEXTAREA_CLASS).should_not == nil
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'finds child window(control) by name' do
|
71
|
+
pending 'Need to find control with short name'
|
72
|
+
@app.child(TEST_TEXTAREA_TEXT).should_not == nil
|
73
|
+
end
|
74
|
+
|
75
|
+
it 'finds child window(control) by control ID' do
|
76
|
+
pending 'Need to find some control ID'
|
77
|
+
@app.child(TEST_TEXTAREA_ID).should_not == nil
|
78
|
+
end
|
79
|
+
|
80
|
+
it 'raises error if wrong control is given' do
|
81
|
+
expect { @app.child('Impossible Control')}.to raise_error "Control 'Impossible Control' not found"
|
82
|
+
end
|
83
|
+
it 'substitutes & for _ when searching by title ("&Yes" type controls)'
|
84
|
+
|
85
|
+
end
|
86
|
+
|
87
|
+
context '#children' do
|
88
|
+
spec { use { children = @app.children }}
|
89
|
+
|
90
|
+
it 'returns an array' do
|
91
|
+
@app.children.should be_a_kind_of(Array)
|
92
|
+
end
|
93
|
+
|
94
|
+
it 'returns an array of all child windows to the given window ' do
|
95
|
+
children = @app.children
|
96
|
+
children.should be_a_kind_of Array
|
97
|
+
children.should_not be_empty
|
98
|
+
children.should have(2).elements
|
99
|
+
children.each{|child| child?(@app.handle, child.handle).should == true }
|
100
|
+
get_class_name(children.last.handle).should == TEST_TEXTAREA_CLASS
|
101
|
+
end
|
102
|
+
|
103
|
+
# it 'finds child window(control) by name' do
|
104
|
+
# pending 'Need to find control with short name'
|
105
|
+
# @app.child(TEST_TEXTAREA_TEXT).should_not == nil
|
106
|
+
# end
|
107
|
+
#
|
108
|
+
# it 'finds child window(control) by control ID' do
|
109
|
+
# pending 'Need to find some control ID'
|
110
|
+
# @app.child(TEST_TEXTAREA_ID).should_not == nil
|
111
|
+
# end
|
112
|
+
#
|
113
|
+
# it 'raises error if wrong control is given' do
|
114
|
+
# expect { @app.child('Impossible Control')}.to raise_error "Control 'Impossible Control' not found"
|
115
|
+
# end
|
116
|
+
# it 'substitutes & for _ when searching by title ("&Yes" type controls)'
|
117
|
+
|
118
|
+
end
|
119
|
+
|
120
|
+
context '#click' do
|
121
|
+
it 'emulates clicking of the control identified by id'
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
metadata
ADDED
@@ -0,0 +1,251 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: win_gui
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- arvicco
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-01-20 00:00:00 +03:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: win32-api
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.4.5
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: rspec
|
27
|
+
type: :development
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.2.9
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: cucumber
|
37
|
+
type: :development
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: "0"
|
44
|
+
version:
|
45
|
+
description: Rubyesque interfaces and wrappers for Win32 API GUI functions
|
46
|
+
email: arvitallian@gmail.com
|
47
|
+
executables: []
|
48
|
+
|
49
|
+
extensions: []
|
50
|
+
|
51
|
+
extra_rdoc_files:
|
52
|
+
- LICENSE
|
53
|
+
- README.rdoc
|
54
|
+
files:
|
55
|
+
- .document
|
56
|
+
- .gitignore
|
57
|
+
- LICENSE
|
58
|
+
- README.rdoc
|
59
|
+
- Rakefile
|
60
|
+
- VERSION
|
61
|
+
- book_code/early_success/bundle.rb
|
62
|
+
- book_code/early_success/english.txt
|
63
|
+
- book_code/early_success/jruby_basics.rb
|
64
|
+
- book_code/early_success/windows_basics.rb
|
65
|
+
- book_code/guessing/locknote.rb
|
66
|
+
- book_code/guessing/monkeyshines.rb
|
67
|
+
- book_code/guessing/note.rb
|
68
|
+
- book_code/guessing/note_spec.rb
|
69
|
+
- book_code/guessing/replay.rb
|
70
|
+
- book_code/guessing/seed.rb
|
71
|
+
- book_code/guessing/spec_helper.rb
|
72
|
+
- book_code/guessing/windows_gui.rb
|
73
|
+
- book_code/home_stretch/junquenote.rb
|
74
|
+
- book_code/home_stretch/locknote.rb
|
75
|
+
- book_code/home_stretch/note.rb
|
76
|
+
- book_code/home_stretch/note_spec.rb
|
77
|
+
- book_code/home_stretch/spec_helper.rb
|
78
|
+
- book_code/home_stretch/swing_gui.rb
|
79
|
+
- book_code/home_stretch/windows_gui.rb
|
80
|
+
- book_code/junquenote/exports.sh
|
81
|
+
- book_code/junquenote/jruby_mac.sh
|
82
|
+
- book_code/junquenote/junquenote_app.rb
|
83
|
+
- book_code/novite/Rakefile
|
84
|
+
- book_code/novite/app/controllers/application.rb
|
85
|
+
- book_code/novite/app/controllers/guests_controller.rb
|
86
|
+
- book_code/novite/app/controllers/parties_controller.rb
|
87
|
+
- book_code/novite/app/helpers/application_helper.rb
|
88
|
+
- book_code/novite/app/helpers/guests_helper.rb
|
89
|
+
- book_code/novite/app/helpers/parties_helper.rb
|
90
|
+
- book_code/novite/app/models/guest.rb
|
91
|
+
- book_code/novite/app/models/party.rb
|
92
|
+
- book_code/novite/app/models/party_mailer.rb
|
93
|
+
- book_code/novite/app/views/layouts/application.rhtml
|
94
|
+
- book_code/novite/app/views/parties/new.html.erb
|
95
|
+
- book_code/novite/app/views/parties/show.html.erb
|
96
|
+
- book_code/novite/app/views/party_mailer/invite.erb
|
97
|
+
- book_code/novite/config/boot.rb
|
98
|
+
- book_code/novite/config/database.yml
|
99
|
+
- book_code/novite/config/environment.rb
|
100
|
+
- book_code/novite/config/environments/development.rb
|
101
|
+
- book_code/novite/config/environments/production.rb
|
102
|
+
- book_code/novite/config/environments/test.rb
|
103
|
+
- book_code/novite/config/initializers/inflections.rb
|
104
|
+
- book_code/novite/config/initializers/mime_types.rb
|
105
|
+
- book_code/novite/config/routes.rb
|
106
|
+
- book_code/novite/db/migrate/001_create_parties.rb
|
107
|
+
- book_code/novite/db/migrate/002_create_guests.rb
|
108
|
+
- book_code/novite/db/schema.rb
|
109
|
+
- book_code/novite/log/empty.txt
|
110
|
+
- book_code/novite/public/.htaccess
|
111
|
+
- book_code/novite/public/404.html
|
112
|
+
- book_code/novite/public/422.html
|
113
|
+
- book_code/novite/public/500.html
|
114
|
+
- book_code/novite/public/dispatch.cgi
|
115
|
+
- book_code/novite/public/dispatch.fcgi
|
116
|
+
- book_code/novite/public/dispatch.rb
|
117
|
+
- book_code/novite/public/favicon.ico
|
118
|
+
- book_code/novite/public/images/rails.png
|
119
|
+
- book_code/novite/public/index.html
|
120
|
+
- book_code/novite/public/javascripts/application.js
|
121
|
+
- book_code/novite/public/javascripts/controls.js
|
122
|
+
- book_code/novite/public/javascripts/dragdrop.js
|
123
|
+
- book_code/novite/public/javascripts/effects.js
|
124
|
+
- book_code/novite/public/javascripts/prototype.js
|
125
|
+
- book_code/novite/public/robots.txt
|
126
|
+
- book_code/novite/script/about
|
127
|
+
- book_code/novite/script/console
|
128
|
+
- book_code/novite/script/destroy
|
129
|
+
- book_code/novite/script/generate
|
130
|
+
- book_code/novite/script/performance/benchmarker
|
131
|
+
- book_code/novite/script/performance/profiler
|
132
|
+
- book_code/novite/script/performance/request
|
133
|
+
- book_code/novite/script/plugin
|
134
|
+
- book_code/novite/script/process/inspector
|
135
|
+
- book_code/novite/script/process/reaper
|
136
|
+
- book_code/novite/script/process/spawner
|
137
|
+
- book_code/novite/script/runner
|
138
|
+
- book_code/novite/script/server
|
139
|
+
- book_code/novite/test/test_helper.rb
|
140
|
+
- book_code/one_more_thing/applescript.rb
|
141
|
+
- book_code/one_more_thing/note_spec.rb
|
142
|
+
- book_code/one_more_thing/spec_helper.rb
|
143
|
+
- book_code/one_more_thing/textedit-pure.rb
|
144
|
+
- book_code/one_more_thing/textedit.applescript
|
145
|
+
- book_code/one_more_thing/textedit.rb
|
146
|
+
- book_code/one_more_thing/textnote.rb
|
147
|
+
- book_code/simplify/junquenote.rb
|
148
|
+
- book_code/simplify/locknote.rb
|
149
|
+
- book_code/simplify/note.rb
|
150
|
+
- book_code/simplify/note_spec.rb
|
151
|
+
- book_code/simplify/swing_gui.rb
|
152
|
+
- book_code/simplify/windows_gui.rb
|
153
|
+
- book_code/simplify/windows_gui_spec.rb
|
154
|
+
- book_code/story/invite.story
|
155
|
+
- book_code/story/journal.txt
|
156
|
+
- book_code/story/novite_stories.rb
|
157
|
+
- book_code/story/party.rb
|
158
|
+
- book_code/story/password.rb
|
159
|
+
- book_code/story/password.story
|
160
|
+
- book_code/story/rsvp.story
|
161
|
+
- book_code/tables/TestTime.html
|
162
|
+
- book_code/tables/TestTimeSample.html
|
163
|
+
- book_code/tables/calculate_time.rb
|
164
|
+
- book_code/tables/calculator.rb
|
165
|
+
- book_code/tables/calculator_actions.rb
|
166
|
+
- book_code/tables/calculator_spec.rb
|
167
|
+
- book_code/tables/fit.rb
|
168
|
+
- book_code/tables/matrix.rb
|
169
|
+
- book_code/tables/pseudocode.rb
|
170
|
+
- book_code/tubes/book_selenium.rb
|
171
|
+
- book_code/tubes/book_watir.rb
|
172
|
+
- book_code/tubes/dragdrop.html
|
173
|
+
- book_code/tubes/html_capture.rb
|
174
|
+
- book_code/tubes/joke_list.rb
|
175
|
+
- book_code/tubes/list_spec.rb
|
176
|
+
- book_code/tubes/search_spec.rb
|
177
|
+
- book_code/tubes/selenium_example.rb
|
178
|
+
- book_code/tubes/selenium_link.rb
|
179
|
+
- book_code/tubes/web_server.rb
|
180
|
+
- book_code/windows/wgui.rb
|
181
|
+
- book_code/windows/wobj.rb
|
182
|
+
- book_code/windows/wsh.rb
|
183
|
+
- book_code/with_rspec/empty_spec.rb
|
184
|
+
- book_code/with_rspec/junquenote.rb
|
185
|
+
- book_code/with_rspec/locknote.rb
|
186
|
+
- book_code/with_rspec/note_spec.rb
|
187
|
+
- book_code/with_rspec/should_examples.rb
|
188
|
+
- exp/exp.rb
|
189
|
+
- exp/exp_encodings.rb
|
190
|
+
- exp/exp_enum_windows.rb
|
191
|
+
- exp/exp_quik.rb
|
192
|
+
- exp/exp_wsh.rb
|
193
|
+
- exp/old/windows_basics.rb
|
194
|
+
- exp/old/wnote.rb
|
195
|
+
- exp/old/wnote_spec.rb
|
196
|
+
- features/step_definitions/win_gui_steps.rb
|
197
|
+
- features/support/env.rb
|
198
|
+
- features/win_gui.feature
|
199
|
+
- lib/note.rb
|
200
|
+
- lib/note/java/jemmy.jar
|
201
|
+
- lib/note/java/jnote.rb
|
202
|
+
- lib/note/java/jruby_basics.rb
|
203
|
+
- lib/note/java/junquenote_app.rb
|
204
|
+
- lib/note/java/note_spec.rb
|
205
|
+
- lib/note/win/locknote.rb
|
206
|
+
- lib/win_gui.rb
|
207
|
+
- lib/win_gui/constants.rb
|
208
|
+
- lib/win_gui/string_extensions.rb
|
209
|
+
- lib/win_gui/win_gui.rb
|
210
|
+
- lib/win_gui/window.rb
|
211
|
+
- spec/note/win/locknote_spec.rb
|
212
|
+
- spec/spec.opts
|
213
|
+
- spec/spec_helper.rb
|
214
|
+
- spec/test_apps/locknote/LockNote.exe
|
215
|
+
- spec/win_gui/string_extensions_spec.rb
|
216
|
+
- spec/win_gui/win_gui_spec.rb
|
217
|
+
- spec/win_gui/window_spec.rb
|
218
|
+
has_rdoc: true
|
219
|
+
homepage: http://github.com/arvicco/win_gui
|
220
|
+
licenses: []
|
221
|
+
|
222
|
+
post_install_message:
|
223
|
+
rdoc_options:
|
224
|
+
- --charset=UTF-8
|
225
|
+
require_paths:
|
226
|
+
- lib
|
227
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
228
|
+
requirements:
|
229
|
+
- - ">="
|
230
|
+
- !ruby/object:Gem::Version
|
231
|
+
version: "0"
|
232
|
+
version:
|
233
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
234
|
+
requirements:
|
235
|
+
- - ">="
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
version: "0"
|
238
|
+
version:
|
239
|
+
requirements: []
|
240
|
+
|
241
|
+
rubyforge_project:
|
242
|
+
rubygems_version: 1.3.5
|
243
|
+
signing_key:
|
244
|
+
specification_version: 3
|
245
|
+
summary: Rubyesque interfaces and wrappers for Win32 API GUI functions
|
246
|
+
test_files:
|
247
|
+
- spec/note/win/locknote_spec.rb
|
248
|
+
- spec/spec_helper.rb
|
249
|
+
- spec/win_gui/string_extensions_spec.rb
|
250
|
+
- spec/win_gui/window_spec.rb
|
251
|
+
- spec/win_gui/win_gui_spec.rb
|