testinggemtk 0.0.3 → 0.0.6

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.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NTU5ZWU3MTRiY2UxNDQ5NDg3NGU2MTczZjRlNTJkOWM4MGRiMzZjNg==
4
+ ZGIxODljYjE5NTcyMTY1NzYxY2MyOTgwY2RmNjcwOGJmMDAwMjY4Zg==
5
5
  data.tar.gz: !binary |-
6
- Y2ExZTQzMGRkZGFiOWZlOTM3ZWYwOTJlNzFmMzZiOThhZDM5MDAyNw==
6
+ ZGQ1MDk0NWNjYzIyMTAwOTZlYWQzMjVmNGJjYjUxN2EzODIzOWNmNQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YjE5MzNiODJkYTk1YTc1NDkwZDdiYzQzYWEwOWZiYWI2ZjJhY2YyNGQwYzkw
10
- NGU2ZmFmYTIyMWMxYjU1OWRmZmRmMjZiZDE2MDc1ZjM3Y2MzZDVkMDlhZDY4
11
- OGU0ZDQ1MjIwZmI4NmEyODZiNDI0NGI4MmE5ZjFjZTFmMmM0ZjY=
9
+ N2Y0MWZlNzY3NzVhMjliZDgxYmFlZGJiOWYzODM3MmQxOGJiN2UyYjE4YTk0
10
+ ZDA2MWNiNzVjMDlmMzgyMzAyZjExM2JlMDExN2Y1YjY4ZjE0MDY5OTRlMjQ0
11
+ NDEwYjk0MjQ3MTU4ODliNTEwOWViMTkyNDcxMzY5ZWYzMDQzYzE=
12
12
  data.tar.gz: !binary |-
13
- M2YwNzVmMjcxMTRmYTAwYjA0MzIxNTA5YWNlNTgwZDI2OTRhYTMyOWNmOGVl
14
- OWYzMzI4NDRhYzg0M2I3NGJjZjE1OTU2NTg3NjZlMTg2OGI0NTA4NjljYzky
15
- NDc0MDVlM2IxMzJlMjVlMDA0NGU4MWI0OTMwZWE5N2NjYTc4ODE=
13
+ ODZhMDcxYzFkY2FmMzNjMmRhZmZkNjhkYmUzZTVmNDkyY2RmOWYzNGUyOWUy
14
+ YjVlOGVmZGRiMzQ5NjhjZTViNjE1ZDhiZTM1YWY2ZGM0MzlmNWE5NDhiYzZj
15
+ MDM3ZTgxZjRjMDc4NjVlNTNiYTA3MzViYzQ5ZjQ0Y2VjZjMwN2E=
data/bin/testinggemtk ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'testinggemtk'
4
+ require "entry"
data/lib/testinggemtk.rb CHANGED
@@ -1,9 +1,10 @@
1
1
  require "testinggemtk/version"
2
2
  require "tk"
3
+ $LOAD_PATH << './lib'
4
+ require "entry"
3
5
 
4
6
  module Testinggemtk
5
7
  class TestTk
6
- def initialize
7
8
  root = TkRoot.new { title "Hello, World!" }
8
9
  TkLabel.new(root) do
9
10
  text 'Hello, World!'
@@ -11,7 +12,6 @@ TkLabel.new(root) do
11
12
  end
12
13
  end
13
14
  end
14
- end
15
15
 
16
16
  Testinggemtk::TestTk.new
17
17
  Tk.mainloop
@@ -1,3 +1,3 @@
1
1
  module Testinggemtk
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.6"
3
3
  end
data/testinggemtk.gemspec CHANGED
@@ -12,6 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{a test GUI gem}
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
+ spec.executables << 'testinggemtk'
15
16
 
16
17
  spec.files = `git ls-files`.split($/)
17
18
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: testinggemtk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Antonio
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-19 00:00:00.000000000 Z
11
+ date: 2013-09-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -41,7 +41,8 @@ dependencies:
41
41
  description: a test GUI gem
42
42
  email:
43
43
  - antalby@hotmail.com
44
- executables: []
44
+ executables:
45
+ - testinggemtk
45
46
  extensions: []
46
47
  extra_rdoc_files: []
47
48
  files:
@@ -53,6 +54,7 @@ files:
53
54
  - lib/testinggemtk.rb
54
55
  - lib/testinggemtk/version.rb
55
56
  - testinggemtk.gemspec
57
+ - bin/testinggemtk
56
58
  homepage: ''
57
59
  licenses:
58
60
  - MIT