alacritty_themes 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/.github/workflows/main.yml +21 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +10 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +22 -1
- data/Rakefile +6 -1
- data/alacritty_themes.gemspec +8 -5
- data/bin/console +1 -0
- data/exe/alacritty_themes +1 -0
- data/lib/alacritty_themes/version.rb +3 -1
- data/lib/alacritty_themes.rb +2 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0a65d2198260e8fff15d1516ec5b3bede0785965b1d5f71c4220a78dd1b7b6ac
|
4
|
+
data.tar.gz: 0c0a10f1015796558ad3e2e8feab612ddebfbf953f0a06175950e121b9d1b225
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ccfa4ed1a65c3e3f36166e4269e836622501a4a21021222a57616deeb189ef3498d153742f99617d9a09070e3b9b4a1fd978508acd4a1dd8d228687343f4216
|
7
|
+
data.tar.gz: 8d034f71838205fc8e8c0ab8e8b3aa15d1a347cd47550ea0873cf193f70816ac18e863973e4013543a8e61a999535abd665d8ef7c971254c981c91246bb44ab5
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name: Ruby
|
2
|
+
|
3
|
+
on: [push, pull_request]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
test:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
|
9
|
+
strategy:
|
10
|
+
matrix:
|
11
|
+
ruby-version: [3.0.1, 2.7.5]
|
12
|
+
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v2
|
15
|
+
- name: Set up Ruby ${{ matrix.ruby-version }}
|
16
|
+
uses: ruby/setup-ruby@v1
|
17
|
+
with:
|
18
|
+
ruby-version: ${{ matrix.ruby-version }}
|
19
|
+
bundler-cache: true
|
20
|
+
- name: Run the default task
|
21
|
+
run: bundle exec rake
|
data/.gitignore
CHANGED
data/.rubocop.yml
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,13 +1,20 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
alacritty_themes (0.1.
|
4
|
+
alacritty_themes (0.1.1)
|
5
5
|
|
6
6
|
GEM
|
7
7
|
remote: https://rubygems.org/
|
8
8
|
specs:
|
9
|
+
ast (2.4.2)
|
9
10
|
diff-lcs (1.5.0)
|
11
|
+
parallel (1.21.0)
|
12
|
+
parser (3.1.1.0)
|
13
|
+
ast (~> 2.4.1)
|
14
|
+
rainbow (3.1.1)
|
10
15
|
rake (12.3.3)
|
16
|
+
regexp_parser (2.2.1)
|
17
|
+
rexml (3.2.5)
|
11
18
|
rspec (3.11.0)
|
12
19
|
rspec-core (~> 3.11.0)
|
13
20
|
rspec-expectations (~> 3.11.0)
|
@@ -21,6 +28,19 @@ GEM
|
|
21
28
|
diff-lcs (>= 1.2.0, < 2.0)
|
22
29
|
rspec-support (~> 3.11.0)
|
23
30
|
rspec-support (3.11.0)
|
31
|
+
rubocop (1.26.0)
|
32
|
+
parallel (~> 1.10)
|
33
|
+
parser (>= 3.1.0.0)
|
34
|
+
rainbow (>= 2.2.2, < 4.0)
|
35
|
+
regexp_parser (>= 1.8, < 3.0)
|
36
|
+
rexml
|
37
|
+
rubocop-ast (>= 1.16.0, < 2.0)
|
38
|
+
ruby-progressbar (~> 1.7)
|
39
|
+
unicode-display_width (>= 1.4.0, < 3.0)
|
40
|
+
rubocop-ast (1.16.0)
|
41
|
+
parser (>= 3.1.1.0)
|
42
|
+
ruby-progressbar (1.11.0)
|
43
|
+
unicode-display_width (2.1.0)
|
24
44
|
|
25
45
|
PLATFORMS
|
26
46
|
ruby
|
@@ -29,6 +49,7 @@ DEPENDENCIES
|
|
29
49
|
alacritty_themes!
|
30
50
|
rake (~> 12.0)
|
31
51
|
rspec (~> 3.0)
|
52
|
+
rubocop (~> 1.7)
|
32
53
|
|
33
54
|
BUNDLED WITH
|
34
55
|
2.1.4
|
data/Rakefile
CHANGED
data/alacritty_themes.gemspec
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/alacritty_themes/version"
|
2
4
|
|
3
5
|
Gem::Specification.new do |spec|
|
4
6
|
spec.name = "alacritty_themes"
|
@@ -6,11 +8,11 @@ Gem::Specification.new do |spec|
|
|
6
8
|
spec.authors = ["Juan Vasquez"]
|
7
9
|
spec.email = ["isc.juanvasquez@gmail.com"]
|
8
10
|
|
9
|
-
spec.summary =
|
10
|
-
spec.description =
|
11
|
+
spec.summary = "A collection of themes for alacritty"
|
12
|
+
spec.description = "A collection of themes for alacritty"
|
11
13
|
spec.homepage = "https://github.com/juanvasquez/alacritty_themes"
|
12
14
|
spec.license = "MIT"
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.
|
15
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.5")
|
14
16
|
|
15
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
16
18
|
|
@@ -20,10 +22,11 @@ Gem::Specification.new do |spec|
|
|
20
22
|
|
21
23
|
# Specify which files should be added to the gem when it is released.
|
22
24
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
-
spec.files
|
25
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
24
26
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
27
|
end
|
26
28
|
spec.bindir = "exe"
|
27
29
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
30
|
spec.require_paths = ["lib"]
|
31
|
+
spec.metadata = { "rubygems_mfa_required" => "true" }
|
29
32
|
end
|
data/bin/console
CHANGED
data/exe/alacritty_themes
CHANGED
data/lib/alacritty_themes.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alacritty_themes
|
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
|
- Juan Vasquez
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-17 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A collection of themes for alacritty
|
14
14
|
email:
|
@@ -18,10 +18,13 @@ executables:
|
|
18
18
|
extensions: []
|
19
19
|
extra_rdoc_files: []
|
20
20
|
files:
|
21
|
+
- ".github/workflows/main.yml"
|
21
22
|
- ".gitignore"
|
22
23
|
- ".rspec"
|
24
|
+
- ".rubocop.yml"
|
23
25
|
- ".ruby-gemset"
|
24
26
|
- ".travis.yml"
|
27
|
+
- CHANGELOG.md
|
25
28
|
- CODE_OF_CONDUCT.md
|
26
29
|
- Gemfile
|
27
30
|
- Gemfile.lock
|
@@ -38,10 +41,7 @@ homepage: https://github.com/juanvasquez/alacritty_themes
|
|
38
41
|
licenses:
|
39
42
|
- MIT
|
40
43
|
metadata:
|
41
|
-
|
42
|
-
homepage_uri: https://github.com/juanvasquez/alacritty_themes
|
43
|
-
source_code_uri: https://github.com/juanvasquez/alacritty_themes
|
44
|
-
changelog_uri: https://github.com/juanvasquez/alacritty_themes/blob/master/CHANGELOG.md
|
44
|
+
rubygems_mfa_required: 'true'
|
45
45
|
post_install_message:
|
46
46
|
rdoc_options: []
|
47
47
|
require_paths:
|
@@ -50,7 +50,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 2.
|
53
|
+
version: 2.7.5
|
54
54
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
55
|
requirements:
|
56
56
|
- - ">="
|