Sha256: 31d9c1ee54a505cf7bdb5d2a1dfbd6567b92527678b49e9241739baef34ec175

Contents?: true

Size: 1.45 KB

Versions: 13

Compression:

Stored size: 1.45 KB

Contents

# encoding: ascii-8bit

# Copyright 2022 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU Affero General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.

# Modified by OpenC3, Inc.
# All changes Copyright 2022, OpenC3, Inc.
# All Rights Reserved
#
# This file may also be used under the terms of a commercial license 
# if purchased from OpenC3, Inc.

PLUGIN_NAME = Dir['*.gemspec'][0].split('.')[0..-2].join('.')

task :require_version do
  if ENV['VERSION']
    if ENV['VERSION'] =~ /-/
      # Add Timestamp to prerelease versions
      ENV['VERSION'] = ENV['VERSION'] + "." + Time.now.utc.strftime("%Y%m%d%H%M%S")
    end
  else
    puts "VERSION is required: rake <task> VERSION=X.X.X"
    exit 1
  end
end

task :build => [:require_version] do
  _, platform, *_ = RUBY_PLATFORM.split("-")
  if platform == 'mswin32' or platform == 'mingw32'
    puts "Warning: Building gem on Windows will lose file permissions"
  end
  # Build the widgets in the src directory
  system("yarn run build")
  system("gem build #{PLUGIN_NAME}")
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
openc3-cosmos-demo-5.5.2 Rakefile
openc3-cosmos-demo-5.5.2.pre.beta0.20230315041141 Rakefile
openc3-cosmos-demo-5.5.1 Rakefile
openc3-cosmos-demo-5.5.0 Rakefile
openc3-cosmos-demo-5.5.0.pre.beta0.20230217010435 Rakefile
openc3-cosmos-demo-5.4.3.pre.beta0.20230214173509 Rakefile
openc3-cosmos-demo-5.4.2 Rakefile
openc3-cosmos-demo-5.4.1 Rakefile
openc3-cosmos-demo-5.4.0 Rakefile
openc3-cosmos-demo-5.3.0 Rakefile
openc3-cosmos-demo-5.2.0 Rakefile
openc3-cosmos-demo-5.1.1 Rakefile
openc3-cosmos-demo-5.1.0 Rakefile