jott 0.1.0 → 0.1.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 +4 -4
- data/exe/jott +3 -0
- data/jott.gemspec +43 -0
- data/lib/jott/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c37807fdfccf3c1eb070f81069a885bc88bc958d0fcb00afb17e4f2303b11058
|
|
4
|
+
data.tar.gz: 44335ff3c37a164b668f2d170fdc860ea336c0c7fb472d487740ed4be95e6bab
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be6904acb553e587619de937584c00f35bd32a0ac962dc125827e9ae60a1bd6b5aaf18827508da8070c734908222abfdbf07ebab645fa6398e00791163103326
|
|
7
|
+
data.tar.gz: 4803889b1df03552dadaf4a7109b72410c8eb96b289e11f478a2d4d92b9c05782eee52ddefb39316c4ad0aad874129e3745d7d94ae2e9d7b2b7f06614606200a
|
data/exe/jott
ADDED
data/jott.gemspec
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require_relative "lib/jott/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |spec|
|
|
6
|
+
spec.name = "jott"
|
|
7
|
+
spec.version = Jott::VERSION
|
|
8
|
+
spec.authors = ["seita1996"]
|
|
9
|
+
spec.email = ["tahara.seitaro@gmail.com"]
|
|
10
|
+
|
|
11
|
+
spec.summary = "CLI application for a little note"
|
|
12
|
+
# spec.description = "TODO: Write a longer description or delete this line."
|
|
13
|
+
spec.homepage = "https://rubygems.org/gems/jott"
|
|
14
|
+
spec.license = "MIT"
|
|
15
|
+
spec.required_ruby_version = ">= 2.6.0"
|
|
16
|
+
|
|
17
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
|
|
18
|
+
|
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/seita1996/jott"
|
|
21
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
|
22
|
+
|
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
|
25
|
+
spec.files = Dir.chdir(__dir__) do
|
|
26
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
|
27
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
spec.bindir = "exe"
|
|
31
|
+
spec.executables = "jott"
|
|
32
|
+
spec.require_paths = ["lib"]
|
|
33
|
+
|
|
34
|
+
spec.add_dependency "colorize"
|
|
35
|
+
spec.add_dependency "sqlite3"
|
|
36
|
+
spec.add_dependency "thor"
|
|
37
|
+
|
|
38
|
+
spec.add_development_dependency("rspec", "~> 3.0")
|
|
39
|
+
spec.add_development_dependency("rubocop", "~> 1.21")
|
|
40
|
+
|
|
41
|
+
# For more information and examples about making a new gem, check out our
|
|
42
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
|
43
|
+
end
|
data/lib/jott/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jott
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- seita1996
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-04-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colorize
|
|
@@ -83,7 +83,8 @@ dependencies:
|
|
|
83
83
|
description:
|
|
84
84
|
email:
|
|
85
85
|
- tahara.seitaro@gmail.com
|
|
86
|
-
executables:
|
|
86
|
+
executables:
|
|
87
|
+
- jott
|
|
87
88
|
extensions: []
|
|
88
89
|
extra_rdoc_files: []
|
|
89
90
|
files:
|
|
@@ -97,6 +98,8 @@ files:
|
|
|
97
98
|
- LICENSE.txt
|
|
98
99
|
- README.md
|
|
99
100
|
- Rakefile
|
|
101
|
+
- exe/jott
|
|
102
|
+
- jott.gemspec
|
|
100
103
|
- lib/jott.rb
|
|
101
104
|
- lib/jott/cli.rb
|
|
102
105
|
- lib/jott/memo.rb
|