sylvia 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: 3dc29718344e9ceb4009585dbf01c72d9ec31616a1a5b32c55503f8e4bd7fdad
4
+ data.tar.gz: 8b46080dd799481657ab1fad3eb738f605e59b7e5f7e74dfaa72b66935b4bb27
5
+ SHA512:
6
+ metadata.gz: 751dbabdce77a8dc61f6a6f3e0ba77f71954de39187cae38f2a83df7f608e7d3b4b1b2e1be7ebff6bcf49ac080fb25107a8937a8c7ae9d32a23c401ca1bca729
7
+ data.tar.gz: 151882ff4746c1bde500e350c9f5b8882ac5394135cbd4fe1c4f473cec282b9f5df38df8c76b9523281e131cbf4f27c5ee49efbe511c0a6dd25afb73fcde6c5a
@@ -0,0 +1,27 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ pull_request:
9
+
10
+ jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ name: Ruby ${{ matrix.ruby }}
14
+ strategy:
15
+ matrix:
16
+ ruby:
17
+ - '3.3.0'
18
+
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - name: Set up Ruby
22
+ uses: ruby/setup-ruby@v1
23
+ with:
24
+ ruby-version: ${{ matrix.ruby }}
25
+ bundler-cache: true
26
+ - name: Run the default task
27
+ run: bundle exec rake
data/.gitignore ADDED
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ node_modules
11
+ .rspec_status
12
+ Gemfile.lock
13
+ package-lock.json
data/.prettierrc ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "plugins": ["@prettier/plugin-ruby"],
3
+ "rubyStrictMode": false,
4
+ "tabWidth": 2,
5
+ "useTabs": false,
6
+ "singleQuote": true
7
+ }
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-08-24
4
+
5
+ - Initial release
@@ -0,0 +1,132 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, caste, color, religion, or sexual
10
+ identity and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official email address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ [INSERT CONTACT METHOD].
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series of
86
+ actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or permanent
93
+ ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within the
113
+ community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.1, available at
119
+ [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
120
+
121
+ Community Impact Guidelines were inspired by
122
+ [Mozilla's code of conduct enforcement ladder][Mozilla CoC].
123
+
124
+ For answers to common questions about this code of conduct, see the FAQ at
125
+ [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
126
+ [https://www.contributor-covenant.org/translations][translations].
127
+
128
+ [homepage]: https://www.contributor-covenant.org
129
+ [v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
130
+ [Mozilla CoC]: https://github.com/mozilla/diversity
131
+ [FAQ]: https://www.contributor-covenant.org/faq
132
+ [translations]: https://www.contributor-covenant.org/translations
data/Gemfile ADDED
@@ -0,0 +1,11 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in sylvia.gemspec
6
+ gemspec
7
+
8
+ gem "irb"
9
+ gem "rake", "~> 13.0"
10
+
11
+ gem "rspec", "~> 3.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,91 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ sylvia (0.1.0)
5
+ dotenv
6
+ ruby_llm
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ base64 (0.3.0)
12
+ date (3.4.1)
13
+ diff-lcs (1.6.2)
14
+ dotenv (3.1.8)
15
+ erb (5.0.2)
16
+ event_stream_parser (1.0.0)
17
+ faraday (2.13.4)
18
+ faraday-net_http (>= 2.0, < 3.5)
19
+ json
20
+ logger
21
+ faraday-multipart (1.1.1)
22
+ multipart-post (~> 2.0)
23
+ faraday-net_http (3.4.1)
24
+ net-http (>= 0.5.0)
25
+ faraday-retry (2.3.2)
26
+ faraday (~> 2.0)
27
+ io-console (0.8.1)
28
+ irb (1.15.2)
29
+ pp (>= 0.6.0)
30
+ rdoc (>= 4.0.0)
31
+ reline (>= 0.4.2)
32
+ json (2.13.2)
33
+ logger (1.7.0)
34
+ marcel (1.0.4)
35
+ multipart-post (2.4.1)
36
+ net-http (0.6.0)
37
+ uri
38
+ pp (0.6.2)
39
+ prettyprint
40
+ prettier_print (1.2.1)
41
+ prettyprint (0.2.0)
42
+ psych (5.2.6)
43
+ date
44
+ stringio
45
+ rake (13.3.0)
46
+ rdoc (6.14.2)
47
+ erb
48
+ psych (>= 4.0.0)
49
+ reline (0.6.2)
50
+ io-console (~> 0.5)
51
+ rspec (3.13.0)
52
+ rspec-core (~> 3.13.0)
53
+ rspec-expectations (~> 3.13.0)
54
+ rspec-mocks (~> 3.13.0)
55
+ rspec-core (3.13.4)
56
+ rspec-support (~> 3.13.0)
57
+ rspec-expectations (3.13.5)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.13.0)
60
+ rspec-mocks (3.13.5)
61
+ diff-lcs (>= 1.2.0, < 2.0)
62
+ rspec-support (~> 3.13.0)
63
+ rspec-support (3.13.4)
64
+ ruby_llm (1.5.1)
65
+ base64
66
+ event_stream_parser (~> 1)
67
+ faraday (>= 1.10.0)
68
+ faraday-multipart (>= 1)
69
+ faraday-net_http (>= 1)
70
+ faraday-retry (>= 1)
71
+ marcel (~> 1.0)
72
+ zeitwerk (~> 2)
73
+ stringio (3.1.7)
74
+ syntax_tree (6.2.0)
75
+ prettier_print (>= 1.2.0)
76
+ uri (1.0.3)
77
+ zeitwerk (2.7.3)
78
+
79
+ PLATFORMS
80
+ ruby
81
+ x86_64-linux
82
+
83
+ DEPENDENCIES
84
+ irb
85
+ rake (~> 13.0)
86
+ rspec (~> 3.0)
87
+ sylvia!
88
+ syntax_tree (= 6.2.0)
89
+
90
+ BUNDLED WITH
91
+ 2.6.9
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 whdzera
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,41 @@
1
+
2
+ ## Sylvia
3
+ My Private Assistant Tool for ruby development (support Ruby LLM)
4
+
5
+ ## Installation
6
+
7
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
8
+
9
+ Install the gem and add to the application's Gemfile by executing:
10
+
11
+ ```bash
12
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
13
+ ```
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ ```bash
18
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ TODO: Write usage instructions here
24
+
25
+ ## Development
26
+
27
+ 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.
28
+
29
+ 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).
30
+
31
+ ## Contributing
32
+
33
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/sylvia. 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]/sylvia/blob/master/CODE_OF_CONDUCT.md).
34
+
35
+ ## License
36
+
37
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
38
+
39
+ ## Code of Conduct
40
+
41
+ Everyone interacting in the Sylvia project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/sylvia/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
data/bin/sylvia ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require "sylvia"
3
+
4
+ Sylvia::CLI.start(ARGV)
data/lib/sylvia/cli.rb ADDED
@@ -0,0 +1,93 @@
1
+ require "json"
2
+
3
+ module Sylvia
4
+ class CLI
5
+ FILE_NAME = "sylvia.rb"
6
+ PRETTIER_FILE = ".prettierrc"
7
+ PACKAGE_FILE = "package.json"
8
+
9
+ def self.start(args)
10
+ command = args.shift
11
+
12
+ case command
13
+ when "install"
14
+ create_file
15
+ when "run"
16
+ run_file
17
+ when "prettier"
18
+ setup_prettier
19
+ else
20
+ puts "Usage:"
21
+ puts " sylvia install # Create sylvia.rb"
22
+ puts " sylvia run # Run sylvia.rb"
23
+ puts " sylvia prettier # Setup Prettier for Ruby"
24
+ end
25
+ end
26
+
27
+ def self.create_file
28
+ content = <<~RUBY
29
+ require 'ruby_llm'
30
+ require 'dotenv'
31
+ Dotenv.load
32
+
33
+ RubyLLM.configure do |config|
34
+ config.gemini_api_key = ENV.fetch('gemini', nil)
35
+ end
36
+
37
+ chat = RubyLLM.chat(model: 'gemini-2.0-flash')
38
+
39
+ # Just ask questions
40
+ response = chat.ask "Siapa prabowo Subianto?"
41
+ puts response.content
42
+ RUBY
43
+
44
+ File.write(FILE_NAME, content)
45
+ puts "✅ Created #{FILE_NAME}"
46
+ end
47
+
48
+ def self.run_file
49
+ unless File.exist?(FILE_NAME)
50
+ puts "⚠️ #{FILE_NAME} not found. Run `sylvia install` first."
51
+ return
52
+ end
53
+
54
+ system("ruby #{FILE_NAME}")
55
+ end
56
+
57
+ def self.setup_prettier
58
+ if File.exist?(PRETTIER_FILE)
59
+ puts "⚠️ #{PRETTIER_FILE} already exists. Skipping."
60
+ return
61
+ end
62
+
63
+ prettier_config = <<~JSON
64
+ {
65
+ "plugins": ["@prettier/plugin-ruby"],
66
+ "rubyStrictMode": false,
67
+ "tabWidth": 2,
68
+ "useTabs": false,
69
+ "singleQuote": true
70
+ }
71
+ JSON
72
+
73
+ File.write(PRETTIER_FILE, prettier_config)
74
+ puts "✅ Created #{PRETTIER_FILE}"
75
+
76
+ unless File.exist?(PACKAGE_FILE)
77
+ puts "⚡ Running `npm init -y`..."
78
+ system("npm init -y")
79
+ end
80
+
81
+ package_json = JSON.parse(File.read(PACKAGE_FILE))
82
+ package_json["devDependencies"] ||= {}
83
+ package_json["devDependencies"]["prettier"] = "^3.5.3"
84
+ package_json["devDependencies"]["@prettier/plugin-ruby"] = "^4.0.4"
85
+ File.write(PACKAGE_FILE, JSON.pretty_generate(package_json))
86
+ puts "✅ Updated #{PACKAGE_FILE} devDependencies"
87
+
88
+ puts "⚡ Running `npm install`..."
89
+ system("npm install")
90
+ puts "🎉 Prettier setup complete!"
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Sylvia
4
+ VERSION = "0.1.0"
5
+ end
data/lib/sylvia.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "sylvia/version"
4
+ require_relative "sylvia/cli"
5
+
6
+ module Sylvia
7
+ class Error < StandardError; end
8
+ end
data/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "sylvia",
3
+ "version": "1.0.0",
4
+ "description": "TODO: Delete this and the text below, and describe your gem",
5
+ "main": "index.js",
6
+ "directories": {
7
+ "example": "examples",
8
+ "lib": "lib"
9
+ },
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1"
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/whdzera/sylvia.git"
16
+ },
17
+ "keywords": [],
18
+ "author": "",
19
+ "license": "ISC",
20
+ "bugs": {
21
+ "url": "https://github.com/whdzera/sylvia/issues"
22
+ },
23
+ "homepage": "https://github.com/whdzera/sylvia#readme",
24
+ "devDependencies": {
25
+ "prettier": "^3.5.3",
26
+ "@prettier/plugin-ruby": "^4.0.4"
27
+ }
28
+ }
data/sig/sylvia.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Sylvia
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
@@ -0,0 +1,15 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "sylvia"
4
+
5
+ RSpec.configure do |config|
6
+ # Enable flags like --only-failures and --next-failure
7
+ config.example_status_persistence_file_path = ".rspec_status"
8
+
9
+ # Disable RSpec exposing methods globally on `Module` and `main`
10
+ config.disable_monkey_patching!
11
+
12
+ config.expect_with :rspec do |c|
13
+ c.syntax = :expect
14
+ end
15
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ RSpec.describe Sylvia do
4
+ it "has a version number" do
5
+ expect(Sylvia::VERSION).not_to be nil
6
+ end
7
+ end
data/sylvia.gemspec ADDED
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/sylvia/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "sylvia"
7
+ spec.version = Sylvia::VERSION
8
+ spec.authors = ["whdzera"]
9
+ spec.email = ["whdzera@gmail.com"]
10
+
11
+ spec.summary =
12
+ "A command-line tool for generating and managing Ruby projects."
13
+ spec.description =
14
+ "Sylvia is a command-line tool that helps you create and manage Ruby projects with ease."
15
+ spec.homepage = "https://github.com/whdzera/sylvia"
16
+ spec.license = "MIT"
17
+ spec.required_ruby_version = ">= 3.1.0"
18
+
19
+ spec.metadata["homepage_uri"] = spec.homepage
20
+ spec.metadata["source_code_uri"] = "https://github.com/whdzera/sylvia"
21
+ spec.metadata["changelog_uri"] = "https://github.com/whdzera/sylvia"
22
+
23
+ gemspec = File.basename(__FILE__)
24
+ spec.files = `git ls-files -z`.split("\x0")
25
+ spec.bindir = "bin"
26
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_dependency "ruby_llm"
30
+ spec.add_dependency "dotenv"
31
+ spec.add_development_dependency "syntax_tree", "6.2.0"
32
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: sylvia
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - whdzera
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-08-23 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: ruby_llm
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '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'
26
+ - !ruby/object:Gem::Dependency
27
+ name: dotenv
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: syntax_tree
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - '='
45
+ - !ruby/object:Gem::Version
46
+ version: 6.2.0
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - '='
52
+ - !ruby/object:Gem::Version
53
+ version: 6.2.0
54
+ description: Sylvia is a command-line tool that helps you create and manage Ruby projects
55
+ with ease.
56
+ email:
57
+ - whdzera@gmail.com
58
+ executables:
59
+ - setup
60
+ - sylvia
61
+ extensions: []
62
+ extra_rdoc_files: []
63
+ files:
64
+ - ".github/workflows/main.yml"
65
+ - ".gitignore"
66
+ - ".prettierrc"
67
+ - ".rspec"
68
+ - CHANGELOG.md
69
+ - CODE_OF_CONDUCT.md
70
+ - Gemfile
71
+ - Gemfile.lock
72
+ - LICENSE.txt
73
+ - README.md
74
+ - Rakefile
75
+ - bin/setup
76
+ - bin/sylvia
77
+ - lib/sylvia.rb
78
+ - lib/sylvia/cli.rb
79
+ - lib/sylvia/version.rb
80
+ - package.json
81
+ - sig/sylvia.rbs
82
+ - spec/spec_helper.rb
83
+ - spec/sylvia_spec.rb
84
+ - sylvia.gemspec
85
+ homepage: https://github.com/whdzera/sylvia
86
+ licenses:
87
+ - MIT
88
+ metadata:
89
+ homepage_uri: https://github.com/whdzera/sylvia
90
+ source_code_uri: https://github.com/whdzera/sylvia
91
+ changelog_uri: https://github.com/whdzera/sylvia
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: 3.1.0
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: '0'
105
+ requirements: []
106
+ rubygems_version: 3.6.3
107
+ specification_version: 4
108
+ summary: A command-line tool for generating and managing Ruby projects.
109
+ test_files: []