-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (22 loc) · 815 Bytes
/
Rakefile
File metadata and controls
27 lines (22 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require "motion/project/template/osx"
begin
require "bundler"
Bundler.require
rescue LoadError
end
Motion::Project::App.setup do |app|
# Use `rake config' to see complete project settings.
app.name = "Timer for Tick"
app.icon = "icon.icns"
app.identifier = "com.codelation.ticktimer"
app.short_version = "1.0.1"
app.version = app.short_version
app.codesign_certificate = "3rd Party Mac Developer Application: Argyle Media, Inc. (QZ7NP3GN8S)"
# App Store Sandbox
app.entitlements["com.apple.security.app-sandbox"] = true
app.entitlements["com.apple.security.network.client"] = true
app.info_plist["LSUIElement"] = true
app.info_plist["NSHumanReadableCopyright"] = "Copyright © 2014 Codelation. All rights reserved."
end