Tamar 0.7.7 → 0.7.8
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/HISTORY +20 -3
- data/Rakefile +1 -1
- data/Tamar.gemspec +2 -2
- data/VERSION +1 -1
- data/extconf.rb +3 -2
- metadata +3 -3
data/HISTORY
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
RELEASE HISTORY
|
|
2
2
|
|
|
3
|
+
v0.7.7 / 2011-05-23
|
|
4
|
+
|
|
5
|
+
Regenerate gemspec for version 0.7.7 (David Love david@homeunix.org.uk)
|
|
6
|
+
|
|
7
|
+
Changes:
|
|
8
|
+
|
|
9
|
+
* 3 General Enhancements
|
|
10
|
+
|
|
11
|
+
* Version bump to 0.7.7
|
|
12
|
+
* Update HISTORY file
|
|
13
|
+
* Regenerate gemspec for version 0.7.6
|
|
14
|
+
|
|
15
|
+
* 1 Patch Enhancements
|
|
16
|
+
|
|
17
|
+
* Add extconf.rb in the root directory of the Gem
|
|
18
|
+
|
|
19
|
+
|
|
3
20
|
v0.7.6 / 2011-05-23
|
|
4
21
|
|
|
5
22
|
Regenerate gemspec for version 0.7.6 (David Love david@homeunix.org.uk)
|
|
@@ -130,11 +147,11 @@ Current Development (David Love)
|
|
|
130
147
|
|
|
131
148
|
Changes:
|
|
132
149
|
|
|
133
|
-
* 1
|
|
150
|
+
* 1 Bugfix Enhancements
|
|
134
151
|
|
|
135
|
-
*
|
|
152
|
+
* Bind extconf.rb to gem install script
|
|
136
153
|
|
|
137
154
|
* 1 General Enhancements
|
|
138
155
|
|
|
139
|
-
* Regenerate gemspec for version 0.7.
|
|
156
|
+
* Regenerate gemspec for version 0.7.7
|
|
140
157
|
|
data/Rakefile
CHANGED
data/Tamar.gemspec
CHANGED
|
@@ -5,14 +5,14 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{Tamar}
|
|
8
|
-
s.version = "0.7.
|
|
8
|
+
s.version = "0.7.8"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Evan Wies, David Love"]
|
|
12
12
|
s.date = %q{2011-05-23}
|
|
13
13
|
s.description = %q{See: http://rubyluabridge.rubyforge.org}
|
|
14
14
|
s.email = %q{david@homeunix.org.uk}
|
|
15
|
-
s.extensions = ["
|
|
15
|
+
s.extensions = ["extconf.rb"]
|
|
16
16
|
s.extra_rdoc_files = [
|
|
17
17
|
"LICENSE.txt",
|
|
18
18
|
"README.rdoc"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.7.
|
|
1
|
+
0.7.8
|
data/extconf.rb
CHANGED
|
@@ -40,15 +40,16 @@ home_dir = FileUtils.pwd
|
|
|
40
40
|
##
|
|
41
41
|
## Build the Lua core libraries and runtime
|
|
42
42
|
##
|
|
43
|
-
FileUtils.cd('src/
|
|
43
|
+
FileUtils.cd('src/lua')
|
|
44
44
|
|
|
45
45
|
# Run CMake
|
|
46
46
|
puts "Configuring Lua..."
|
|
47
|
-
`cmake CMakeLists.txt`
|
|
47
|
+
`cmake -D CMAKE_INSTALL_PREFIX:PATH=#{home_dir} CMakeLists.txt`
|
|
48
48
|
|
|
49
49
|
# Run Make now the project has been configured
|
|
50
50
|
puts "Building Lua..."
|
|
51
51
|
`make`
|
|
52
|
+
`make install`
|
|
52
53
|
|
|
53
54
|
##
|
|
54
55
|
## Call the Ruby bootstrap script to build the Ruby->Lua bindings
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: Tamar
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.7.
|
|
5
|
+
version: 0.7.8
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Evan Wies, David Love
|
|
@@ -106,7 +106,7 @@ email: david@homeunix.org.uk
|
|
|
106
106
|
executables: []
|
|
107
107
|
|
|
108
108
|
extensions:
|
|
109
|
-
-
|
|
109
|
+
- extconf.rb
|
|
110
110
|
extra_rdoc_files:
|
|
111
111
|
- LICENSE.txt
|
|
112
112
|
- README.rdoc
|
|
@@ -300,7 +300,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
300
300
|
requirements:
|
|
301
301
|
- - ">="
|
|
302
302
|
- !ruby/object:Gem::Version
|
|
303
|
-
hash:
|
|
303
|
+
hash: 3713009219814055259
|
|
304
304
|
segments:
|
|
305
305
|
- 0
|
|
306
306
|
version: "0"
|