Skip to content

Commit

Permalink
update gemspec to only inlcude required files (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
nsalamad authored Feb 23, 2023
1 parent cd2b10c commit 2061591
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion devcycle-ruby-server-sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ Gem::Specification.new do |s|

s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'

s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
s.files = Dir['README.md', 'LICENSE',
'lib/**/*',
'devcycle-ruby-server-sdk.gemspec',
'Gemfile']
s.test_files = `find spec/*`.split("\n")
s.executables = []
s.require_paths = ["lib"]
Expand Down
2 changes: 1 addition & 1 deletion examples/local/local-bucketing-example/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ gem "bootsnap", require: false
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"

gem "devcycle-ruby-server-sdk", path: "../../.."
gem "devcycle-ruby-server-sdk"

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
Expand Down

0 comments on commit 2061591

Please sign in to comment.