Tamar 0.7.16 → 0.7.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/HISTORY +23 -6
  2. data/Tamar.gemspec +1 -1
  3. data/VERSION +1 -1
  4. data/extconf.rb +19 -18
  5. 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.16 / 2011-05-23
141
+
142
+ Regenerate gemspec for version 0.7.16 (David Love david@homeunix.org.uk)
143
+
144
+ Changes:
145
+
146
+ * 5 General Enhancements
147
+
148
+ * Version bump to 0.7.16
149
+ * Update HISTORY file
150
+ * Regenerate gemspec for version 0.7.15
151
+ * Version bump to 0.7.15
152
+ * Update HISTORY file
153
+
154
+ * 1 Bugfix Enhancements
155
+
156
+ * Remove puts statement from the build script to stop the gem install complaining
157
+
158
+
140
159
  v0.7.14 / 2011-05-23
141
160
 
142
161
  Regenerate gemspec for version 0.7.14 (David Love david@homeunix.org.uk)
@@ -271,13 +290,11 @@ Current Development (David Love)
271
290
 
272
291
  Changes:
273
292
 
274
- * 3 General Enhancements
293
+ * 1 Patch Enhancements
275
294
 
276
- * Regenerate gemspec for version 0.7.15
277
- * Version bump to 0.7.15
278
- * Update HISTORY file
295
+ * Fix false warnings
279
296
 
280
- * 1 Bugfix Enhancements
297
+ * 1 General Enhancements
281
298
 
282
- * Remove puts statement from the build script to stop the gem install complaining
299
+ * Regenerate gemspec for version 0.7.16
283
300
 
data/Tamar.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{Tamar}
8
- s.version = "0.7.16"
8
+ s.version = "0.7.17"
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"]
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.7.16
1
+ 0.7.17
data/extconf.rb CHANGED
@@ -30,30 +30,31 @@
30
30
  # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
31
  #
32
32
 
33
- require 'fileutils'
34
-
35
33
  ##
36
34
  ## Save the base directory
37
35
  ##
38
36
  home_dir = FileUtils.pwd
39
37
 
40
- ##
41
- ## Build the Lua core libraries and runtime
42
- ##
43
- FileUtils.cd('src/lua')
38
+ begin
39
+ ##
40
+ ## Build the Lua core libraries and runtime
41
+ ##
42
+ FileUtils.cd('src/lua')
44
43
 
45
- # Run CMake
46
- `cmake -D CMAKE_INSTALL_PREFIX:PATH=#{home_dir} CMakeLists.txt`
44
+ # Run CMake
45
+ `cmake -D CMAKE_INSTALL_PREFIX:PATH=#{home_dir} CMakeLists.txt`
47
46
 
48
- # Run Make now the project has been configured
49
- `make`
50
- `make install`
47
+ # Run Make now the project has been configured
48
+ `make`
49
+ `make install`
51
50
 
52
- ##
53
- ## Call the Ruby bootstrap script to build the Ruby->Lua bindings
54
- ##
55
- FileUtils.cd(home_dir + "/src/rubyluabridge")
51
+ ##
52
+ ## Call the Ruby bootstrap script to build the Ruby->Lua bindings
53
+ ##
54
+ FileUtils.cd(home_dir + "/src/rubyluabridge")
56
55
 
57
- `ruby extconf.rb --with-lua-include=#{home_dir}/include --with-lua-lib=#{home_dir}/lib #{$@}`
58
- `make`
59
- `make install`
56
+ `ruby extconf.rb --with-lua-include=#{home_dir}/include --with-lua-lib=#{home_dir}/lib #{$@}`
57
+ `make`
58
+ `make install`
59
+ rescue
60
+ end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: Tamar
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.7.16
5
+ version: 0.7.17
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: 762869777132959752
301
+ hash: 1242222291669301532
302
302
  segments:
303
303
  - 0
304
304
  version: "0"