Created
July 18, 2025 08:55
-
-
Save mat/76a098f1bdea4b41de0363b191b85934 to your computer and use it in GitHub Desktop.
Ruby inline bundler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'bundler/inline' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'json', require: false | |
gem 'nap', require: 'rest' | |
gem 'cocoapods', '~> 0.34.1' | |
end | |
puts 'Gems installed and loaded!' | |
puts "The nap gem is at version #{REST::VERSION}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment