remi-simpletray 0.0.6 → 0.0.7

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 CHANGED
@@ -1,9 +1,9 @@
1
1
  require 'rake/rdoctask'
2
2
 
3
3
  Rake::RDocTask.new do |rdoc|
4
- files = ['README.rdoc','lib/**/*.rb', 'doc/**/*.rdoc', 'test/*.rb']
4
+ files = ['doc/README.rdoc','lib/**/*.rb', 'doc/**/*.rdoc', 'test/*.rb']
5
5
  rdoc.rdoc_files.add(files)
6
- rdoc.main = 'README.rdoc'
6
+ rdoc.main = 'doc/README.rdoc'
7
7
  rdoc.title = 'SimpleTray'
8
8
  rdoc.rdoc_dir = 'doc'
9
9
  rdoc.options << '--line-numbers' << '--inline-source'
@@ -12,7 +12,7 @@ now, install the required rubygems ...
12
12
 
13
13
  $ sudo gem install wxruby activesupport
14
14
 
15
- and ... simpletray! (NOTE: at the time of writing, github still hasn't generated by gem, so you need to manually download from github)
15
+ and ... simpletray!
16
16
 
17
17
  $ sudo gem install remi-simpletray -s http://gems.github.com
18
18
 
@@ -34,6 +34,11 @@ and ... simpletray! (NOTE: at the time of writing, github still hasn't generate
34
34
  rover { puts "..." }
35
35
  spot { puts "..." }
36
36
  rex { msgbox "w00f, my name is rex!" }
37
+
38
+ _more_dogs_ do
39
+ another_dog { puts "..." }
40
+ yet_another_dog { puts "..." }
41
+ end
37
42
  }
38
43
 
39
44
  # adds an item (the same as saying my_custom_item) with a custom icon
data/simpletray.gemspec CHANGED
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = "simpletray"
4
- s.version = "0.0.6"
4
+ s.version = "0.0.7"
5
5
  s.date = "2008-09-26"
6
6
  s.summary = "Ruby gem that provides a DSL for creating system tray icon applications *really* easily."
7
7
  s.email = "remi@remitaylor.com"
@@ -12,6 +12,6 @@ Gem::Specification.new do |s|
12
12
  s.authors = ["remi Taylor"]
13
13
 
14
14
  # generate using: $ ruby -e "puts Dir['**/**'].select{|x| File.file?x}.inspect"
15
- s.files = ["examples/first.rb", "lib/simpletray.rb", "README.rdoc", "simpletray.gemspec", "Rakefile"]
15
+ s.files = ["examples/first.rb", "lib/simpletray.rb", "doc/README.rdoc", "simpletray.gemspec", "Rakefile"]
16
16
 
17
17
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: remi-simpletray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - remi Taylor
@@ -24,7 +24,7 @@ extra_rdoc_files: []
24
24
  files:
25
25
  - examples/first.rb
26
26
  - lib/simpletray.rb
27
- - README.rdoc
27
+ - doc/README.rdoc
28
28
  - simpletray.gemspec
29
29
  - Rakefile
30
30
  has_rdoc: true