launchy 2.0.0-java
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/.autotest +28 -0
- data/.gitignore +6 -0
- data/HISTORY +90 -0
- data/LICENSE +16 -0
- data/NOTES +1 -0
- data/README +53 -0
- data/Rakefile +58 -0
- data/bin/launchy +4 -0
- data/lib/launchy.rb +119 -0
- data/lib/launchy/application.rb +81 -0
- data/lib/launchy/applications/browser.rb +68 -0
- data/lib/launchy/cli.rb +70 -0
- data/lib/launchy/descendant_tracker.rb +49 -0
- data/lib/launchy/detect.rb +10 -0
- data/lib/launchy/detect/host_os.rb +31 -0
- data/lib/launchy/detect/host_os_family.rb +71 -0
- data/lib/launchy/detect/nix_desktop_environment.rb +60 -0
- data/lib/launchy/detect/ruby_engine.rb +78 -0
- data/lib/launchy/detect/runner.rb +96 -0
- data/lib/launchy/error.rb +4 -0
- data/lib/launchy/os_family.rb +8 -0
- data/lib/launchy/version.rb +18 -0
- data/spec/application_spec.rb +41 -0
- data/spec/detect/host_os_family_spec.rb +40 -0
- data/spec/detect/host_os_spec.rb +19 -0
- data/spec/detect/nix_desktop_environment_spec.rb +13 -0
- data/spec/detect/ruby_engine_spec.rb +37 -0
- data/spec/launchy_spec.rb +42 -0
- data/spec/mock_scheme.rb +5 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/tattle-host-os.yaml +427 -0
- data/spec/version_spec.rb +10 -0
- metadata +170 -0
metadata
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: launchy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 2.0.0
|
6
|
+
platform: java
|
7
|
+
authors:
|
8
|
+
- Jeremy Hinegardner
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-07-16 00:00:00 -06:00
|
14
|
+
default_executable:
|
15
|
+
dependencies:
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: spoon
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ~>
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.1
|
25
|
+
type: :runtime
|
26
|
+
version_requirements: *id001
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: spoon
|
29
|
+
prerelease: false
|
30
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
31
|
+
none: false
|
32
|
+
requirements:
|
33
|
+
- - ~>
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 0.0.1
|
36
|
+
type: :runtime
|
37
|
+
version_requirements: *id002
|
38
|
+
- !ruby/object:Gem::Dependency
|
39
|
+
name: rake
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ~>
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 0.9.2
|
47
|
+
type: :development
|
48
|
+
version_requirements: *id003
|
49
|
+
- !ruby/object:Gem::Dependency
|
50
|
+
name: minitest
|
51
|
+
prerelease: false
|
52
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ~>
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 2.3.1
|
58
|
+
type: :development
|
59
|
+
version_requirements: *id004
|
60
|
+
- !ruby/object:Gem::Dependency
|
61
|
+
name: bones
|
62
|
+
prerelease: false
|
63
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
64
|
+
none: false
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 3.7.0
|
69
|
+
type: :development
|
70
|
+
version_requirements: *id005
|
71
|
+
- !ruby/object:Gem::Dependency
|
72
|
+
name: bones
|
73
|
+
prerelease: false
|
74
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
75
|
+
none: false
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 3.7.0
|
80
|
+
type: :development
|
81
|
+
version_requirements: *id006
|
82
|
+
description: |
|
83
|
+
Launchy is helper class for launching cross-platform applications in a
|
84
|
+
fire and forget manner.
|
85
|
+
|
86
|
+
There are application concepts (browser, email client, etc) that are
|
87
|
+
common across all platforms, and they may be launched differently on
|
88
|
+
each platform. Launchy is here to make a common approach to launching
|
89
|
+
external application from within ruby programs.
|
90
|
+
|
91
|
+
email: jeremy@copiousfreetime.org
|
92
|
+
executables:
|
93
|
+
- launchy
|
94
|
+
extensions: []
|
95
|
+
|
96
|
+
extra_rdoc_files:
|
97
|
+
- HISTORY
|
98
|
+
- LICENSE
|
99
|
+
- README
|
100
|
+
- bin/launchy
|
101
|
+
files:
|
102
|
+
- .autotest
|
103
|
+
- .gitignore
|
104
|
+
- HISTORY
|
105
|
+
- LICENSE
|
106
|
+
- NOTES
|
107
|
+
- README
|
108
|
+
- Rakefile
|
109
|
+
- bin/launchy
|
110
|
+
- lib/launchy.rb
|
111
|
+
- lib/launchy/application.rb
|
112
|
+
- lib/launchy/applications/browser.rb
|
113
|
+
- lib/launchy/cli.rb
|
114
|
+
- lib/launchy/descendant_tracker.rb
|
115
|
+
- lib/launchy/detect.rb
|
116
|
+
- lib/launchy/detect/host_os.rb
|
117
|
+
- lib/launchy/detect/host_os_family.rb
|
118
|
+
- lib/launchy/detect/nix_desktop_environment.rb
|
119
|
+
- lib/launchy/detect/ruby_engine.rb
|
120
|
+
- lib/launchy/detect/runner.rb
|
121
|
+
- lib/launchy/error.rb
|
122
|
+
- lib/launchy/os_family.rb
|
123
|
+
- lib/launchy/version.rb
|
124
|
+
- spec/application_spec.rb
|
125
|
+
- spec/detect/host_os_family_spec.rb
|
126
|
+
- spec/detect/host_os_spec.rb
|
127
|
+
- spec/detect/nix_desktop_environment_spec.rb
|
128
|
+
- spec/detect/ruby_engine_spec.rb
|
129
|
+
- spec/launchy_spec.rb
|
130
|
+
- spec/mock_scheme.rb
|
131
|
+
- spec/spec_helper.rb
|
132
|
+
- spec/tattle-host-os.yaml
|
133
|
+
- spec/version_spec.rb
|
134
|
+
has_rdoc: true
|
135
|
+
homepage: http://www.copiousfreetime.org/projects/launchy
|
136
|
+
licenses: []
|
137
|
+
|
138
|
+
post_install_message:
|
139
|
+
rdoc_options:
|
140
|
+
- --main
|
141
|
+
- README
|
142
|
+
require_paths:
|
143
|
+
- lib
|
144
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ">="
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: "0"
|
150
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
|
+
none: false
|
152
|
+
requirements:
|
153
|
+
- - ">="
|
154
|
+
- !ruby/object:Gem::Version
|
155
|
+
version: "0"
|
156
|
+
requirements: []
|
157
|
+
|
158
|
+
rubyforge_project: launchy
|
159
|
+
rubygems_version: 1.5.1
|
160
|
+
signing_key:
|
161
|
+
specification_version: 3
|
162
|
+
summary: Launchy is helper class for launching cross-platform applications in a fire and forget manner.
|
163
|
+
test_files:
|
164
|
+
- spec/application_spec.rb
|
165
|
+
- spec/launchy_spec.rb
|
166
|
+
- spec/version_spec.rb
|
167
|
+
- spec/detect/host_os_family_spec.rb
|
168
|
+
- spec/detect/host_os_spec.rb
|
169
|
+
- spec/detect/nix_desktop_environment_spec.rb
|
170
|
+
- spec/detect/ruby_engine_spec.rb
|