ll 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '09bf2b6bdfe7a7c076d9a1bee31c0339b3b79ace612437796c0ce371b1c0752e'
4
+ data.tar.gz: 1d30409447156202a41f301bb542de81747611db4014ba3b5eddb7023a72ec59
5
+ SHA512:
6
+ metadata.gz: d04c27b8a716a2d8657e4df4514295d9ab67509c1bc5a2f386ca2e5b70fbf0d23642fb7a8690218dcffcadf59562042789cee7b3e38293f8359ced02cc60d25a
7
+ data.tar.gz: '09be8e08753172dd5835c8f1504360fdf5405612045cfcfb2718e897fe0ae24d779f36fba50895510399b7e1b58a4cc745888961198530828f2b0c8324fa61ae'
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2019 Zach Aysan
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,11 @@
1
+ # Listy List!
2
+
3
+ This is a work in progress. Eventually this project will
4
+ feature both a stock CLI for creating and managing lists,
5
+ but will also be pluggable and extendable so advanced users
6
+ can have it kick off automated tasks, if so desired.
7
+
8
+ ## Contributing
9
+
10
+ Read through the short
11
+ [contributing guide](https://github.com/zachaysan/ll/blob/master/CONTRIBUTING.markdown).
@@ -0,0 +1,3 @@
1
+ require 'vv'
2
+
3
+ Gem.require_files "ll/*.rb"
@@ -0,0 +1,13 @@
1
+ class LL::Checklist
2
+
3
+ attr_reader :name
4
+
5
+ def initialize
6
+ @name = "Prototypical"
7
+ end
8
+
9
+ def to_s
10
+ "Checklist: #{self.name}"
11
+ end
12
+
13
+ end
@@ -0,0 +1,3 @@
1
+ module LL
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,12 @@
1
+ require "minitest/autorun"
2
+ require "ll"
3
+
4
+ class ChecklistTest < Minitest::Test
5
+
6
+ def test_new
7
+ checklist = LL::Checklist.new
8
+ expected_string = "Checklist: Prototypical"
9
+ assert_equal expected_string, checklist.to_s
10
+ end
11
+
12
+ end
@@ -0,0 +1,18 @@
1
+ require "minitest/autorun"
2
+ require "ll"
3
+
4
+ class LLTest < Minitest::Test
5
+
6
+ def test_load
7
+ assert_equal Module, LL.class
8
+ end
9
+
10
+ def test_vv_present
11
+ assert_equal Module, VV.class
12
+ end
13
+
14
+ def test_vv_included
15
+ assert String.vv_included?
16
+ end
17
+
18
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ll
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Zach Aysan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-01-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: vv
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.11'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.11'
55
+ - !ruby/object:Gem::Dependency
56
+ name: minitest
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5.11'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5.11'
69
+ description:
70
+ email:
71
+ - zachaysan@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - LICENSE.txt
77
+ - README.markdown
78
+ - lib/ll.rb
79
+ - lib/ll/checklist.rb
80
+ - lib/ll/version.rb
81
+ - test/test_checklist.rb
82
+ - test/test_ll.rb
83
+ homepage: https://github.com/zachaysan/ll
84
+ licenses:
85
+ - MIT
86
+ metadata: {}
87
+ post_install_message:
88
+ rdoc_options: []
89
+ require_paths:
90
+ - lib
91
+ required_ruby_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ required_rubygems_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ requirements: []
102
+ rubyforge_project:
103
+ rubygems_version: 2.7.7
104
+ signing_key:
105
+ specification_version: 4
106
+ summary: Listy List
107
+ test_files:
108
+ - test/test_checklist.rb
109
+ - test/test_ll.rb