Skip to content

Commit

Permalink
Tidy go build and dependency definitions
Browse files Browse the repository at this point in the history
Signed-off-by: Chad Wilson <chadw@thoughtworks.com>
  • Loading branch information
chadlwilson committed Jan 6, 2025
1 parent 01b421c commit cba9a82
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ PLATFORMS

DEPENDENCIES
gauge-ruby!
grpc-tools (~> 1.10, >= 1.10.0, < 1.69)
grpc-tools (~> 1.10, >= 1.10.0)
method_source
os
rake
Expand All @@ -86,4 +86,4 @@ DEPENDENCIES
yard

BUNDLED WITH
2.5.18
2.6.2
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ task :default => [:spec]

desc "Fetch github.com/getgauge/common"
task :fetch_common do
sh "go get -u -d github.com/getgauge/common"
sh "go get -u github.com/getgauge/common"
end

desc "Compile gauge-ruby.go for current OS/Arch"
Expand Down
2 changes: 1 addition & 1 deletion gauge-proto
2 changes: 1 addition & 1 deletion gauge-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'parser', '>= 3.1', '< 4.0'
s.add_runtime_dependency 'unparser', '>= 0.6.4', '< 0.7.0'
s.add_runtime_dependency 'grpc', '~> 1.10', '>= 1.10.0', '< 1.65'
s.add_development_dependency 'grpc-tools', '~> 1.10', '>= 1.10.0', '< 1.69'
s.add_development_dependency 'grpc-tools', '~> 1.10', '>= 1.10.0'
s.required_ruby_version = ">= 3.1"
end
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module github.com/getgauge/gauge-ruby

go 1.23

require github.com/getgauge/common v0.0.0-20240916085715-b44f2fc18871
require github.com/getgauge/common v0.0.0-20240923154736-7ff1ad53db2a

require github.com/dmotylev/goproperties v0.0.0-20140630191356-7cbffbaada47 // indirect
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
github.com/dmotylev/goproperties v0.0.0-20140630191356-7cbffbaada47 h1:sP2APvSdZpfBiousrppBZNOvu+TE79Myq4kkmmrtSuI=
github.com/dmotylev/goproperties v0.0.0-20140630191356-7cbffbaada47/go.mod h1:f2V6964+f0p8Asqy8mIK5cKyyVc6MP9PFzGVNRcnYJQ=
github.com/getgauge/common v0.0.0-20240916085715-b44f2fc18871 h1:Txqc6KekaIAae92+int7TdtapvbZSNt/kH2Q1LPhi1k=
github.com/getgauge/common v0.0.0-20240916085715-b44f2fc18871/go.mod h1:LTYyyXhTUqlboEUjV5XMF7A4oRLlpLAp7clz9ikpqZs=
github.com/getgauge/common v0.0.0-20240923154736-7ff1ad53db2a h1:v9slZPhdN8OBit0PYCBF2Cq/K0NI0AU81vk0ki6ORl4=
github.com/getgauge/common v0.0.0-20240923154736-7ff1ad53db2a/go.mod h1:xvlhuz4WOguj1Um0dsbxx5vNNbTN9gTXnoMx5ALBsLo=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

0 comments on commit cba9a82

Please sign in to comment.