tk-win 0.2.0-x86-mingw32 → 0.2.1-x86-mingw32
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/Rakefile +6 -1
- data/VERSION +1 -1
- data/lib/x86-mingw32/tcltklib.so +0 -0
- data/lib/x86-mingw32/tkutil.so +0 -0
- data/tk-win.gemspec +7 -4
- metadata +15 -9
data/Rakefile
CHANGED
@@ -1,17 +1,22 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'rake'
|
3
3
|
|
4
|
+
|
4
5
|
begin
|
5
6
|
require 'jeweler'
|
6
7
|
Jeweler::Tasks.new do |gem|
|
7
8
|
gem.name = "tk-win"
|
8
9
|
gem.summary = %Q{RubyTk bindings for windows bundled with tcltklib and tkutil}
|
9
|
-
gem.description = %Q{RubyTk bindings for windows bundled with
|
10
|
+
gem.description = %Q{RubyTk bindings for windows bundled with tcltklib.so and tkutil.soin}
|
10
11
|
gem.email = "elia.schito@gmail.com"
|
11
12
|
gem.homepage = "http://github.com/elia/tk-win"
|
12
13
|
gem.authors = ["Hidetoshi NAGAI", "Elia Schito"]
|
13
14
|
gem.add_development_dependency "rspec", "~> 1.2.9"
|
15
|
+
gem.required_ruby_version = "~> 1.9.1"
|
14
16
|
gem.platform = 'x86-mingw32'
|
17
|
+
gem.require_paths << "lib/#{gem.platform}"
|
18
|
+
gem.files += Dir["lib/#{gem.platform}/*.so"]
|
19
|
+
|
15
20
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
21
|
end
|
17
22
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
Binary file
|
Binary file
|
data/tk-win.gemspec
CHANGED
@@ -5,13 +5,13 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{tk-win}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
s.platform = %q{x86-mingw32}
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.authors = ["Hidetoshi NAGAI", "Elia Schito"]
|
13
|
-
s.date = %q{2010-07-
|
14
|
-
s.description = %q{RubyTk bindings for windows bundled with
|
13
|
+
s.date = %q{2010-07-21}
|
14
|
+
s.description = %q{RubyTk bindings for windows bundled with tcltklib.so and tkutil.soin}
|
15
15
|
s.email = %q{elia.schito@gmail.com}
|
16
16
|
s.extra_rdoc_files = [
|
17
17
|
"LICENSE",
|
@@ -342,6 +342,8 @@ Gem::Specification.new do |s|
|
|
342
342
|
"lib/tktext.rb",
|
343
343
|
"lib/tkvirtevent.rb",
|
344
344
|
"lib/tkwinpkg.rb",
|
345
|
+
"lib/x86-mingw32/tcltklib.so",
|
346
|
+
"lib/x86-mingw32/tkutil.so",
|
345
347
|
"spec/spec.opts",
|
346
348
|
"spec/spec_helper.rb",
|
347
349
|
"spec/tk-win_spec.rb",
|
@@ -349,7 +351,8 @@ Gem::Specification.new do |s|
|
|
349
351
|
]
|
350
352
|
s.homepage = %q{http://github.com/elia/tk-win}
|
351
353
|
s.rdoc_options = ["--charset=UTF-8"]
|
352
|
-
s.require_paths = ["lib"]
|
354
|
+
s.require_paths = ["lib", "lib/x86-mingw32", "lib/x86-mingw32"]
|
355
|
+
s.required_ruby_version = Gem::Requirement.new("~> 1.9.1")
|
353
356
|
s.rubygems_version = %q{1.3.7}
|
354
357
|
s.summary = %q{RubyTk bindings for windows bundled with tcltklib and tkutil}
|
355
358
|
s.test_files = [
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tk-win
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- Hidetoshi NAGAI
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-07-
|
19
|
+
date: 2010-07-21 00:00:00 +02:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -35,7 +35,7 @@ dependencies:
|
|
35
35
|
version: 1.2.9
|
36
36
|
type: :development
|
37
37
|
version_requirements: *id001
|
38
|
-
description: RubyTk bindings for windows bundled with
|
38
|
+
description: RubyTk bindings for windows bundled with tcltklib.so and tkutil.soin
|
39
39
|
email: elia.schito@gmail.com
|
40
40
|
executables: []
|
41
41
|
|
@@ -369,6 +369,8 @@ files:
|
|
369
369
|
- lib/tktext.rb
|
370
370
|
- lib/tkvirtevent.rb
|
371
371
|
- lib/tkwinpkg.rb
|
372
|
+
- lib/x86-mingw32/tcltklib.so
|
373
|
+
- lib/x86-mingw32/tkutil.so
|
372
374
|
- spec/spec.opts
|
373
375
|
- spec/spec_helper.rb
|
374
376
|
- spec/tk-win_spec.rb
|
@@ -382,15 +384,19 @@ rdoc_options:
|
|
382
384
|
- --charset=UTF-8
|
383
385
|
require_paths:
|
384
386
|
- lib
|
387
|
+
- lib/x86-mingw32
|
388
|
+
- lib/x86-mingw32
|
385
389
|
required_ruby_version: !ruby/object:Gem::Requirement
|
386
390
|
none: false
|
387
391
|
requirements:
|
388
|
-
- -
|
392
|
+
- - ~>
|
389
393
|
- !ruby/object:Gem::Version
|
390
|
-
hash:
|
394
|
+
hash: 49
|
391
395
|
segments:
|
392
|
-
-
|
393
|
-
|
396
|
+
- 1
|
397
|
+
- 9
|
398
|
+
- 1
|
399
|
+
version: 1.9.1
|
394
400
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
395
401
|
none: false
|
396
402
|
requirements:
|