irb-theme-tokyonight 0.1.0 → 0.2.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: 01751757d99a9927306ba8e9c4c4756016a41858329b9048b915aac8ce0ba826
4
- data.tar.gz: 359c93eb1d9bba58a6864a806805623c5e612a613df8bd680e6de94c40ae27c9
3
+ metadata.gz: d6c97d8e4def223706733f9e075772b48a4922265cbd41d22ce4ed9d566d2af6
4
+ data.tar.gz: fe6d704626336e39f1a49f2b84f7065d1554aa16b342372ab9e998695351941a
5
5
  SHA512:
6
- metadata.gz: 5d9a27ce33160a4ad04f71dfaff23830b276a812aabb2742784ab81eab3256eb4906ae6ad13a39b60ddd521d302b697a818f0db488daba81c6434268bd81c565
7
- data.tar.gz: 62e6bfdcdec378e06617df457a80d9ebee043f1b84543899025da7b80c91540da2266dd66d6cc4b4900b68269ffcb5fb0362ef5248b5aba5478ae9255a11b099
6
+ metadata.gz: adbb35f8809f9a9c0770e7e0232834a71ed41343c4de2b74cdd261bb1123bc24da6d3056ecbf627c939228dab86273116fd9ead853af29c020ab27cd80ca55d4
7
+ data.tar.gz: f94204ee4eec61150bf68fac4a782392d75314207ffa76ea977c7bf2909ed1f22b7237034b827db73d49f8d810ce92b208826dfb3c7e83e586127b6ea4465ecf
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.2.2
1
+ ruby 3.2.3
data/README.md CHANGED
@@ -1,17 +1,21 @@
1
1
  # Irb::Theme::Tokyonight
2
2
 
3
- [Tokyo Night colors](https://github.com/folke/tokyonight.nvim) for `Reline` (IRB). This gem is inspired
3
+ [Tokyo Night colors](https://github.com/folke/tokyonight.nvim) for [`Reline`](https://github.com/ruby/reline) (IRB). This gem is inspired
4
4
  by [a similar gem](https://github.com/katsyoshi/irb-theme-dracula) featuring the `Dracula` theme.
5
5
 
6
6
  ## Installation
7
7
 
8
8
  Install the gem and add to the application's Gemfile by executing:
9
9
 
10
- $ bundle add require irb-theme-tokyonight
10
+ ```shell
11
+ bundle add require irb-theme-tokyonight
12
+ ```
11
13
 
12
14
  If bundler is not being used to manage dependencies, install the gem by executing:
13
15
 
14
- $ gem install irb-theme-tokyonight
16
+ ```shell
17
+ gem install irb-theme-tokyonight
18
+ ```
15
19
 
16
20
  ## Usage
17
21
 
@@ -57,9 +61,8 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
57
61
 
58
62
  ## Contributing
59
63
 
60
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/irb-theme-tokyonight. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/irb-theme-tokyonight/blob/master/CODE_OF_CONDUCT.md).
64
+ Bug reports and pull requests are welcome on GitHub at <https://github.com/vitallium/irb-theme-tokyonight>.
61
65
 
62
66
  ## License
63
67
 
64
68
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
65
-
@@ -3,7 +3,7 @@
3
3
  module Irb
4
4
  module Theme
5
5
  module Tokyonight
6
- VERSION = "0.1.0"
6
+ VERSION = "0.2.1"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irb-theme-tokyonight
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vitaly Slobodin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-16 00:00:00.000000000 Z
11
+ date: 2024-04-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: irb
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.4.0
33
+ version: '0.5'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 0.4.0
40
+ version: '0.5'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: standard
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -61,7 +61,6 @@ extra_rdoc_files: []
61
61
  files:
62
62
  - ".standard.yml"
63
63
  - ".tool-versions"
64
- - CHANGELOG.md
65
64
  - LICENSE.txt
66
65
  - README.md
67
66
  - Rakefile
@@ -69,7 +68,6 @@ files:
69
68
  - doc/images/moon.png
70
69
  - doc/images/night.png
71
70
  - doc/images/storm.png
72
- - irb-theme-tokyonight.gemspec
73
71
  - lib/irb/theme/tokyonight.rb
74
72
  - lib/irb/theme/tokyonight/day.rb
75
73
  - lib/irb/theme/tokyonight/moon.rb
@@ -83,7 +81,7 @@ licenses:
83
81
  metadata:
84
82
  homepage_uri: https://github.com/vitallium/irb-theme-tokyonight
85
83
  source_code_uri: https://github.com/vitallium/irb-theme-tokyonight
86
- changelog_uri: https://github.com/vitallium/irb-theme-tokyonight/blob/main/CHANGELOG.md
84
+ changelog_uri: https://github.com/ruby/reline/releases
87
85
  post_install_message:
88
86
  rdoc_options: []
89
87
  require_paths:
@@ -92,14 +90,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
92
90
  requirements:
93
91
  - - ">="
94
92
  - !ruby/object:Gem::Version
95
- version: 2.6.0
93
+ version: '2.6'
96
94
  required_rubygems_version: !ruby/object:Gem::Requirement
97
95
  requirements:
98
96
  - - ">="
99
97
  - !ruby/object:Gem::Version
100
98
  version: '0'
101
99
  requirements: []
102
- rubygems_version: 3.5.1
100
+ rubygems_version: 3.4.19
103
101
  signing_key:
104
102
  specification_version: 4
105
103
  summary: The color scheme for Reline
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2023-12-16
4
-
5
- - Initial release
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/irb/theme/tokyonight/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "irb-theme-tokyonight"
7
- spec.version = Irb::Theme::Tokyonight::VERSION
8
- spec.authors = ["Vitaly Slobodin"]
9
- spec.email = ["vitaliy.slobodin@gmail.com"]
10
-
11
- spec.summary = "The color scheme for Reline"
12
- spec.homepage = "https://github.com/vitallium/irb-theme-tokyonight"
13
- spec.license = "MIT"
14
- spec.required_ruby_version = ">= 2.6.0"
15
-
16
- spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = "https://github.com/vitallium/irb-theme-tokyonight"
18
- spec.metadata["changelog_uri"] = "https://github.com/vitallium/irb-theme-tokyonight/blob/main/CHANGELOG.md"
19
-
20
- # Specify which files should be added to the gem when it is released.
21
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
- spec.files = Dir.chdir(__dir__) do
23
- `git ls-files -z`.split("\x0").reject do |f|
24
- (File.expand_path(f) == __FILE__) ||
25
- f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
26
- end
27
- end
28
- spec.bindir = "exe"
29
- spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
- spec.require_paths = ["lib"]
31
-
32
- spec.add_dependency "irb"
33
- spec.add_dependency "reline", ">= 0.4.0"
34
-
35
- spec.add_development_dependency "standard", "~> 1.3"
36
- end