irb-theme-huston 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 51f1399fe3984093674ac77d8b43db79912198e55556fbe8fcd4a5c26c25183d
4
+ data.tar.gz: fec79dba6cd0794ed74af1cd00b121110c9f643ef8ffebe4238121df40d3e40f
5
+ SHA512:
6
+ metadata.gz: e35e40336968e1bef555ac2d09732b24cc5b27e38dc23157c4c7f3a81698446188fff8dd26bad6cd0129ab9483d1c85d26d2b0a72eea24c6710645b8f8466dc0
7
+ data.tar.gz: d7f2c0f3e354ac14a87e5ff0db532f6cf8a0aa9cd0322bd9a3cb280a7b16c5c530ea899b4ae7685af878571a2e7d56464a1de166d9b7fb1ff00b3716235ee213
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Keita Saito
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Irb::Theme::Huston
2
+
3
+ irb theme for [vscode-huston](https://github.com/withastro/houston-vscode)
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ ```bash
10
+ bundle add irb-theme-huston
11
+ ```
12
+
13
+ If bundler is not being used to manage dependencies, install the gem by executing:
14
+
15
+ ```bash
16
+ gem install irb-theme-huston
17
+ ```
18
+
19
+ ## Usage
20
+
21
+ Following write your irbrc file:
22
+
23
+ ```bash
24
+ require "irb/theme/huston"
25
+ ```
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/ksaito422/irb-theme-huston.
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Irb
4
+ module Theme
5
+ module Huston
6
+ VERSION = "0.1.0"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ Reline::Face.config(:default) do |conf|
4
+ conf.define(:default, foreground: "#eef0f9", background: "#17191e")
5
+ conf.define(:enhanced, foreground: "#17191e", background: "#acafff")
6
+ conf.define(:scrollbar, foreground: "#4bf3c8", background: "#17191e")
7
+ end
8
+
9
+ Reline::Face.config(:completion_dialog) do |conf|
10
+ conf.define(:default, foreground: "#eef0f9", background: "#17191e")
11
+ conf.define(:enhanced, foreground: "#17191e", background: "#acafff")
12
+ conf.define(:scrollbar, foreground: "#4bf3c8", background: "#17191e")
13
+ end
metadata ADDED
@@ -0,0 +1,60 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: irb-theme-huston
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - ksaito
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: reline
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: 0.4.0
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: 0.4.0
26
+ description: IRB color theme
27
+ email:
28
+ - kitsit.39@gmail.com
29
+ executables: []
30
+ extensions: []
31
+ extra_rdoc_files: []
32
+ files:
33
+ - LICENSE
34
+ - README.md
35
+ - lib/irb/theme/huston.rb
36
+ - lib/irb/theme/huston/version.rb
37
+ homepage: https://github.com/ksaito422/irb-theme-huston
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ homepage_uri: https://github.com/ksaito422/irb-theme-huston
42
+ source_code_uri: https://github.com/ksaito422/irb-theme-huston
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 3.1.0
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ requirements: []
57
+ rubygems_version: 3.6.7
58
+ specification_version: 4
59
+ summary: IRB color theme
60
+ test_files: []