motion-map 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +2 -0
- data/README.md +51 -0
- data/Rakefile +15 -0
- data/app/a.rb +16 -0
- data/app/app_delegate.rb +11 -0
- data/lib/motion-map.rb +9 -0
- data/lib/motion-map/map.rb +1028 -0
- data/lib/motion-map/version.rb +3 -0
- data/motion-map.gemspec +17 -0
- data/spec/helpers/map_helper.rb +13 -0
- data/spec/map/map_spec.rb +521 -0
- metadata +70 -0
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: motion-map
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Fernand Galiana
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-04-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
prerelease: false
|
15
|
+
name: rspec
|
16
|
+
version_requirements: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ! '>='
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '0'
|
21
|
+
requirement: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ! '>='
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0'
|
26
|
+
type: :development
|
27
|
+
description: Ported Ara Howard's Map gem to RubyMotion
|
28
|
+
email:
|
29
|
+
- fernand.galiana@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- .gitignore
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- app/a.rb
|
38
|
+
- app/app_delegate.rb
|
39
|
+
- lib/motion-map.rb
|
40
|
+
- lib/motion-map/map.rb
|
41
|
+
- lib/motion-map/version.rb
|
42
|
+
- motion-map.gemspec
|
43
|
+
- spec/helpers/map_helper.rb
|
44
|
+
- spec/map/map_spec.rb
|
45
|
+
homepage: https://github.com/derailed/motion-map
|
46
|
+
licenses: []
|
47
|
+
metadata: {}
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options: []
|
50
|
+
require_paths:
|
51
|
+
- lib
|
52
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
requirements: []
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 2.0.3
|
65
|
+
signing_key:
|
66
|
+
specification_version: 4
|
67
|
+
summary: Port of the most excellent Map gem to RubyMotion
|
68
|
+
test_files:
|
69
|
+
- spec/helpers/map_helper.rb
|
70
|
+
- spec/map/map_spec.rb
|