Sha256: 7634580e76f52f056023c7e1e1dc540b6977e4fa5299797194d25904a3a66e4f

Contents?: true

Size: 578 Bytes

Versions: 43

Compression:

Stored size: 578 Bytes

Contents

#!/usr/bin/env ruby
require 'rubygems'
require 'yaml'
require 'fileutils'
include FileUtils
puts File.dirname(__FILE__)

if File.exists? "build.yml"
  $app_config = YAML::load_file("build.yml")

  unless $app_config["sdk"].nil?
    $app_config["sdk"] = nil

    File.open(  'build.yml', 'w' ) do |out|
      YAML.dump( $app_config, out )
    end

    rakefilepath = File.join( `get-rhodes-info --rhodes-path`.chomp(), 'res/generators/templates/application/Rakefile' )
    puts "Application Rakefile has been updated to use latest Rhodes gem."
    cp rakefilepath, '.'
  end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
rhodes-7.6.0 bin/migrate-rhodes-app
rhodes-7.5.1 bin/migrate-rhodes-app
rhodes-7.4.1 bin/migrate-rhodes-app
rhodes-7.1.17 bin/migrate-rhodes-app
rhodes-6.2.0 bin/migrate-rhodes-app
rhodes-6.0.11 bin/migrate-rhodes-app
rhodes-5.5.18 bin/migrate-rhodes-app
rhodes-5.5.17 bin/migrate-rhodes-app
rhodes-5.5.15 bin/migrate-rhodes-app
rhodes-5.5.0.22 bin/migrate-rhodes-app
rhodes-5.5.2 bin/migrate-rhodes-app
rhodes-5.5.0.7 bin/migrate-rhodes-app
rhodes-5.5.0.3 bin/migrate-rhodes-app
rhodes-5.5.0 bin/migrate-rhodes-app
rhodes-3.5.1.12 bin/migrate-rhodes-app
rhodes-3.3.5 bin/migrate-rhodes-app
rhodes-3.4.2 bin/migrate-rhodes-app
rhodes-3.3.4 bin/migrate-rhodes-app
rhodes-3.3.3 bin/migrate-rhodes-app
rhodes-3.3.3.beta.4 bin/migrate-rhodes-app