Tamar 0.7.14 → 0.7.16
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY +25 -6
- data/Tamar.gemspec +1 -1
- data/VERSION +1 -1
- data/extconf.rb +0 -3
- metadata +2 -2
data/HISTORY
CHANGED
@@ -137,6 +137,25 @@ Changes:
|
|
137
137
|
* Link to LuaDist sources for building Lua
|
138
138
|
|
139
139
|
|
140
|
+
v0.7.14 / 2011-05-23
|
141
|
+
|
142
|
+
Regenerate gemspec for version 0.7.14 (David Love david@homeunix.org.uk)
|
143
|
+
|
144
|
+
Changes:
|
145
|
+
|
146
|
+
* 5 General Enhancements
|
147
|
+
|
148
|
+
* Version bump to 0.7.14
|
149
|
+
* Update HISTORY file
|
150
|
+
* Regenerate gemspec for version 0.7.13
|
151
|
+
* Version bump to 0.7.13
|
152
|
+
* Update HISTORY file
|
153
|
+
|
154
|
+
* 1 Bugfix Enhancements
|
155
|
+
|
156
|
+
* Change the way the C code is linked to the gem
|
157
|
+
|
158
|
+
|
140
159
|
v0.7.13 / 2011-05-23
|
141
160
|
|
142
161
|
Regenerate gemspec for version 0.7.13 (David Love david@homeunix.org.uk)
|
@@ -252,13 +271,13 @@ Current Development (David Love)
|
|
252
271
|
|
253
272
|
Changes:
|
254
273
|
|
255
|
-
* 1 Bugfix Enhancements
|
256
|
-
|
257
|
-
* Change the way the C code is linked to the gem
|
258
|
-
|
259
274
|
* 3 General Enhancements
|
260
275
|
|
261
|
-
* Regenerate gemspec for version 0.7.
|
262
|
-
* Version bump to 0.7.
|
276
|
+
* Regenerate gemspec for version 0.7.15
|
277
|
+
* Version bump to 0.7.15
|
263
278
|
* Update HISTORY file
|
264
279
|
|
280
|
+
* 1 Bugfix Enhancements
|
281
|
+
|
282
|
+
* Remove puts statement from the build script to stop the gem install complaining
|
283
|
+
|
data/Tamar.gemspec
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.7.
|
1
|
+
0.7.16
|
data/extconf.rb
CHANGED
@@ -43,11 +43,9 @@ home_dir = FileUtils.pwd
|
|
43
43
|
FileUtils.cd('src/lua')
|
44
44
|
|
45
45
|
# Run CMake
|
46
|
-
puts "Configuring Lua..."
|
47
46
|
`cmake -D CMAKE_INSTALL_PREFIX:PATH=#{home_dir} CMakeLists.txt`
|
48
47
|
|
49
48
|
# Run Make now the project has been configured
|
50
|
-
puts "Building Lua..."
|
51
49
|
`make`
|
52
50
|
`make install`
|
53
51
|
|
@@ -56,7 +54,6 @@ puts "Building Lua..."
|
|
56
54
|
##
|
57
55
|
FileUtils.cd(home_dir + "/src/rubyluabridge")
|
58
56
|
|
59
|
-
puts "Making Ruby->Lua bindings..."
|
60
57
|
`ruby extconf.rb --with-lua-include=#{home_dir}/include --with-lua-lib=#{home_dir}/lib #{$@}`
|
61
58
|
`make`
|
62
59
|
`make install`
|
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.16
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Evan Wies, David Love
|
@@ -298,7 +298,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
298
298
|
requirements:
|
299
299
|
- - ">="
|
300
300
|
- !ruby/object:Gem::Version
|
301
|
-
hash:
|
301
|
+
hash: 762869777132959752
|
302
302
|
segments:
|
303
303
|
- 0
|
304
304
|
version: "0"
|