motion_yak 0.0.1

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 ADDED
@@ -0,0 +1,2 @@
1
+ source :rubygems
2
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,16 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ motion_yak (0.0.1)
5
+ bubble-wrap
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ bubble-wrap (1.1.4)
11
+
12
+ PLATFORMS
13
+ ruby
14
+
15
+ DEPENDENCIES
16
+ motion_yak!
data/Rakefile ADDED
@@ -0,0 +1,5 @@
1
+ require "bundler/gem_tasks"
2
+ $:.unshift("/Library/RubyMotion/lib")
3
+ require 'motion/project'
4
+ Bundler.setup
5
+ Bundler.require
@@ -0,0 +1,9 @@
1
+ module MotionYak
2
+ VERSION = '0.0.1' unless defined?(MotionYak::VERSION)
3
+ MIN_MOTION_VERSION = '1.24'
4
+
5
+ module_function
6
+ def minor_version(version_str)
7
+ version_str.split(".")[1].to_i
8
+ end
9
+ end
data/lib/motion_yak.rb ADDED
@@ -0,0 +1,9 @@
1
+ unless defined?(Motion::Project::Config)
2
+ raise "This file must be required within a RubyMotion project Rakefile."
3
+ end
4
+
5
+ Motion::Project::App.setup do |app|
6
+ Dir.glob(File.join(File.dirname(__FILE__), 'motion_yak/*.rb')).each do |file|
7
+ app.files.unshift(file)
8
+ end
9
+ end
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/motion_yak/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Scott Ballantyne"]
6
+ gem.email = ["ussballantyne@gmail.com"]
7
+ gem.description = "RubyMotion wrappers for EmailYak"
8
+ gem.summary = "RubyMotion wrappers for EmailYak"
9
+ gem.homepage = "http://github.com/ballantyne/motion_yak"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.test_files = gem.files.grep(%r{^(test|spec|lib_spec|features)/})
13
+ gem.name = "motion_yak"
14
+ gem.require_paths = ["lib"]
15
+ gem.version = MotionYak::VERSION
16
+
17
+ gem.extra_rdoc_files = gem.files.grep(%r{motion})
18
+ gem.add_dependency 'bubble-wrap'
19
+ end
metadata ADDED
@@ -0,0 +1,76 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: motion_yak
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Scott Ballantyne
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: bubble-wrap
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ description: RubyMotion wrappers for EmailYak
31
+ email:
32
+ - ussballantyne@gmail.com
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files:
36
+ - lib/motion_yak.rb
37
+ - lib/motion_yak/version.rb
38
+ - motion_yak.gemspec
39
+ files:
40
+ - Gemfile
41
+ - Gemfile.lock
42
+ - Rakefile
43
+ - lib/motion_yak.rb
44
+ - lib/motion_yak/version.rb
45
+ - motion_yak.gemspec
46
+ homepage: http://github.com/ballantyne/motion_yak
47
+ licenses: []
48
+ post_install_message:
49
+ rdoc_options: []
50
+ require_paths:
51
+ - lib
52
+ required_ruby_version: !ruby/object:Gem::Requirement
53
+ none: false
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ segments:
59
+ - 0
60
+ hash: 176870883006835740
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ segments:
68
+ - 0
69
+ hash: 176870883006835740
70
+ requirements: []
71
+ rubyforge_project:
72
+ rubygems_version: 1.8.21
73
+ signing_key:
74
+ specification_version: 3
75
+ summary: RubyMotion wrappers for EmailYak
76
+ test_files: []