goot 0.1.1 → 0.1.2

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,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9494fc3b9540b1afa2019c6716fac96e4b959634
4
- data.tar.gz: 94a7c44f32a391af1976fee56f2560c5d9292d24
3
+ metadata.gz: d321c0390af2980c57275fc3421182059657a868
4
+ data.tar.gz: fde2e5cfe3dea9431aa3d082dcca7fc9cdefbcfd
5
5
  SHA512:
6
- metadata.gz: aa94013a059e5016b9ab2398ef999a9def2a8860972a54440a99cc61205e26a2eb8a387c0b8c51caa89e38894032856e359d4f5a2336f4747dd7a918c3e9d5ce
7
- data.tar.gz: e5a734197813d047366459e2096ffe1c227653215d71be99e5adda826ed468a83b5db0877e6c8b3e37758fa957237f27850195cdbf32002a3666f9d802722b5c
6
+ metadata.gz: 61d0be50d738af5866fbc7632d0e9618f7aa9ffae5b4c7aa5ced9a973f8988e03b655313605eb64eeba521ae4e60358e0f71e69736cb3b265f13bd2e232b9ee8
7
+ data.tar.gz: ba329e2400ab7a6d57f5155bda7e15d88c5c1604a40cf3a56530ce96f6e66bad8ca273e13569c1dbeaa8a8569ba1666eb2ddfc45d329a2a94eb555cdbcb7a7c5
data/Gemfile CHANGED
@@ -1,4 +1,4 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- # Specify your gem's dependencies in gtasks.gemspec
3
+ # Specify your gem's dependencies in goot.gemspec
4
4
  gemspec
@@ -30,11 +30,10 @@ class GoogleTasks::CLI < Thor
30
30
  end
31
31
  end
32
32
 
33
- desc 'summary', 'Displays all task lists and their task counts'
33
+ desc 'summary', 'Displays all task lists'
34
34
  def summary
35
35
  @api.get_lists.each.with_index do |tasklist, i|
36
- tasks = @api.get_tasks(tasklist)
37
- say "#{i} #{tasklist.title} (#{tasks.size})"
36
+ say "#{i} #{tasklist.title}"
38
37
  end
39
38
  end
40
39
 
@@ -1,6 +1,6 @@
1
1
  module GoogleTasks
2
2
  APP_NAME = 'goot'
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
 
5
5
  GEM_ROOT = File.expand_path('../../..', __FILE__)
6
6
  CONFIG_DIR = File.join(ENV['HOME'], '.goot')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: goot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Conner McDaniel