rong-client 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/rong +11 -0
- metadata +6 -5
data/bin/rong
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# Useful for running the script from the project directory
|
4
|
+
lib_dir = File.join(File.dirname(__FILE__), '..', 'lib')
|
5
|
+
$LOAD_PATH.unshift lib_dir if File.directory?(lib_dir)
|
6
|
+
|
7
|
+
require 'rubygems'
|
8
|
+
require 'rong/client'
|
9
|
+
|
10
|
+
window = Rong::Client::Window.new
|
11
|
+
window.show
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
-
|
9
|
-
version: 0.2.
|
8
|
+
- 2
|
9
|
+
version: 0.2.2
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Matt Yoho
|
@@ -15,7 +15,7 @@ bindir: bin
|
|
15
15
|
cert_chain: []
|
16
16
|
|
17
17
|
date: 2011-04-07 00:00:00 +01:00
|
18
|
-
default_executable:
|
18
|
+
default_executable: rong
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: gosu
|
@@ -77,8 +77,8 @@ dependencies:
|
|
77
77
|
version_requirements: *id004
|
78
78
|
description: Rong-client is the catch-all Rong client package, and in the future will hopefully be replaced with platform-specifc implementations.
|
79
79
|
email: mby@mattyoho.com
|
80
|
-
executables:
|
81
|
-
|
80
|
+
executables:
|
81
|
+
- rong
|
82
82
|
extensions: []
|
83
83
|
|
84
84
|
extra_rdoc_files: []
|
@@ -87,6 +87,7 @@ files:
|
|
87
87
|
- lib/rong/client/drawable_element.rb
|
88
88
|
- lib/rong/client/window.rb
|
89
89
|
- lib/rong/client.rb
|
90
|
+
- bin/rong
|
90
91
|
has_rdoc: true
|
91
92
|
homepage: http://github.com/mattyoho/rong
|
92
93
|
licenses: []
|