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 CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  = Scriptlandia-R Changelog
3
3
 
4
- == Version 0.0.1
4
+ == Version 0.7.0
5
5
 
6
6
  * Initial release.
7
7
 
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
- Scriptlandia-R is intended to be installed via the RubyGems [http://rubyforge.org/projects/rubygems/] system.
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
- $ sudo gem install shvets-scriptlandia
23
+ $ gem install rjb -v 1.1.6
24
+
25
+ To install scriptlandia:
25
26
 
26
- You must have RubyGems [http://rubyforge.org/projects/rubygems/] installed for the above to work.
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
@@ -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 'ftools'
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
- #install_file("bin/sl.bat", $my_bindir, "sl.bat", settings) if CONFIG['host_os'] =~ /mswin/
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
@@ -1,5 +1,7 @@
1
1
  # language_installer.rb
2
2
 
3
+ require 'rbconfig'
4
+
3
5
  module Scriptlandia
4
6
  class LanguageInstaller
5
7
  include Config
@@ -38,7 +38,9 @@ pnuts: [pnut]
38
38
 
39
39
  ptilde: [p7e, p7ei]
40
40
 
41
- jruby: [rb, ruby]
41
+ jruby: [rb, ruby]
42
+
43
+ jscheme: [scm, scheme]
42
44
 
43
45
  scala: [scala]
44
46
 
@@ -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.6'
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-02-14}
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
- #spec.add_dependency("rjb", ">= 1.1.6")
58
- #spec.add_dependency("buildr", ">= 1.3.3")
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.5.6
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-02-14 00:00:00 -08:00
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