s0nspark-rubyosa 0.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/AUTHORS +16 -0
- data/COPYRIGHT +25 -0
- data/README +49 -0
- data/bin/rdoc-osa +232 -0
- data/data/rubyosa/rdoc_html.rb +696 -0
- data/extconf.rb +62 -0
- data/sample/AddressBook/inspect.rb +31 -0
- data/sample/BBEdit/unix_script.rb +19 -0
- data/sample/Finder/show_desktop.rb +10 -0
- data/sample/Mail/get_selected_mail.rb +14 -0
- data/sample/Photoshop/new_doc.rb +13 -0
- data/sample/Photoshop/new_doc_with_text.rb +34 -0
- data/sample/QuickTime/play_all.rb +30 -0
- data/sample/TextEdit/hello_world.rb +19 -0
- data/sample/iChat/image.rb +18 -0
- data/sample/iChat/uptime.rb +15 -0
- data/sample/iTunes/artwork.rb +14 -0
- data/sample/iTunes/control.rb +66 -0
- data/sample/iTunes/fade_volume.rb +23 -0
- data/sample/iTunes/inspect.rb +16 -0
- data/sample/iTunes/name_that_tune.rb +97 -0
- data/sample/iTunes/tag_genre_lastfm.rb +32 -0
- data/sample/misc/sdef.rb +37 -0
- data/src/lib/rbosa.rb +1001 -0
- data/src/lib/rbosa_properties.rb +141 -0
- data/src/rbosa.c +720 -0
- data/src/rbosa.h +55 -0
- data/src/rbosa_conv.c +97 -0
- data/src/rbosa_err.c +105 -0
- data/src/rbosa_sdef.c +441 -0
- metadata +91 -0
metadata
ADDED
@@ -0,0 +1,91 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: s0nspark-rubyosa
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tim Ferrell
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-09-24 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: libxml-ruby
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.1.3
|
24
|
+
version:
|
25
|
+
description: RubyOSA is a bridge that connects Ruby to the Apple Event Manager, automatically populating the API according to the target application's scriptable definition.
|
26
|
+
email: s0nspark@gmail.com
|
27
|
+
executables:
|
28
|
+
- rdoc-osa
|
29
|
+
extensions:
|
30
|
+
- extconf.rb
|
31
|
+
extra_rdoc_files: []
|
32
|
+
|
33
|
+
files:
|
34
|
+
- README
|
35
|
+
- COPYRIGHT
|
36
|
+
- AUTHORS
|
37
|
+
- extconf.rb
|
38
|
+
- src/rbosa.c
|
39
|
+
- src/rbosa.h
|
40
|
+
- src/rbosa_conv.c
|
41
|
+
- src/rbosa_sdef.c
|
42
|
+
- src/rbosa_err.c
|
43
|
+
- src/lib/rbosa.rb
|
44
|
+
- src/lib/rbosa_properties.rb
|
45
|
+
- sample/Finder/show_desktop.rb
|
46
|
+
- sample/iChat/uptime.rb
|
47
|
+
- sample/iTunes/control.rb
|
48
|
+
- sample/iTunes/fade_volume.rb
|
49
|
+
- sample/iTunes/inspect.rb
|
50
|
+
- sample/QuickTime/play_all.rb
|
51
|
+
- sample/misc/sdef.rb
|
52
|
+
- sample/BBEdit/unix_script.rb
|
53
|
+
- sample/TextEdit/hello_world.rb
|
54
|
+
- sample/iChat/image.rb
|
55
|
+
- sample/iTunes/artwork.rb
|
56
|
+
- sample/Mail/get_selected_mail.rb
|
57
|
+
- sample/AddressBook/inspect.rb
|
58
|
+
- sample/iTunes/tag_genre_lastfm.rb
|
59
|
+
- data/rubyosa/rdoc_html.rb
|
60
|
+
- sample/Photoshop/new_doc.rb
|
61
|
+
- sample/Photoshop/new_doc_with_text.rb
|
62
|
+
- sample/iTunes/name_that_tune.rb
|
63
|
+
has_rdoc: false
|
64
|
+
homepage: http://github.com/s0nspark/rubyosa
|
65
|
+
licenses:
|
66
|
+
post_install_message:
|
67
|
+
rdoc_options: []
|
68
|
+
|
69
|
+
require_paths:
|
70
|
+
- lib
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: "0"
|
76
|
+
version:
|
77
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - ">="
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: "0"
|
82
|
+
version:
|
83
|
+
requirements: []
|
84
|
+
|
85
|
+
rubyforge_project:
|
86
|
+
rubygems_version: 1.3.5
|
87
|
+
signing_key:
|
88
|
+
specification_version: 2
|
89
|
+
summary: A Ruby/AppleEvent bridge.
|
90
|
+
test_files: []
|
91
|
+
|