ruby_do 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,18 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ gem "gtk2"
7
+ gem "knjrbfw"
8
+ gem "gettext"
9
+
10
+ # Add dependencies to develop your gem here.
11
+ # Include everything needed to run rake, tests, features, etc.
12
+ group :development do
13
+ gem "rspec", "~> 2.8.0"
14
+ gem "rdoc", "~> 3.12"
15
+ gem "bundler", ">= 1.0.0"
16
+ gem "jeweler", "~> 1.8.4"
17
+ gem "rcov", ">= 0"
18
+ end
@@ -0,0 +1,60 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ atk (1.1.3)
5
+ glib2 (>= 1.1.3)
6
+ cairo (1.12.2)
7
+ pkg-config
8
+ diff-lcs (1.1.3)
9
+ gdk_pixbuf2 (1.1.3)
10
+ glib2 (>= 1.1.3)
11
+ gettext (2.2.1)
12
+ locale
13
+ git (1.2.5)
14
+ glib2 (1.1.3)
15
+ pkg-config
16
+ gtk2 (1.1.3)
17
+ atk (>= 1.1.3)
18
+ gdk_pixbuf2 (>= 1.1.3)
19
+ pango (>= 1.1.3)
20
+ jeweler (1.8.4)
21
+ bundler (~> 1.0)
22
+ git (>= 1.2.5)
23
+ rake
24
+ rdoc
25
+ json (1.7.3)
26
+ knjrbfw (0.0.55)
27
+ tsafe
28
+ wref
29
+ locale (2.0.5)
30
+ pango (1.1.3)
31
+ cairo (>= 1.10.0)
32
+ glib2 (>= 1.1.3)
33
+ pkg-config (1.1.3)
34
+ rake (0.9.2.2)
35
+ rcov (0.9.11)
36
+ rdoc (3.12)
37
+ json (~> 1.4)
38
+ rspec (2.8.0)
39
+ rspec-core (~> 2.8.0)
40
+ rspec-expectations (~> 2.8.0)
41
+ rspec-mocks (~> 2.8.0)
42
+ rspec-core (2.8.0)
43
+ rspec-expectations (2.8.0)
44
+ diff-lcs (~> 1.1.2)
45
+ rspec-mocks (2.8.0)
46
+ tsafe (0.0.1)
47
+ wref (0.0.4)
48
+
49
+ PLATFORMS
50
+ ruby
51
+
52
+ DEPENDENCIES
53
+ bundler (>= 1.0.0)
54
+ gettext
55
+ gtk2
56
+ jeweler (~> 1.8.4)
57
+ knjrbfw
58
+ rcov
59
+ rdoc (~> 3.12)
60
+ rspec (~> 2.8.0)
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Kasper Johansen
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,19 @@
1
+ = ruby_do
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to ruby_do
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2012 Kasper Johansen. See LICENSE.txt for
18
+ further details.
19
+
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "ruby_do"
18
+ gem.homepage = "http://github.com/kaspernj/ruby_do"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{A clone of Gnome-Do and Kupfer written in Ruby. }
21
+ gem.description = %Q{A clone of Gnome-Do and Kupfer written in Ruby. }
22
+ gem.email = "k@spernj.org"
23
+ gem.authors = ["Kasper Johansen"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "ruby_do #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "rubygems"
4
+ require "knjrbfw"
5
+
6
+ args = {
7
+ :path => "#{Knj::Os.homedir}/.ruby_do",
8
+ :sock_path => "#{Knj::Os.homedir}/.ruby_do/sock"
9
+ }
10
+
11
+ ARGV.each do |arg|
12
+ if match = arg.match(/^--rdo-(.+?)=(.+)$/)
13
+ args[match[1].to_sym] = match[2]
14
+ end
15
+ end
16
+
17
+ if args[:cmd]
18
+ require "socket"
19
+ UNIXSocket.open(args[:sock_path]) do |sock|
20
+ puts sock.puts(args[:cmd])
21
+ end
22
+ exit
23
+ end
24
+
25
+ require "#{File.realpath(File.dirname(__FILE__))}/../lib/ruby_do.rb"
26
+ rdo = Ruby_do.new
27
+ rdo.join
@@ -0,0 +1,170 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <interface>
3
+ <requires lib="gtk+" version="2.24"/>
4
+ <!-- interface-naming-policy project-wide -->
5
+ <object class="GtkWindow" id="window">
6
+ <property name="can_focus">False</property>
7
+ <property name="title" translatable="yes">Ruby Do</property>
8
+ <property name="window_position">center</property>
9
+ <property name="default_width">640</property>
10
+ <property name="default_height">480</property>
11
+ <child>
12
+ <object class="GtkVBox" id="vbox1">
13
+ <property name="visible">True</property>
14
+ <property name="can_focus">False</property>
15
+ <property name="spacing">5</property>
16
+ <child>
17
+ <object class="GtkHButtonBox" id="hbuttonbox1">
18
+ <property name="visible">True</property>
19
+ <property name="can_focus">False</property>
20
+ <property name="layout_style">end</property>
21
+ <child>
22
+ <object class="GtkButton" id="btnProperties">
23
+ <property name="label">gtk-properties</property>
24
+ <property name="visible">True</property>
25
+ <property name="can_focus">True</property>
26
+ <property name="receives_default">True</property>
27
+ <property name="use_action_appearance">False</property>
28
+ <property name="use_stock">True</property>
29
+ <signal name="clicked" handler="on_btnProperties_clicked" swapped="no"/>
30
+ </object>
31
+ <packing>
32
+ <property name="expand">False</property>
33
+ <property name="fill">False</property>
34
+ <property name="position">0</property>
35
+ </packing>
36
+ </child>
37
+ </object>
38
+ <packing>
39
+ <property name="expand">False</property>
40
+ <property name="fill">True</property>
41
+ <property name="padding">5</property>
42
+ <property name="position">0</property>
43
+ </packing>
44
+ </child>
45
+ <child>
46
+ <object class="GtkTable" id="table1">
47
+ <property name="visible">True</property>
48
+ <property name="can_focus">False</property>
49
+ <property name="n_columns">2</property>
50
+ <property name="column_spacing">4</property>
51
+ <property name="row_spacing">4</property>
52
+ <child>
53
+ <object class="GtkLabel" id="label1">
54
+ <property name="visible">True</property>
55
+ <property name="can_focus">False</property>
56
+ <property name="xalign">0</property>
57
+ <property name="label" translatable="yes">Search for</property>
58
+ </object>
59
+ <packing>
60
+ <property name="x_options">GTK_FILL</property>
61
+ </packing>
62
+ </child>
63
+ <child>
64
+ <object class="GtkEntry" id="txtSearch">
65
+ <property name="visible">True</property>
66
+ <property name="can_focus">True</property>
67
+ <property name="invisible_char">•</property>
68
+ <property name="primary_icon_activatable">False</property>
69
+ <property name="secondary_icon_activatable">False</property>
70
+ <property name="primary_icon_sensitive">True</property>
71
+ <property name="secondary_icon_sensitive">True</property>
72
+ <signal name="changed" handler="on_txtSearch_changed" swapped="no"/>
73
+ </object>
74
+ <packing>
75
+ <property name="left_attach">1</property>
76
+ <property name="right_attach">2</property>
77
+ </packing>
78
+ </child>
79
+ </object>
80
+ <packing>
81
+ <property name="expand">False</property>
82
+ <property name="fill">True</property>
83
+ <property name="position">1</property>
84
+ </packing>
85
+ </child>
86
+ <child>
87
+ <object class="GtkHBox" id="hbox1">
88
+ <property name="visible">True</property>
89
+ <property name="can_focus">False</property>
90
+ <child>
91
+ <object class="GtkViewport" id="viewport1">
92
+ <property name="width_request">170</property>
93
+ <property name="height_request">150</property>
94
+ <property name="visible">True</property>
95
+ <property name="can_focus">False</property>
96
+ <child>
97
+ <object class="GtkImage" id="imgActionIcon">
98
+ <property name="visible">True</property>
99
+ <property name="can_focus">False</property>
100
+ <property name="stock">gtk-missing-image</property>
101
+ </object>
102
+ </child>
103
+ </object>
104
+ <packing>
105
+ <property name="expand">False</property>
106
+ <property name="fill">True</property>
107
+ <property name="padding">30</property>
108
+ <property name="position">0</property>
109
+ </packing>
110
+ </child>
111
+ <child>
112
+ <object class="GtkFrame" id="frame1">
113
+ <property name="visible">True</property>
114
+ <property name="can_focus">False</property>
115
+ <property name="label_xalign">0</property>
116
+ <property name="shadow_type">none</property>
117
+ <child>
118
+ <object class="GtkAlignment" id="alignment1">
119
+ <property name="visible">True</property>
120
+ <property name="can_focus">False</property>
121
+ <property name="left_padding">12</property>
122
+ <child>
123
+ <object class="GtkLabel" id="labActionDescr">
124
+ <property name="visible">True</property>
125
+ <property name="can_focus">False</property>
126
+ <property name="xalign">0</property>
127
+ <property name="yalign">0</property>
128
+ <property name="label" translatable="yes">Description</property>
129
+ </object>
130
+ </child>
131
+ </object>
132
+ </child>
133
+ <child type="label">
134
+ <object class="GtkLabel" id="labActionTitle">
135
+ <property name="visible">True</property>
136
+ <property name="can_focus">False</property>
137
+ <property name="label" translatable="yes">&lt;b&gt;Action&lt;/b&gt;</property>
138
+ <property name="use_markup">True</property>
139
+ </object>
140
+ </child>
141
+ </object>
142
+ <packing>
143
+ <property name="expand">True</property>
144
+ <property name="fill">True</property>
145
+ <property name="position">1</property>
146
+ </packing>
147
+ </child>
148
+ </object>
149
+ <packing>
150
+ <property name="expand">True</property>
151
+ <property name="fill">True</property>
152
+ <property name="position">2</property>
153
+ </packing>
154
+ </child>
155
+ <child>
156
+ <object class="GtkStatusbar" id="statusbar">
157
+ <property name="visible">True</property>
158
+ <property name="can_focus">False</property>
159
+ <property name="spacing">2</property>
160
+ </object>
161
+ <packing>
162
+ <property name="expand">False</property>
163
+ <property name="fill">True</property>
164
+ <property name="position">3</property>
165
+ </packing>
166
+ </child>
167
+ </object>
168
+ </child>
169
+ </object>
170
+ </interface>
@@ -0,0 +1,13 @@
1
+ class Ruby_do::Gui::Win_main
2
+ def initialize(args)
3
+ @args = args
4
+
5
+ @gui = Gtk::Builder.new.add("#{File.dirname(__FILE__)}/../glade/win_main.glade")
6
+ Knj::Gtk2.translate(@gui)
7
+ end
8
+
9
+ def show
10
+ @gui["window"].show_all
11
+ @gui["txtSearch"].grab_focus
12
+ end
13
+ end
@@ -0,0 +1,37 @@
1
+ class Ruby_do::Unix_socket
2
+ def initialize(args)
3
+ @args = args
4
+
5
+ #Remove the sock-file if it already exists.
6
+ File.unlink(@args[:rdo].args[:sock_path]) if File.exists?(@args[:rdo].args[:sock_path])
7
+
8
+ #Start Unix-socket.
9
+ require "socket"
10
+ @usock = UNIXServer.new(@args[:rdo].args[:sock_path])
11
+
12
+ #Remove the sock-file after this process is done.
13
+ Kernel.at_exit do
14
+ File.unlink(@args[:rdo].args[:sock_path]) if File.exists?(@args[:rdo].args[:sock_path])
15
+ end
16
+
17
+ #Start thread that listens for connections through the Unix-socket.
18
+ Thread.new do
19
+ begin
20
+ while client = @usock.accept
21
+ client.each_line do |line|
22
+ line = line.strip
23
+
24
+ if line.strip == "open_main_window"
25
+ @args[:oata].show_main
26
+ else
27
+ $stderr.puts "Unknown line: #{line}"
28
+ end
29
+ end
30
+ end
31
+ rescue => e
32
+ $stderr.puts e.inspect
33
+ $stderr.puts e.backtrace
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,44 @@
1
+ class Ruby_do
2
+ class Gui
3
+ def self.const_missing(name)
4
+ require "#{File.dirname(__FILE__)}/../gui/#{name.to_s.downcase}.rb"
5
+ return self.const_get(name)
6
+ end
7
+ end
8
+
9
+ def self.const_missing(name)
10
+ require "#{File.dirname(__FILE__)}/../include/#{name.to_s.downcase}.rb"
11
+ return self.const_get(name)
12
+ end
13
+
14
+ attr_reader :args
15
+
16
+ def initialize(args = {})
17
+ require "rubygems"
18
+ require "gtk2"
19
+ require "knjrbfw"
20
+ require "gettext"
21
+
22
+ homedir = Knj::Os.homedir
23
+ path = "#{homedir}/.ruby_do"
24
+ Dir.mkdir(path) if !File.exists?(path)
25
+
26
+ @args = {
27
+ :sock_path => "#{path}/sock"
28
+ }.merge(args)
29
+
30
+ @unix_socket = Ruby_do::Unix_socket.new(:rdo => self)
31
+ end
32
+
33
+ def show_win_main
34
+ if !@win_main
35
+ @win_main = Ruby_do::Gui::Win_main.new(:rdo => self)
36
+ end
37
+
38
+ @win_main.show
39
+ end
40
+
41
+ def join
42
+ Gtk.main
43
+ end
44
+ end
@@ -0,0 +1,78 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{ruby_do}
8
+ s.version = "0.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Kasper Johansen"]
12
+ s.date = %q{2012-07-08}
13
+ s.default_executable = %q{ruby_do.rb}
14
+ s.description = %q{A clone of Gnome-Do and Kupfer written in Ruby. }
15
+ s.email = %q{k@spernj.org}
16
+ s.executables = ["ruby_do.rb"]
17
+ s.extra_rdoc_files = [
18
+ "LICENSE.txt",
19
+ "README.rdoc"
20
+ ]
21
+ s.files = [
22
+ ".document",
23
+ ".rspec",
24
+ "Gemfile",
25
+ "Gemfile.lock",
26
+ "LICENSE.txt",
27
+ "README.rdoc",
28
+ "Rakefile",
29
+ "VERSION",
30
+ "bin/ruby_do.rb",
31
+ "glade/win_main.glade",
32
+ "gui/win_main.rb",
33
+ "include/unix_socket.rb",
34
+ "lib/ruby_do.rb",
35
+ "ruby_do.gemspec",
36
+ "spec/ruby_do_spec.rb",
37
+ "spec/spec_helper.rb"
38
+ ]
39
+ s.homepage = %q{http://github.com/kaspernj/ruby_do}
40
+ s.licenses = ["MIT"]
41
+ s.require_paths = ["lib"]
42
+ s.rubygems_version = %q{1.6.2}
43
+ s.summary = %q{A clone of Gnome-Do and Kupfer written in Ruby.}
44
+
45
+ if s.respond_to? :specification_version then
46
+ s.specification_version = 3
47
+
48
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
49
+ s.add_runtime_dependency(%q<gtk2>, [">= 0"])
50
+ s.add_runtime_dependency(%q<knjrbfw>, [">= 0"])
51
+ s.add_runtime_dependency(%q<gettext>, [">= 0"])
52
+ s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
53
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
54
+ s.add_development_dependency(%q<bundler>, [">= 1.0.0"])
55
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
56
+ s.add_development_dependency(%q<rcov>, [">= 0"])
57
+ else
58
+ s.add_dependency(%q<gtk2>, [">= 0"])
59
+ s.add_dependency(%q<knjrbfw>, [">= 0"])
60
+ s.add_dependency(%q<gettext>, [">= 0"])
61
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
62
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
63
+ s.add_dependency(%q<bundler>, [">= 1.0.0"])
64
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
65
+ s.add_dependency(%q<rcov>, [">= 0"])
66
+ end
67
+ else
68
+ s.add_dependency(%q<gtk2>, [">= 0"])
69
+ s.add_dependency(%q<knjrbfw>, [">= 0"])
70
+ s.add_dependency(%q<gettext>, [">= 0"])
71
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
72
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
73
+ s.add_dependency(%q<bundler>, [">= 1.0.0"])
74
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
75
+ s.add_dependency(%q<rcov>, [">= 0"])
76
+ end
77
+ end
78
+
@@ -0,0 +1,8 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "RubyDo" do
4
+ it "should be able to start the main window" do
5
+ $rdo = Ruby_do.new
6
+ $rdo.show_win_main
7
+ end
8
+ end
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'ruby_do'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_do
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 0.0.0
6
+ platform: ruby
7
+ authors:
8
+ - Kasper Johansen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2012-07-08 00:00:00 +02:00
14
+ default_executable: ruby_do.rb
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: gtk2
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: knjrbfw
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: "0"
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: gettext
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
50
+ name: rspec
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ version: 2.8.0
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: *id004
60
+ - !ruby/object:Gem::Dependency
61
+ name: rdoc
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: "3.12"
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: *id005
71
+ - !ruby/object:Gem::Dependency
72
+ name: bundler
73
+ requirement: &id006 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ">="
77
+ - !ruby/object:Gem::Version
78
+ version: 1.0.0
79
+ type: :development
80
+ prerelease: false
81
+ version_requirements: *id006
82
+ - !ruby/object:Gem::Dependency
83
+ name: jeweler
84
+ requirement: &id007 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: 1.8.4
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: *id007
93
+ - !ruby/object:Gem::Dependency
94
+ name: rcov
95
+ requirement: &id008 !ruby/object:Gem::Requirement
96
+ none: false
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: "0"
101
+ type: :development
102
+ prerelease: false
103
+ version_requirements: *id008
104
+ description: "A clone of Gnome-Do and Kupfer written in Ruby. "
105
+ email: k@spernj.org
106
+ executables:
107
+ - ruby_do.rb
108
+ extensions: []
109
+
110
+ extra_rdoc_files:
111
+ - LICENSE.txt
112
+ - README.rdoc
113
+ files:
114
+ - .document
115
+ - .rspec
116
+ - Gemfile
117
+ - Gemfile.lock
118
+ - LICENSE.txt
119
+ - README.rdoc
120
+ - Rakefile
121
+ - VERSION
122
+ - bin/ruby_do.rb
123
+ - glade/win_main.glade
124
+ - gui/win_main.rb
125
+ - include/unix_socket.rb
126
+ - lib/ruby_do.rb
127
+ - ruby_do.gemspec
128
+ - spec/ruby_do_spec.rb
129
+ - spec/spec_helper.rb
130
+ has_rdoc: true
131
+ homepage: http://github.com/kaspernj/ruby_do
132
+ licenses:
133
+ - MIT
134
+ post_install_message:
135
+ rdoc_options: []
136
+
137
+ require_paths:
138
+ - lib
139
+ required_ruby_version: !ruby/object:Gem::Requirement
140
+ none: false
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ hash: -3142706706586162189
145
+ segments:
146
+ - 0
147
+ version: "0"
148
+ required_rubygems_version: !ruby/object:Gem::Requirement
149
+ none: false
150
+ requirements:
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: "0"
154
+ requirements: []
155
+
156
+ rubyforge_project:
157
+ rubygems_version: 1.6.2
158
+ signing_key:
159
+ specification_version: 3
160
+ summary: A clone of Gnome-Do and Kupfer written in Ruby.
161
+ test_files: []
162
+