Sha256: b55312bfd4f119067fa0c11e4ebf3bb9b279d7137b2f374b469656c7ffd519f0

Contents?: true

Size: 622 Bytes

Versions: 1

Compression:

Stored size: 622 Bytes

Contents

require "nano_store/version"

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

require 'bubble-wrap'

Motion::Project::App.setup do |app|
  Dir.glob(File.join(File.dirname(__FILE__), 'nano_store/*.rb')).each do |file|
    app.files.unshift(file)
  end
  
  # Load finder and association first
  app.files.unshift(File.join(File.dirname(__FILE__), 'nano_store/association.rb'))
  app.files.unshift(File.join(File.dirname(__FILE__), 'nano_store/finder.rb'))

  app.pods ||= Motion::Project::CocoaPods.new(app)
  app.pods.pod 'NanoStore', '~> 2.5.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
nano-store-0.6.0 lib/nano_store.rb