Skip to content

Commit

Permalink
allow wasabi 4.x, rubygems mfa, default ruby devcontainer config
Browse files Browse the repository at this point in the history
  • Loading branch information
pcai committed Mar 27, 2023
1 parent f4b8c3b commit b3f6536
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ruby
{
"name": "Ruby",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/ruby:0-3-bullseye"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "ruby --version",

// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
4 changes: 3 additions & 1 deletion savon.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |s|

s.add_dependency "nori", "~> 2.4"
s.add_dependency "httpi", ">= 2.4.5"
s.add_dependency "wasabi", "~> 3.4"
s.add_dependency "wasabi", ">= 3.4"
s.add_dependency "akami", "~> 1.2"
s.add_dependency "gyoku", "~> 1.2"
s.add_dependency "builder", ">= 2.1.2"
Expand All @@ -34,6 +34,8 @@ Gem::Specification.new do |s|
s.add_development_dependency "mocha", "~> 0.14"
s.add_development_dependency "json", ">= 2.3.0"

s.metadata["rubygems_mfa_required"] = "true"

s.files = Dir['CHANGELOG.md', 'LICENSE', 'README.md', 'Rakefile', 'lib/**/*.rb']

s.require_path = "lib"
Expand Down

0 comments on commit b3f6536

Please sign in to comment.