Skip to content

Commit

Permalink
minor changes to ruby gem
Browse files Browse the repository at this point in the history
  • Loading branch information
nudded committed Oct 17, 2024
1 parent 6238063 commit 2f25515
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 3.3.4
ruby 3.3.5
3 changes: 1 addition & 2 deletions expression-ruby/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
source "https://rubygems.org"
ruby "3.3"

gem 'rb_sys'
ruby "3.3.5"

gemspec
8 changes: 6 additions & 2 deletions expression-ruby/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ PATH
specs:
lago-expression (0.0.1)
bigdecimal
rake (~> 13)
rake-compiler (~> 1.2)
rb_sys (~> 0.9.63)

GEM
remote: https://rubygems.org/
Expand Down Expand Up @@ -42,9 +45,10 @@ PLATFORMS
DEPENDENCIES
lago-expression!
libclang (~> 14)
rake-compiler (~> 1.2)
rb_sys (~> 0.9)
rspec (~> 3)

RUBY VERSION
ruby 3.3.5p100

BUNDLED WITH
2.5.11
1 change: 1 addition & 0 deletions expression-ruby/ext/lago_expression/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "lago_expression"
version = "0.0.1"
edition = "2021"
publish = false

[lib]
crate-type = ["cdylib"]
Expand Down
10 changes: 7 additions & 3 deletions expression-ruby/lago-expression.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@ Gem::Specification.new do |spec|
spec.version = '0.0.1'
spec.summary = '0.0.1'
spec.authors = ['Lago']
spec.extensions = ['ext/lago_expression/extconf.rb']
spec.required_ruby_version = '~> 3.3'
spec.required_rubygems_version = ">= 3.3.11"

spec.require_paths = ["lib"]
spec.extensions = ['ext/lago_expression/Cargo.toml']

spec.add_dependency 'bigdecimal'
spec.add_dependency 'rb_sys', '~> 0.9'
spec.add_dependency 'rake', '~> 13'
spec.add_dependency 'rake-compiler', '~> 1.2'
spec.add_dependency 'rb_sys', '~> 0.9.63'
spec.add_development_dependency 'libclang', '~> 14'
spec.add_development_dependency 'rake-compiler', '~> 1.2'
spec.add_development_dependency 'rspec', '~> 3'
end

0 comments on commit 2f25515

Please sign in to comment.