Sha256: 777d5436a6cc9e22f9a9cd4f610f95ea6ccd8382ac36941bc0e6e294947cd9af

Contents?: true

Size: 989 Bytes

Versions: 7

Compression:

Stored size: 989 Bytes

Contents

# Detects the current version of Rails that is being used
#
#
unless defined? RAILS_VERSION_FILE
  RAILS_VERSION_FILE = File.expand_path("../../../.rails-version", __FILE__)
end

unless defined? TRAVIS_CONFIG
  require 'yaml'
  filename = File.expand_path("../../../.travis.yml", __FILE__)
  TRAVIS_CONFIG = YAML.load_file filename
  TRAVIS_RAILS_VERSIONS = TRAVIS_CONFIG['env'].grep(/RAILS=(.*)/){ $1 }.sort
end

unless defined? DEFAULT_RAILS_VERSION
  DEFAULT_RAILS_VERSION = TRAVIS_RAILS_VERSIONS.last
end

def detect_rails_version
  version = version_from_file || version_from_env || DEFAULT_RAILS_VERSION

  puts "Detected Rails: #{version}" if ENV['DEBUG']

  version
end

def version_from_file
  if File.exists?(RAILS_VERSION_FILE)
    version = File.read(RAILS_VERSION_FILE).chomp.strip
    version = nil if version == ""

    version
  end
end

def version_from_env
  ENV['RAILS']
end

def write_rails_version(version)
  File.open(RAILS_VERSION_FILE, "w+"){|f| f << version }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
activeadmin-0.6.6 spec/support/detect_rails_version.rb
activeadmin-0.6.5 spec/support/detect_rails_version.rb
activeadmin-0.6.4 spec/support/detect_rails_version.rb
activeadmin-0.6.3 spec/support/detect_rails_version.rb
activeadmin-0.6.2 spec/support/detect_rails_version.rb
activeadmin-0.6.1 spec/support/detect_rails_version.rb
activeadmin-0.6.0 spec/support/detect_rails_version.rb