Sha256: 244eb19e3bd800fee36c25791d603fe90fd5a941a68d3bb2fda684e8bd913d74
Contents?: true
Size: 635 Bytes
Versions: 20
Compression:
Stored size: 635 Bytes
Contents
class VersionController < ApplicationController def index framework_version = Gem.loaded_specs['maestrano-connector-rails'].version.version branch = ENV['GIT_BRANCH'] commit = ENV['GIT_COMMIT_ID'] respond_to do |format| format.html { render text: "framework_version=#{framework_version}\nci_branch=#{branch}\nci_commit=#{commit}\nenv=#{Rails}\nnv, ruby_version=#{RUBY_VERSION}\nruby_engine=#{RUBY_ENGINE}\n" } format.json { render json: {framework_version: framework_version, ci_branch: branch, ci_commit: commit, env: Rails.env, ruby_version: RUBY_VERSION, ruby_engine: RUBY_ENGINE} } end end end
Version data entries
20 entries across 20 versions & 1 rubygems