irb-theme-iceberg 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +33 -0
- data/irb-theme-iceberg.gemspec +30 -0
- data/lib/irb/theme/iceberg/version.rb +9 -0
- data/lib/irb/theme/iceberg.rb +7 -0
- metadata +54 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 823ce3a883a1dcfbaf97d8a821c6f4a6fffb3704ba2d9c7889ebd787d603f885
|
4
|
+
data.tar.gz: 866ed8b73ff1824080c0cd397144e52f682712bbbd016842d882159a3fe230b2
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 58ffde5d96738524284ff9afdf63e8b0c4b9c12829bb777767dc98b8db5fd689ba428200a3d67433d4d7f69586359e3afd51128d49154a8cbc3bc9f571b79cbe
|
7
|
+
data.tar.gz: 508c8204ee0d08aad8535298981e87ab9b986c584cf3e4c26c6d167f7dac640b16b859cbffe788f3947c1dae538afe2711f60c3bc0b77ef7dc8cea30f528a99c
|
data/CHANGELOG.md
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 Yudai TAKADA
|
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
|
13
|
+
all 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
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# Irb::Theme::Iceberg
|
2
|
+
|
3
|
+
🟦 Bluish theme for IRB based on the [Iceberg](https://cocopon.github.io/iceberg.vim/) color scheme.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install the gem and add to the application's Gemfile by executing:
|
8
|
+
|
9
|
+
```command
|
10
|
+
bundle add irb-theme-iceberg
|
11
|
+
```
|
12
|
+
|
13
|
+
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
|
+
|
15
|
+
```command
|
16
|
+
gem install irb-theme-iceberg
|
17
|
+
```
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Add the following to your .irbrc
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
require "irb/theme/iceberg"
|
25
|
+
```
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
Bug reports and pull requests are welcome on GitHub at <https://github.com/ydah/irb-theme-iceberg>.
|
30
|
+
|
31
|
+
## License
|
32
|
+
|
33
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/irb/theme/iceberg/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "irb-theme-iceberg"
|
7
|
+
spec.version = Irb::Theme::Iceberg::VERSION
|
8
|
+
spec.authors = ["Yudai TAKADA"]
|
9
|
+
spec.email = ["t.yudai92@gmail.com"]
|
10
|
+
|
11
|
+
spec.summary = "🟦 Bluish color scheme for irb"
|
12
|
+
spec.description = "🟦 Bluish color scheme for irb"
|
13
|
+
spec.homepage = "https://github.com/ydah/irb-theme-iceberg"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 2.6.0"
|
16
|
+
|
17
|
+
spec.files = Dir.chdir(__dir__) do
|
18
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
19
|
+
(File.expand_path(f) == __FILE__) ||
|
20
|
+
f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
|
21
|
+
end
|
22
|
+
end
|
23
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
24
|
+
spec.metadata["source_code_uri"] = spec.homepage
|
25
|
+
spec.metadata["documentation_uri"] = spec.homepage
|
26
|
+
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
|
27
|
+
spec.metadata["bug_tracker_uri"] = "#{spec.homepage}/issues"
|
28
|
+
|
29
|
+
spec.require_paths = ["lib"]
|
30
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
Reline::Face.config(:completion_dialog) do |conf|
|
4
|
+
conf.define(:default, foreground: "#C0C2CB", background: "#161821")
|
5
|
+
conf.define(:enhanced, foreground: "#84A0C6", background: "#2A3158")
|
6
|
+
conf.define(:scrollbar, foreground: "#333853", background: "#161821")
|
7
|
+
end
|
metadata
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: irb-theme-iceberg
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Yudai TAKADA
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-02-12 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: "\U0001F7E6 Bluish color scheme for irb"
|
14
|
+
email:
|
15
|
+
- t.yudai92@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- CHANGELOG.md
|
21
|
+
- LICENSE.txt
|
22
|
+
- README.md
|
23
|
+
- irb-theme-iceberg.gemspec
|
24
|
+
- lib/irb/theme/iceberg.rb
|
25
|
+
- lib/irb/theme/iceberg/version.rb
|
26
|
+
homepage: https://github.com/ydah/irb-theme-iceberg
|
27
|
+
licenses:
|
28
|
+
- MIT
|
29
|
+
metadata:
|
30
|
+
homepage_uri: https://github.com/ydah/irb-theme-iceberg
|
31
|
+
source_code_uri: https://github.com/ydah/irb-theme-iceberg
|
32
|
+
documentation_uri: https://github.com/ydah/irb-theme-iceberg
|
33
|
+
changelog_uri: https://github.com/ydah/irb-theme-iceberg/releases
|
34
|
+
bug_tracker_uri: https://github.com/ydah/irb-theme-iceberg/issues
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 2.6.0
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
requirements: []
|
50
|
+
rubygems_version: 3.5.3
|
51
|
+
signing_key:
|
52
|
+
specification_version: 4
|
53
|
+
summary: "\U0001F7E6 Bluish color scheme for irb"
|
54
|
+
test_files: []
|