shvets-scriptlandia 0.5.6 → 0.7.1
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/CHANGES +1 -1
- data/README +12 -6
- data/lib/configurer.rb +3 -3
- data/lib/language_installer.rb +2 -0
- data/lib/languages/extension_mapping.yaml +3 -1
- data/scriptlandia-r.gemspec +6 -7
- metadata +24 -5
data/CHANGES
CHANGED
data/README
CHANGED
@@ -18,18 +18,20 @@ or
|
|
18
18
|
$ sudo env JAVA_HOME=$JAVA_HOME gem install rjb
|
19
19
|
$ sudo env JAVA_HOME=$JAVA_HOME gem install buildr
|
20
20
|
|
21
|
-
|
22
|
-
To get the latest version, simply enter the following into your command prompt:
|
21
|
+
On Windows only this version of rjb is supported:
|
23
22
|
|
24
|
-
$
|
23
|
+
$ gem install rjb -v 1.1.6
|
24
|
+
|
25
|
+
To install scriptlandia:
|
25
26
|
|
26
|
-
|
27
|
+
$ sudo gem install shvets-scriptlandia
|
27
28
|
|
28
|
-
After installation you have to configure the gem:
|
29
|
+
After the installation you have to configure the gem:
|
29
30
|
|
30
31
|
$ sudo sl --configure
|
31
32
|
|
32
|
-
You have to enter the location of Java Home and Jar Repository Location.
|
33
|
+
You have to enter the location of Java Home and Jar Repository Location, e.g.:
|
34
|
+
|
33
35
|
|
34
36
|
Now you can run scripts:
|
35
37
|
|
@@ -40,3 +42,7 @@ To install dependencies (jar files) for the language, run this command:
|
|
40
42
|
|
41
43
|
$ sl --install bsh
|
42
44
|
$ sl --install scala
|
45
|
+
|
46
|
+
If you have GUI in your script, you can use --wait flag to wait for GUI thread:
|
47
|
+
|
48
|
+
$ sl Hello.bsh --wait
|
data/lib/configurer.rb
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
# installer.rb
|
2
2
|
|
3
|
-
require 'rubygems'
|
3
|
+
require 'rubygems' unless RUBY_VERSION =~ /1.9.*/
|
4
4
|
require 'rbconfig'
|
5
5
|
require 'find'
|
6
|
-
require '
|
6
|
+
require 'fileutils'
|
7
7
|
#require 'rake/gempackagetask'
|
8
8
|
|
9
9
|
module Scriptlandia
|
@@ -19,7 +19,7 @@ module Scriptlandia
|
|
19
19
|
|
20
20
|
settings = YAML::load File.open($my_libdir + "/../settings.yaml")
|
21
21
|
|
22
|
-
|
22
|
+
install_file("bin/sl.bat", $my_bindir, "sl.bat", settings) if CONFIG['host_os'] =~ /mswin/
|
23
23
|
|
24
24
|
install_file_with_header($my_gem_path + "/bin/sl", $my_gem_path + "/bin/sl", settings)
|
25
25
|
end
|
data/lib/language_installer.rb
CHANGED
data/scriptlandia-r.gemspec
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
|
-
# scriptlandia-r.gemspec
|
4
|
-
|
5
3
|
Gem::Specification.new do |spec|
|
6
4
|
spec.name = 'scriptlandia'
|
7
|
-
spec.version = '0.
|
5
|
+
spec.version = '0.7.1'
|
6
|
+
|
8
7
|
spec.required_rubygems_version = Gem::Requirement.new(">= 0") if spec.respond_to? :required_rubygems_version=
|
9
8
|
|
10
9
|
spec.authors = ["Alexander Shvets"]
|
11
|
-
spec.date = %q{2009-
|
10
|
+
spec.date = %q{2009-03-29}
|
12
11
|
spec.description = 'Scriptlandia Launcher in Ruby.'
|
13
12
|
spec.email = 'alexander.shvets@gmail.com'
|
14
13
|
|
@@ -43,7 +42,7 @@ Gem::Specification.new do |spec|
|
|
43
42
|
spec.require_paths = ["lib"]
|
44
43
|
spec.rubyforge_project = 'scriptlandia-r'
|
45
44
|
spec.rubygems_version = '1.3.1'
|
46
|
-
spec.summary = %q{.}
|
45
|
+
spec.summary = %q{Scriptlandia Launcher in Ruby.}
|
47
46
|
|
48
47
|
if spec.respond_to? :specification_version then
|
49
48
|
spec.specification_version = 2
|
@@ -54,6 +53,6 @@ Gem::Specification.new do |spec|
|
|
54
53
|
spec.requirements = ["none"]
|
55
54
|
spec.bindir = "bin"
|
56
55
|
|
57
|
-
|
58
|
-
|
56
|
+
spec.add_dependency("rjb", ">= 1.1.6")
|
57
|
+
spec.add_dependency("buildr", ">= 1.3.3")
|
59
58
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shvets-scriptlandia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexander Shvets
|
@@ -9,10 +9,29 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-03-29 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rjb
|
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.6
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: buildr
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.3.3
|
34
|
+
version:
|
16
35
|
description: Scriptlandia Launcher in Ruby.
|
17
36
|
email: alexander.shvets@gmail.com
|
18
37
|
executables:
|
@@ -82,6 +101,6 @@ rubyforge_project: scriptlandia-r
|
|
82
101
|
rubygems_version: 1.2.0
|
83
102
|
signing_key:
|
84
103
|
specification_version: 2
|
85
|
-
summary: .
|
104
|
+
summary: Scriptlandia Launcher in Ruby.
|
86
105
|
test_files: []
|
87
106
|
|