Sha256: 61024cef85570e5b74e74b3e0f63dbb717b89d8b1b58798efd968942071d5199

Contents?: true

Size: 545 Bytes

Versions: 8

Compression:

Stored size: 545 Bytes

Contents

# -*- coding: utf-8 -*-
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project/template/ios'

require "bundler/gem_tasks"
require "bundler/setup"
Bundler.require :default

Motion::Project::App.setup do |app|
  app.name = 'motion-sqlite3'

  base_dir = File.dirname(__FILE__)
  app.files += Dir.glob(File.join(base_dir, "lib/motion-sqlite3/**/*.rb"))

  if ENV["DEFAULT_PROVISIONING_PROFILE"]
    app.provisioning_profile = ENV["DEFAULT_PROVISIONING_PROFILE"]
  end

  app.libs << "/usr/lib/libsqlite3.dylib"
  app.include 'sqlite3.h'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
motion-sqlite3-0.5.3 Rakefile
motion-sqlite3-0.5.2 Rakefile
motion-sqlite3-0.5.1 Rakefile
motion-sqlite3-0.5.0 Rakefile
motion-sqlite3-0.4.2 Rakefile
motion-sqlite3-0.4.1 Rakefile
motion-sqlite3-0.4.0 Rakefile
motion-sqlite3-0.3.2 Rakefile