Sha256: 5f1d5e8fd961c5826b28701e66f6798c7c9ace3890d4b94423efb823e090d6b6

Contents?: true

Size: 945 Bytes

Versions: 1

Compression:

Stored size: 945 Bytes

Contents

unless defined?(Motion::Project::Config)
  raise "This file must be required within a RubyMotion project Rakefile."
end

require 'motion-require'
require 'motion-support/concern'
require 'motion-support/inflector'
require 'motion-support/core_ext'

files = Dir.glob(File.expand_path('../../lib/yapper/**/*.rb', __FILE__))
Motion::Require.all(files)

Motion::Project::App.setup do |app|
  app.detect_dependencies = false

  app.pods do
    pod 'YapDatabase'      ,'~> 2.3'
    pod 'AFNetworking'     ,'~> 1.3.3'
    pod 'Reachability'     ,'~> 3.1.1'
    pod 'CocoaLumberjack'  ,'~> 1.6.5'
    pod 'NSData+MD5Digest' ,'~> 1.0.0'
  end

  yap_patch = File.expand_path(File.join(File.dirname(__FILE__), '../vendor/YapDatabaseRubyMotion'))
  app.vendor_project(yap_patch,
                     :static,
                     :bridgesupport_cflags => '-I../Pods/Headers -fobjc-arc',
                     :cflags => '-I../Pods/Headers -fobjc-arc')

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
motion-yapper-0.0.1 lib/yapper.rb