motion_yak 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
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