pizza_delivery_motion 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b7a30dc683e040052a9eb63ba2c2af72c5fce3f3
4
+ data.tar.gz: b6172d7a14cca2277c3872950dca9618cc28cbc4
5
+ SHA512:
6
+ metadata.gz: f624c1a9cd31a88834d9bdeca496188557206e408954b412e1731874387fa7dcbe97c46dda735b2eddd98a98f15bbaad5f1111a52f0b23ffd9658c1977932fee
7
+ data.tar.gz: 44ca8673c78d30e18426069f8b5959f98920447e4f9a01550c1e55d93d175c32174b64a8259a0eb1aa668cf10b11209f49952b94a982ddab47ca37c319242c25
data/.gitignore ADDED
@@ -0,0 +1,11 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.gem
11
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Steve Weiss
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Pizza Delivery Motion
2
+
3
+ Pizza Delivery Motion wraps the [Pizza Delivery](https://github.com/soveran/pizza_delivery) gem for use in RubyMotion.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'pizza_delivery_motion'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install pizza_delivery_motion
20
+
21
+ Then require the gem in your RubyMotion Gemfile:
22
+
23
+ require 'pizza_delivery_motion'
24
+
25
+
26
+ ## License
27
+
28
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
29
+
@@ -0,0 +1,13 @@
1
+ # encoding: utf-8
2
+
3
+ unless defined?(Motion::Project::Config)
4
+ raise 'This file must be required within a RubyMotion Rakefile'
5
+ end
6
+
7
+ gem_dir = Gem::Specification.find_by_name('pizza_delivery').gem_dir
8
+ lib_dir = File.dirname(File.expand_path(__FILE__))
9
+
10
+ Motion::Project::App.setup do |app|
11
+ app.files.unshift(Dir.glob(File.join(gem_dir, "lib/**/*.rb")))
12
+ app.files.unshift(Dir.glob(File.join(lib_dir, "pizza_delivery_motion/**/*.rb")))
13
+ end
@@ -0,0 +1,5 @@
1
+ # To compile with RubyMotion, we must stub out `require` and `require_relative`
2
+ # and instead add files manually in `Motion::Project::App.setup`.
3
+
4
+ def require(*args); end
5
+ def require_relative(*args); end
@@ -0,0 +1,13 @@
1
+ # coding: utf-8
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = 'pizza_delivery_motion'
5
+ s.summary = 'PizzaDeliveryMotion'
6
+ s.version = '0.1.0'
7
+ s.authors = ['Steve Weiss']
8
+ s.email = ['weissst@mail.gvsu.edu']
9
+ s.homepage = 'https://github.com/sirscriptalot/pizza_delivery_motion'
10
+ s.license = 'MIT'
11
+ s.files = `git ls-files`.split("\n")
12
+ s.add_runtime_dependency('pizza_delivery', ['>= 0.1.0'])
13
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pizza_delivery_motion
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Steve Weiss
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-14 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pizza_delivery
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 0.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 0.1.0
27
+ description:
28
+ email:
29
+ - weissst@mail.gvsu.edu
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - Gemfile
36
+ - LICENSE.txt
37
+ - README.md
38
+ - lib/pizza_delivery_motion.rb
39
+ - lib/pizza_delivery_motion/core_ext.rb
40
+ - pizza_delivery_motion.gemspec
41
+ homepage: https://github.com/sirscriptalot/pizza_delivery_motion
42
+ licenses:
43
+ - MIT
44
+ metadata: {}
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.5.1
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: PizzaDeliveryMotion
65
+ test_files: []