alacritty_themes 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4512f9e40bccfba6d7a1edd7191d745c6e6c20cd92a723ab184d986d5a09ff46
4
- data.tar.gz: 12a4a57efb31513fd8793d5afec3587677829221891f84a87df5ba85c8032ea2
3
+ metadata.gz: 0a65d2198260e8fff15d1516ec5b3bede0785965b1d5f71c4220a78dd1b7b6ac
4
+ data.tar.gz: 0c0a10f1015796558ad3e2e8feab612ddebfbf953f0a06175950e121b9d1b225
5
5
  SHA512:
6
- metadata.gz: a805d1f3a7844243baa5ee724dfedcfefbc3e99e90fccc4178505ff3db4dd9a7a66c49c399928491a09dd576f14d0e317585098812171bad885d8bc832908b71
7
- data.tar.gz: d353bf2d758d73cd303fa2c5842c8dc7ea1c702f216b6c2d002fdd52022b2755127f221529ea3d801cd19f2cf0aa24e7920777e071144669c9de593379ab7c97
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
@@ -6,6 +6,8 @@
6
6
  /pkg/
7
7
  /spec/reports/
8
8
  /tmp/
9
+ *.gem
10
+ Gemfile.lock
9
11
 
10
12
  # rspec failure tracking
11
13
  .rspec_status
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ SuggestExtensions: false
4
+ TargetRubyVersion: 2.7.5
5
+
6
+ Style/StringLiterals:
7
+ Enabled: true
8
+ EnforcedStyle: double_quotes
9
+
10
+ Style/StringLiteralsInInterpolation:
11
+ Enabled: true
12
+ EnforcedStyle: double_quotes
13
+
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.1] - 2022-03-16
4
+
5
+ - Add rubocop configuration
6
+ - Add github workflow
7
+
8
+ ## [0.1.0] - 2022-03-15
9
+
10
+ - Initial commit
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source "https://rubygems.org"
2
4
 
3
5
  # Specify your gem's dependencies in alacritty_themes.gemspec
@@ -5,3 +7,4 @@ gemspec
5
7
 
6
8
  gem "rake", "~> 12.0"
7
9
  gem "rspec", "~> 3.0"
10
+ gem "rubocop", "~> 1.7"
data/Gemfile.lock CHANGED
@@ -1,13 +1,20 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- alacritty_themes (0.1.0)
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
@@ -1,6 +1,11 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
4
  require "rspec/core/rake_task"
5
+ require "rubocop/rake_task"
3
6
 
4
7
  RSpec::Core::RakeTask.new(:spec)
5
8
 
6
- task :default => :spec
9
+ RuboCop::RakeTask.new
10
+
11
+ task default: %i[spec rubocop]
@@ -1,4 +1,6 @@
1
- require_relative 'lib/alacritty_themes/version'
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 = %q{A collection of themes for alacritty}
10
- spec.description = %q{A collection of themes for alacritty}
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.3.0")
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 = Dir.chdir(File.expand_path('..', __FILE__)) do
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
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require "bundler/setup"
4
5
  require "alacritty_themes"
data/exe/alacritty_themes CHANGED
@@ -1,3 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require "alacritty_themes"
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module AlacrittyThemes
2
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
3
5
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "alacritty_themes/version"
2
4
 
3
5
  module AlacrittyThemes
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.0
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-16 00:00:00.000000000 Z
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
- allowed_push_host: https://rubygems.org
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.3.0
53
+ version: 2.7.5
54
54
  required_rubygems_version: !ruby/object:Gem::Requirement
55
55
  requirements:
56
56
  - - ">="