Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up gemspec and remove unused gems #94

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 0 additions & 53 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,10 @@ PATH
specs:
sublayer (0.2.4)
activesupport
colorize
httparty
listen
nokogiri (~> 1.16.5)
ruby-openai
thor
tty-command (~> 0.10)
tty-file (~> 0.10)
tty-progressbar (~> 0.18)
tty-prompt (~> 0.23)
zeitwerk

GEM
Expand All @@ -32,22 +26,7 @@ GEM
public_suffix (>= 2.0.2, < 7.0)
base64 (0.1.1)
bigdecimal (3.1.8)
clag (0.0.7)
activesupport
cli-kit (~> 5)
cli-ui (~> 2.2.3)
clipboard (~> 1.3)
httparty (~> 0.21)
nokogiri
pry
ruby-openai (~> 6)
sublayer (> 0.0.1)
cli-kit (5.0.0)
cli-ui (~> 2.0)
cli-ui (2.2.3)
clipboard (1.4.1)
coderay (1.1.3)
colorize (1.1.0)
concurrent-ruby (1.2.2)
connection_pool (2.4.1)
crack (1.0.0)
Expand Down Expand Up @@ -80,17 +59,10 @@ GEM
multi_xml (0.6.0)
multipart-post (2.3.0)
mutex_m (0.1.2)
nokogiri (1.16.5-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.5-x86_64-linux)
racc (~> 1.4)
pastel (0.8.0)
tty-color (~> 0.5)
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
public_suffix (6.0.0)
racc (1.7.3)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
Expand All @@ -114,39 +86,15 @@ GEM
faraday (>= 1)
faraday-multipart (>= 1)
ruby2_keywords (0.0.5)
strings-ansi (0.2.0)
strscan (3.1.0)
thor (1.3.1)
tty-color (0.6.0)
tty-command (0.10.1)
pastel (~> 0.8)
tty-cursor (0.7.1)
tty-file (0.10.0)
diff-lcs (~> 1.3)
pastel (~> 0.8)
tty-prompt (~> 0.22)
tty-progressbar (0.18.2)
strings-ansi (~> 0.2)
tty-cursor (~> 0.7)
tty-screen (~> 0.8)
unicode-display_width (>= 1.6, < 3.0)
tty-prompt (0.23.1)
pastel (~> 0.8)
tty-reader (~> 0.8)
tty-reader (0.9.0)
tty-cursor (~> 0.7)
tty-screen (~> 0.8)
wisper (~> 2.0)
tty-screen (0.8.2)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
unicode-display_width (2.5.0)
vcr (6.2.0)
webmock (3.23.1)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
wisper (2.0.1)
zeitwerk (2.6.13)

PLATFORMS
Expand All @@ -155,7 +103,6 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
clag
pry (~> 0.14)
rspec (~> 3.12)
sublayer!
Expand Down
1 change: 0 additions & 1 deletion lib/sublayer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
require 'ostruct'
require "httparty"
require "openai"
require "nokogiri"
require "listen"
require "securerandom"
require "time"
Expand Down
7 changes: 0 additions & 7 deletions sublayer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,14 @@ Gem::Specification.new do |spec|
spec.executables = ["sublayer"]

spec.add_dependency "ruby-openai"
spec.add_dependency "colorize"
spec.add_dependency "activesupport"
spec.add_dependency "zeitwerk"
spec.add_dependency "nokogiri", "~> 1.16.5"
spec.add_dependency "httparty"
spec.add_dependency "listen"
spec.add_dependency "tty-prompt", "~> 0.23"
spec.add_dependency "tty-progressbar", "~> 0.18"
spec.add_dependency "tty-command", "~> 0.10"
spec.add_dependency "tty-file", "~> 0.10"
spec.add_dependency "thor"

spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "pry", "~> 0.14"
spec.add_development_dependency "vcr", "~> 6.0"
spec.add_development_dependency "webmock", "~> 3"
spec.add_development_dependency "clag"
end
Loading