kynda 0.1.0
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 +7 -0
- data/.gitignore +5 -0
- data/.travis.yml +6 -0
- data/Gemfile +11 -0
- data/Gemfile.lock +38 -0
- data/README.md +36 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config.ru +2 -0
- data/highlights_test.txt +4 -0
- data/kynda.gemspec +28 -0
- data/kynda_app.rb +13 -0
- data/kynda_commentless +26 -0
- data/kynda_old_07072020.rb +28 -0
- data/kynda_old_07082020.rb +34 -0
- data/kynda_with_comments +43 -0
- data/lib/kynda.rb +45 -0
- data/lib/kynda/version.rb +3 -0
- data/rubyscript +50 -0
- data/shortclippings.txt +40 -0
- data/shortclippings2.txt +1470 -0
- data/views/about.erb +0 -0
- data/views/clippings_upload.erb +0 -0
- data/views/index.erb +13 -0
- metadata +70 -0
data/views/about.erb
ADDED
File without changes
|
File without changes
|
data/views/index.erb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta charset="utf-8">
|
5
|
+
<title>Kynda - Organize Your Kindle Clippings!</title>
|
6
|
+
</head>
|
7
|
+
<body>
|
8
|
+
<h1>Kynda</h1>
|
9
|
+
<h3>Use the 'Clippings Upload' section to upload your 'My Clippings' file. The
|
10
|
+
Kindle highlights will then be organized by book and extra information, such as the date the text was highlighted, will be removed, leaving you with
|
11
|
+
easier-to-read organized notes.</h3>
|
12
|
+
</body>
|
13
|
+
</html>
|
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: kynda
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- SamGarner
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2020-07-13 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email:
|
15
|
+
- samuel.w.garner@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- ".travis.yml"
|
22
|
+
- Gemfile
|
23
|
+
- Gemfile.lock
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- bin/console
|
27
|
+
- bin/setup
|
28
|
+
- config.ru
|
29
|
+
- highlights_test.txt
|
30
|
+
- kynda.gemspec
|
31
|
+
- kynda_app.rb
|
32
|
+
- kynda_commentless
|
33
|
+
- kynda_old_07072020.rb
|
34
|
+
- kynda_old_07082020.rb
|
35
|
+
- kynda_with_comments
|
36
|
+
- lib/kynda.rb
|
37
|
+
- lib/kynda/version.rb
|
38
|
+
- rubyscript
|
39
|
+
- shortclippings.txt
|
40
|
+
- shortclippings2.txt
|
41
|
+
- views/about.erb
|
42
|
+
- views/clippings_upload.erb
|
43
|
+
- views/index.erb
|
44
|
+
homepage: https://github.com/SamGarner/Kynda/settings
|
45
|
+
licenses: []
|
46
|
+
metadata:
|
47
|
+
allowed_push_host: https://rubygems.org
|
48
|
+
homepage_uri: https://github.com/SamGarner/Kynda/settings
|
49
|
+
source_code_uri: https://github.com/SamGarner/Kynda/
|
50
|
+
changelog_uri: https://github.com/SamGarner/Kynda/
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: 2.3.0
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: '0'
|
65
|
+
requirements: []
|
66
|
+
rubygems_version: 3.1.2
|
67
|
+
signing_key:
|
68
|
+
specification_version: 4
|
69
|
+
summary: Kindle 'My Clippings' organization and clean up
|
70
|
+
test_files: []
|