irb-theme-dracula 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6889eb5cf3f0ecd8270b8261a192d0d454d3557758739ddfa025a764ce69d06c
4
+ data.tar.gz: b0b284fd3f07b7b7de2cdcf39f3013a28737c10f68abc651724957f3f98b114f
5
+ SHA512:
6
+ metadata.gz: 362cf75a17d26cb20200a284cdb47219cb5781685e8c3224824f2732de213c1d03223d7a3bca963ed46cc5c21d10a037bc2c8863cf076c2cc729dd2055c02386
7
+ data.tar.gz: 9147eea0353245a355f98c3dabb630a66a84ef3251ac093d3470b8aee428f5a43398ced557d5b4a44c7c9dd35ced3a474dc3bb698de4e9fbe6adff66c7fb6d05
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2023-11-08
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Irb::Theme::Dracula
2
+
3
+ irb theme for [dracula color scheme](https://draculatheme.com/)
4
+
5
+ ## Installation
6
+
7
+ Install the gem and add to the application's Gemfile by executing:
8
+
9
+ $ bundle add irb-theme-dracula
10
+
11
+ If bundler is not being used to manage dependencies, install the gem by executing:
12
+
13
+ $ gem install irb-theme-dracula
14
+
15
+ ## Usage
16
+
17
+ ```ruby ~/.irbrc
18
+ require "irb/theme/dracula/light"
19
+ ```
20
+
21
+ ## Development
22
+
23
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
24
+
25
+ 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).
26
+
27
+ ## Contributing
28
+
29
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/irb-theme-dracula.
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
@@ -0,0 +1,5 @@
1
+ Reline::Face.config(:completion_dialog) do |conf|
2
+ conf.define(:default, foreground: "#6272a4", background: "#f8f8f2")
3
+ conf.define(:enhanced, foreground: "#44475a", background: "#bd93f9")
4
+ conf.define(:scrollbar, foreground: "#44475a", background: "#ffb86c")
5
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Irb
4
+ module Theme
5
+ module Dracula
6
+ VERSION = "0.1.0"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "dracula/version"
4
+
5
+ module Irb
6
+ module Theme
7
+ module Dracula
8
+ class Error < StandardError; end
9
+ # Your code goes here...
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,8 @@
1
+ module Irb
2
+ module Theme
3
+ module Dracula
4
+ VERSION: String
5
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
6
+ end
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: irb-theme-dracula
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - MATSUMOTO, Katsuyoshi
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-11-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: irb
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: reline
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.4.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 0.4.0
41
+ description: irb color config
42
+ email:
43
+ - github@katsyoshi.org
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - CHANGELOG.md
49
+ - README.md
50
+ - Rakefile
51
+ - lib/irb/theme/dracula.rb
52
+ - lib/irb/theme/dracula/light.rb
53
+ - lib/irb/theme/dracula/version.rb
54
+ - sig/irb/theme/dracula.rbs
55
+ homepage: https://github.com/katsyoshi/irb-theme-dracula
56
+ licenses: []
57
+ metadata:
58
+ homepage_uri: https://github.com/katsyoshi/irb-theme-dracula
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: 2.6.0
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubygems_version: 3.4.20
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: irb configuration for color scheme
78
+ test_files: []