Sha256: b6a94258799cbb0bc8c6b9c6fc683575bb1e45927cbac2ec1ea281bf19f3c8f4
Contents?: true
Size: 642 Bytes
Versions: 1
Compression:
Stored size: 642 Bytes
Contents
# -*- coding: utf-8 -*- $:.unshift("/Library/RubyMotion/lib") require 'motion/project/template/ios' require 'bundler' Bundler.require require 'under-os' Motion::Project::App.setup do |app| app.name = 'uos-demo' app.identifier = 'com.under-os.demo' app.specs_dir = './spec/lib' app.version = UnderOs::VERSION app.codesign_certificate = ENV['RUBYMOTION_CERTIFICATE'] app.provisioning_profile = ENV['RUBYMOTION_PROFILE'] if ARGV[0] == 'spec' app.name = 'uos-spec' app.identifier = 'com.under-os.spec' app.files << 'spec/assets/test_page.rb' app.resources_dirs.unshift "./spec/assets/" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
under-os-1.0.0 | Rakefile |