tk_as_gem 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +3 -1
  2. data/VERSION +1 -1
  3. data/ext/extconf.rb +3 -1
  4. metadata +2 -2
data/README CHANGED
@@ -18,4 +18,6 @@ Bugs:
18
18
 
19
19
  currently to exit out of ruby, once you've done a
20
20
  require 'tk'
21
- of the gem, you must *first* close all outstanding open Tk windows, THEN exit your ruby process, otherwise it will hang.
21
+ of the gem, you must *first* close all outstanding open Tk windows, THEN exit your ruby process, otherwise it will hang.
22
+
23
+ Also you "might" need Tcl/Tk 8.4 instead of 8.5 (you certaintly do, for 1.8)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.1.0
@@ -440,7 +440,9 @@ if ( tcltk_framework ||
440
440
  # ughly.
441
441
  if RUBY_PLATFORM =~ /mingw/
442
442
  old = File.read('Makefile')
443
- old.gsub!('/Tcl', File.expand_path('/Tcl'))
443
+ # old.gsub!('/Tcl', File.expand_path('/Tcl'))
444
+ old.gsub!('-I/', "-I#{File.expand_path('/')}")
445
+ old.gsub!('-L/', "-L#{File.expand_path('/')}")
444
446
  File.open('Makefile', 'w') do |f| f.write old; end
445
447
  end
446
448
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tk_as_gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roger Pack
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-19 00:00:00 -07:00
12
+ date: 2010-02-19 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency