task_manager2 0.0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c227e6dceaddfc5b3f4c69813c54839989325b05
4
+ data.tar.gz: 00bf9622db7115d153bf16a4257b55e444ffa24b
5
+ SHA512:
6
+ metadata.gz: 64bf68e49b77acc08908b071c76b2919a92e6859fa0f9f579d89d4e639c411b56f2ae3802347d42ef32b242d3cb40cdfccfaa36a1304e525f0904cb6b6f4c148
7
+ data.tar.gz: 23687503e4004c8f03f16fea2b1db98089891a2695c5402bf99668de430a7f36305623ca9e359a37a22751e6aee124c7b7b1ad8efb68e6578c851520741df445
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
4
+ before_install: gem install bundler -v 1.11.2
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at leminhducktvn@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in task_manager.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Duc Le
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,41 @@
1
+ # TaskManager
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/task_manager`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'task_manager'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install task_manager
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/task_manager. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "task_manager"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/bin/task ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'task_manager'
5
+
6
+ TaskManager::Cli.start(ARGV)
@@ -0,0 +1,35 @@
1
+ require 'thor'
2
+
3
+ module TaskManager
4
+ class Cli < Thor
5
+ include Thor::Actions
6
+
7
+ desc 'add', 'Add a new task to the waiting queue'
8
+ method_option :name, aliases: '-n', desc: 'Name of the task', type: :string, required: true
9
+ method_option :score, aliases: '-s', desc: 'Score of the task', type: :integer
10
+ def add
11
+ TaskManager.add(options[:name], options[:score])
12
+ end
13
+
14
+ desc 'pick', 'Pick a task from the waiting queue'
15
+ method_option :id, aliases: '-i', desc: 'ID of the task', type: :integer, required: true
16
+ def pick
17
+ TaskManager.pick(options[:id])
18
+ end
19
+
20
+ desc 'current', 'Current task'
21
+ def current
22
+ TaskManager.current
23
+ end
24
+
25
+ desc 'finish', 'Finish the current task'
26
+ def finish
27
+ TaskManager.finish
28
+ end
29
+
30
+ desc 'stats', 'Statistics of all queues'
31
+ def stats
32
+ TaskManager.stats
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,35 @@
1
+ module TaskManager
2
+ class CurrentTaskFile < TaskFile
3
+ def current
4
+ Task.new_from_node(current_node)
5
+ end
6
+
7
+ def pick
8
+ task = current
9
+ handle_xml { current_node.remove }
10
+ task
11
+ end
12
+
13
+ protected
14
+
15
+ def current_node
16
+ root_node.css(ELEMENT).first
17
+ end
18
+
19
+ def root_node
20
+ @root_node ||= begin
21
+ xml.css(CURRENT_NODE).first || begin
22
+ node = xml.create_element(CURRENT_NODE)
23
+ super.add_child(node)
24
+ node
25
+ end
26
+ end
27
+ end
28
+
29
+ def create_node(task)
30
+ node = super
31
+ node['started_at'] = time_now
32
+ node
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,27 @@
1
+ module TaskManager
2
+ class DoneTaskFile < TaskFile
3
+ DEFAULT_NO_RESULTS = 15
4
+
5
+ def all
6
+ super.reverse!.first(DEFAULT_NO_RESULTS)
7
+ end
8
+
9
+ protected
10
+
11
+ def root_node
12
+ @root_node ||= begin
13
+ xml.css(DONE_NODE).first || begin
14
+ node = xml.create_element(DONE_NODE)
15
+ super.add_child(node)
16
+ node
17
+ end
18
+ end
19
+ end
20
+
21
+ def create_node(task)
22
+ node = super
23
+ node['finished_at'] = time_now
24
+ node
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,30 @@
1
+ module TaskManager
2
+ class Format
3
+ attr_reader :task
4
+
5
+ def initialize(task)
6
+ @task = task
7
+ end
8
+
9
+ def print_output
10
+ $stdout.puts(" #{task.id}. #{task.name}".colorize(:light_yellow))
11
+ $stdout.puts(" #{created_at}#{started_at}#{finished_at}".colorize(:light_blue))
12
+ end
13
+
14
+ def created_at
15
+ "created #{format_time(task.created_at)}" if task.created_at
16
+ end
17
+
18
+ def started_at
19
+ " | started #{format_time(task.started_at)}" if task.started_at
20
+ end
21
+
22
+ def finished_at
23
+ " | finished #{format_time(task.finished_at)}" if task.finished_at
24
+ end
25
+
26
+ def format_time(time)
27
+ time.strftime('%d %^b %Y')
28
+ end
29
+ end
30
+ end
@@ -0,0 +1,28 @@
1
+ module TaskManager
2
+ class NewTaskFile < TaskFile
3
+ def pick(id)
4
+ node = root_node.css('task').find { |t| t['id'].to_i == id }
5
+ task = Task.new_from_node(node)
6
+ handle_xml { node.remove }
7
+ task
8
+ end
9
+
10
+ protected
11
+
12
+ def root_node
13
+ @root_node ||= begin
14
+ xml.css(NEW_NODE).first || begin
15
+ node = xml.create_element(NEW_NODE)
16
+ super.add_child(node)
17
+ node
18
+ end
19
+ end
20
+ end
21
+
22
+ def create_node(task)
23
+ node = super
24
+ node['created_at'] = time_now
25
+ node
26
+ end
27
+ end
28
+ end
@@ -0,0 +1,38 @@
1
+ require 'time'
2
+
3
+ module TaskManager
4
+ class Task
5
+ attr_accessor :name,
6
+ :score,
7
+ :id,
8
+ :created_at,
9
+ :started_at,
10
+ :finished_at
11
+
12
+ def initialize(name = nil, score = nil)
13
+ @name = name
14
+ @score = score
15
+ end
16
+
17
+ def self.new_from_node(node)
18
+ task = Task.new
19
+ task.id = node['id']
20
+ task.name = node['name']
21
+ task.score = node['score']
22
+ task.created_at = parse_time(node['created_at'])
23
+ task.started_at = parse_time(node['started_at'])
24
+ task.finished_at = parse_time(node['finished_at'])
25
+ task
26
+ end
27
+
28
+ private
29
+
30
+ def self.parse_time(string)
31
+ if string && !string.empty?
32
+ Time.parse(string)
33
+ else
34
+ nil
35
+ end
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,80 @@
1
+ require 'nokogiri'
2
+ require 'time'
3
+
4
+ module TaskManager
5
+ class TaskFile
6
+ FILE_NAME = '.task'.freeze
7
+ ELEMENT = 'task'.freeze
8
+ ROOT = 'root'.freeze
9
+ NEW_NODE = 'new_tasks'.freeze
10
+ CURRENT_NODE = 'current_tasks'.freeze
11
+ DONE_NODE = 'done_tasks'.freeze
12
+
13
+ def add(task)
14
+ node = create_node(task)
15
+ handle_xml { root_node.add_child(node) }
16
+ Task.new_from_node(node)
17
+ end
18
+
19
+ def all
20
+ root_node.css(ELEMENT).map do |node|
21
+ Task.new_from_node(node)
22
+ end
23
+ end
24
+
25
+ protected
26
+
27
+ def create_node(task)
28
+ node = xml.create_element(ELEMENT)
29
+ node['id'] = new_id
30
+ node['name'] = task.name
31
+ node['score'] = task.score
32
+ node['created_at'] = task.created_at
33
+ node['started_at'] = task.started_at
34
+ node['finished_at'] = task.finished_at
35
+ node
36
+ end
37
+
38
+ def new_id
39
+ highest_id + 1
40
+ end
41
+
42
+ def highest_id
43
+ root_node.css(ELEMENT).map { |node| node['id'] }.map(&:to_i).max || 0
44
+ end
45
+
46
+ def xml
47
+ @xml ||= begin
48
+ create_file(FILE_NAME) unless File.exists?(FILE_NAME)
49
+ File.open(FILE_NAME, 'r') { |f| Nokogiri::XML(f) }
50
+ end
51
+ end
52
+
53
+ def root_node
54
+ @root_node ||= begin
55
+ xml.css(ROOT).first || begin
56
+ node = xml.create_element(ROOT)
57
+ xml.add_child(node)
58
+ node
59
+ end
60
+ end
61
+ end
62
+
63
+ def create_file(file_name)
64
+ `touch #{file_name}`
65
+ end
66
+
67
+ def handle_xml
68
+ yield if block_given?
69
+ save_xml
70
+ end
71
+
72
+ def save_xml
73
+ File.open(FILE_NAME, 'w') { |f| f.write(xml.to_s) }
74
+ end
75
+
76
+ def time_now
77
+ Time.now
78
+ end
79
+ end
80
+ end
@@ -0,0 +1,3 @@
1
+ module TaskManager
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,71 @@
1
+ require 'colorize'
2
+
3
+ require 'task_manager/version'
4
+
5
+ require 'task_manager/task'
6
+
7
+ require 'task_manager/task_file'
8
+ require 'task_manager/new_task_file'
9
+ require 'task_manager/current_task_file'
10
+ require 'task_manager/done_task_file'
11
+
12
+ require 'task_manager/format'
13
+
14
+ require 'task_manager/cli'
15
+
16
+ module TaskManager
17
+ def self.add(name, score = 0)
18
+ task = NewTaskFile.new.add(Task.new(name, score))
19
+ print('Added new task:'.colorize(:light_cyan))
20
+ print_task(task)
21
+ end
22
+
23
+ def self.pick(id)
24
+ task = NewTaskFile.new.pick(id)
25
+ CurrentTaskFile.new.add(task)
26
+ print('Picked task:'.colorize(:light_cyan))
27
+ print_task(task)
28
+ end
29
+
30
+ def self.current
31
+ task = CurrentTaskFile.new.current
32
+ print('Current task:'.colorize(:light_cyan))
33
+ print_task(task)
34
+ end
35
+
36
+ def self.finish
37
+ task = CurrentTaskFile.new.pick
38
+ DoneTaskFile.new.add(task)
39
+ print('Finished task:'.colorize(:light_green))
40
+ print_task(task)
41
+ end
42
+
43
+ def self.stats
44
+ print('Waiting tasks:'.colorize(:light_cyan))
45
+ NewTaskFile.new.all.each do |task|
46
+ print_task(task)
47
+ end
48
+ print('')
49
+
50
+ print('Current task:'.colorize(:light_cyan))
51
+ CurrentTaskFile.new.all.each do |task|
52
+ print_task(task)
53
+ end
54
+ print('')
55
+
56
+ print('Done tasks:'.colorize(:light_cyan))
57
+ DoneTaskFile.new.all.each do |task|
58
+ print_task(task)
59
+ end
60
+ end
61
+
62
+ private
63
+
64
+ def self.print(sentence)
65
+ $stdout.puts sentence
66
+ end
67
+
68
+ def self.print_task(task)
69
+ Format.new(task).print_output
70
+ end
71
+ end
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'task_manager/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "task_manager2"
8
+ spec.version = TaskManager::VERSION
9
+ spec.authors = ["MatBi"]
10
+ spec.email = ["leminhducktvn@gmail.com"]
11
+
12
+ spec.summary = %q{A simple task manager in console}
13
+ spec.description = %q{A simple task manager in console, stored using XML}
14
+ spec.homepage = "https://github.com/lmduc/task_manager"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.11'
23
+ spec.add_development_dependency 'rake', '~> 10.0'
24
+ spec.add_development_dependency 'rspec', '~> 3.0'
25
+ spec.add_dependency 'nokogiri'
26
+ spec.add_dependency 'colorize'
27
+ spec.add_dependency 'thor'
28
+ end
metadata ADDED
@@ -0,0 +1,149 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: task_manager2
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - MatBi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-04-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: nokogiri
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: colorize
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: thor
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: A simple task manager in console, stored using XML
98
+ email:
99
+ - leminhducktvn@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - ".rspec"
106
+ - ".travis.yml"
107
+ - CODE_OF_CONDUCT.md
108
+ - Gemfile
109
+ - LICENSE.txt
110
+ - README.md
111
+ - Rakefile
112
+ - bin/console
113
+ - bin/setup
114
+ - bin/task
115
+ - lib/task_manager.rb
116
+ - lib/task_manager/cli.rb
117
+ - lib/task_manager/current_task_file.rb
118
+ - lib/task_manager/done_task_file.rb
119
+ - lib/task_manager/format.rb
120
+ - lib/task_manager/new_task_file.rb
121
+ - lib/task_manager/task.rb
122
+ - lib/task_manager/task_file.rb
123
+ - lib/task_manager/version.rb
124
+ - task_manager.gemspec
125
+ homepage: https://github.com/lmduc/task_manager
126
+ licenses:
127
+ - MIT
128
+ metadata: {}
129
+ post_install_message:
130
+ rdoc_options: []
131
+ require_paths:
132
+ - lib
133
+ required_ruby_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ required_rubygems_version: !ruby/object:Gem::Requirement
139
+ requirements:
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: '0'
143
+ requirements: []
144
+ rubyforge_project:
145
+ rubygems_version: 2.5.1
146
+ signing_key:
147
+ specification_version: 4
148
+ summary: A simple task manager in console
149
+ test_files: []