motion_yak 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- motion_yak (0.0.1)
4
+ motion_yak (0.0.2)
5
5
  bubble-wrap
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -2,4 +2,5 @@ require "bundler/gem_tasks"
2
2
  $:.unshift("/Library/RubyMotion/lib")
3
3
  require 'motion/project'
4
4
  Bundler.setup
5
- Bundler.require
5
+ Bundler.require
6
+ require 'bubble-wrap/http'
@@ -0,0 +1,11 @@
1
+ module MotionYak
2
+ module Config
3
+ def api_key=(a)
4
+ @@api_key = a
5
+ end
6
+
7
+ def api_key
8
+ @@api_key
9
+ end
10
+ end
11
+ end