erlbox 1.7.0 → 1.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/VERSION.yml +2 -1
- data/erlbox.gemspec +7 -8
- data/lib/erlbox/release.rb +8 -1
- metadata +28 -10
data/VERSION.yml
CHANGED
data/erlbox.gemspec
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{erlbox}
|
8
|
-
s.version = "1.7.
|
8
|
+
s.version = "1.7.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Phillip Toland"]
|
12
|
-
s.date = %q{
|
12
|
+
s.date = %q{2010-07-02}
|
13
13
|
s.default_executable = %q{erlbox}
|
14
14
|
s.description = %q{Rake tasks and helper scripts for building Erlang applications.}
|
15
15
|
s.email = %q{phil.toland@gmail.com}
|
@@ -32,7 +32,6 @@ Gem::Specification.new do |s|
|
|
32
32
|
"lib/erlbox/driver.rb",
|
33
33
|
"lib/erlbox/edoc.rb",
|
34
34
|
"lib/erlbox/eunit",
|
35
|
-
"lib/erlbox/eunit",
|
36
35
|
"lib/erlbox/eunit.rb",
|
37
36
|
"lib/erlbox/faxien.rb",
|
38
37
|
"lib/erlbox/install.rb",
|
@@ -47,19 +46,18 @@ Gem::Specification.new do |s|
|
|
47
46
|
"lib/erlbox/test.rb",
|
48
47
|
"lib/erlbox/utils.rb"
|
49
48
|
]
|
50
|
-
s.has_rdoc = false
|
51
49
|
s.homepage = %q{http://github.com/toland/erlbox}
|
52
50
|
s.rdoc_options = ["--charset=UTF-8"]
|
53
51
|
s.require_paths = ["lib"]
|
54
52
|
s.rubyforge_project = %q{erlbox}
|
55
|
-
s.rubygems_version = %q{1.3.
|
53
|
+
s.rubygems_version = %q{1.3.7}
|
56
54
|
s.summary = %q{Erlang Toolbox}
|
57
55
|
|
58
56
|
if s.respond_to? :specification_version then
|
59
57
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
60
58
|
s.specification_version = 3
|
61
59
|
|
62
|
-
if Gem::Version.new(Gem::
|
60
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
63
61
|
s.add_runtime_dependency(%q<rake>, [">= 0.8.4"])
|
64
62
|
else
|
65
63
|
s.add_dependency(%q<rake>, [">= 0.8.4"])
|
@@ -68,3 +66,4 @@ Gem::Specification.new do |s|
|
|
68
66
|
s.add_dependency(%q<rake>, [">= 0.8.4"])
|
69
67
|
end
|
70
68
|
end
|
69
|
+
|
data/lib/erlbox/release.rb
CHANGED
@@ -70,10 +70,16 @@ def build_node(nodefile)
|
|
70
70
|
|
71
71
|
# Copy nodetool into erts-<vsn>/bin
|
72
72
|
FileUtils.cp(File.join(reltools_dir, "nodetool"), erts_bin)
|
73
|
+
chmod 0755, File.join(erts_bin, "nodetool")
|
74
|
+
|
75
|
+
# Make sure escript has execute permission
|
76
|
+
chmod 0755, File.join(erts_bin, "escript")
|
77
|
+
|
73
78
|
|
74
79
|
# Copy our custom erl.sh and the necessary .boot file into erts-<vsn>/bin. This is necessary
|
75
80
|
# to enable escript to work properly
|
76
81
|
FileUtils.cp(File.join(reltools_dir, "erl.sh"), File.join(erts_bin, "erl"))
|
82
|
+
chmod 0755, File.join(erts_bin, "erl")
|
77
83
|
FileUtils.cp(File.join(erl_root(), "bin", "start.boot"), File.join(erts_bin, "erl.boot"))
|
78
84
|
|
79
85
|
# Create any requested empty-dirs
|
@@ -85,7 +91,8 @@ def build_node(nodefile)
|
|
85
91
|
FileUtils.mkdir_p File.join(relname, "bin")
|
86
92
|
cp File.join(reltools_dir, "runner"), File.join(relname, "bin", relname)
|
87
93
|
chmod 0755, File.join(relname, "bin", relname)
|
88
|
-
|
94
|
+
|
95
|
+
|
89
96
|
end
|
90
97
|
|
91
98
|
|
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: erlbox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 9
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 7
|
9
|
+
- 1
|
10
|
+
version: 1.7.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Phillip Toland
|
@@ -9,19 +15,25 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2010-07-02 00:00:00 -05:00
|
13
19
|
default_executable: erlbox
|
14
20
|
dependencies:
|
15
21
|
- !ruby/object:Gem::Dependency
|
16
22
|
name: rake
|
17
|
-
|
18
|
-
|
19
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
20
26
|
requirements:
|
21
27
|
- - ">="
|
22
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 55
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
- 8
|
33
|
+
- 4
|
23
34
|
version: 0.8.4
|
24
|
-
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
25
37
|
description: Rake tasks and helper scripts for building Erlang applications.
|
26
38
|
email: phil.toland@gmail.com
|
27
39
|
executables:
|
@@ -58,7 +70,7 @@ files:
|
|
58
70
|
- lib/erlbox/snmp.rb
|
59
71
|
- lib/erlbox/test.rb
|
60
72
|
- lib/erlbox/utils.rb
|
61
|
-
has_rdoc:
|
73
|
+
has_rdoc: true
|
62
74
|
homepage: http://github.com/toland/erlbox
|
63
75
|
licenses: []
|
64
76
|
|
@@ -68,21 +80,27 @@ rdoc_options:
|
|
68
80
|
require_paths:
|
69
81
|
- lib
|
70
82
|
required_ruby_version: !ruby/object:Gem::Requirement
|
83
|
+
none: false
|
71
84
|
requirements:
|
72
85
|
- - ">="
|
73
86
|
- !ruby/object:Gem::Version
|
87
|
+
hash: 3
|
88
|
+
segments:
|
89
|
+
- 0
|
74
90
|
version: "0"
|
75
|
-
version:
|
76
91
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
none: false
|
77
93
|
requirements:
|
78
94
|
- - ">="
|
79
95
|
- !ruby/object:Gem::Version
|
96
|
+
hash: 3
|
97
|
+
segments:
|
98
|
+
- 0
|
80
99
|
version: "0"
|
81
|
-
version:
|
82
100
|
requirements: []
|
83
101
|
|
84
102
|
rubyforge_project: erlbox
|
85
|
-
rubygems_version: 1.3.
|
103
|
+
rubygems_version: 1.3.7
|
86
104
|
signing_key:
|
87
105
|
specification_version: 3
|
88
106
|
summary: Erlang Toolbox
|