Sha256: 477af3b08882277032766903568c1442ab815414728395b85688de24e81e454f
Contents?: true
Size: 575 Bytes
Versions: 13
Compression:
Stored size: 575 Bytes
Contents
#!/usr/bin/env ruby require "bundler/setup" require "gitlab_mr_release" # You can add fixtures and/or initialization code here to make experimenting # with your gem easier. You can also use a different console, if you like. require "dotenv" Dotenv.load(".env.gitlab", "~/.env.gitlab") clean_room = Object.new clean_room.instance_eval do @project = GitlabMrRelease::Project.new( api_endpoint: ENV["GITLAB_API_ENDPOINT"], private_token: ENV["GITLAB_API_PRIVATE_TOKEN"], project_name: ENV["GITLAB_PROJECT_NAME"], ) end require "pry" Pry.start(clean_room)
Version data entries
13 entries across 13 versions & 1 rubygems