motion-template-spritekit 0.1 → 0.2.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3b41e29bf132b1c998da4f6024ae74706785506f
4
- data.tar.gz: ac9182d68e1f2029f800a62bb1ba05613551af97
3
+ metadata.gz: a543383066921b99c6b28561b9fe3163f991043e
4
+ data.tar.gz: 471581043b6091865a657834935787d1007b4d24
5
5
  SHA512:
6
- metadata.gz: 40b54d821945ea69a30b3714f757d4bbc47d9b63446cd2f4a3f83df8bc0a2b58b261f831386c856727b24ccb544a9ecf3e2175a80280d26fa8c11a70b107c68b
7
- data.tar.gz: ed824ffe203609e9b11eefb154bdf985b1ad06b02260f552635965fdd1bf0ea09e40989b9705cf0885e3922b51f3bc8cf91d45dbd41f6a1bb55c816430f54b19
6
+ metadata.gz: b605729a577511119ed57b2d6dd92de66201ed31da7e94f38c1660b3c484044edcd0aa5904ef2d8d0a1d9b947a8fb2009a4dc0dd7e74d456575b5b75c1b0e798
7
+ data.tar.gz: 6a470fcf0aac79fe986243ca31bc4584ef42b0036150c120f9533531a71b0def83747842fe93ada269edba100e1742778330f137d5c48e860bc795b7e77539d6
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ .repl_history
2
+ build
3
+ tags
4
+ app/pixate_code.rb
5
+ resources/*.nib
6
+ resources/*.momd
7
+ resources/*.storyboardc
8
+ .DS_Store
9
+ nbproject
10
+ .redcar
11
+ #*#
12
+ *~
13
+ *.sw[po]
14
+ *.gem
15
+ .eprj
16
+ .sass-cache
17
+ .idea
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+ # Add your dependencies here:
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 meganemura
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1,18 +1,10 @@
1
1
  # motion-template-spritekit
2
2
 
3
- Project template for SpriteKit with RubyMotion
3
+ Project template for SpriteKit with RubyMotion [![Gem Version](https://badge.fury.io/rb/motion-template-spritekit.png)](http://badge.fury.io/rb/motion-template-spritekit)
4
4
 
5
5
  ## Installation
6
6
 
7
- Add this line to your application's Gemfile:
8
-
9
- gem 'motion-template-spritekit'
10
-
11
- And then execute:
12
-
13
- $ bundle
14
-
15
- Or install it yourself as:
7
+ Install it yourself as:
16
8
 
17
9
  $ gem install motion-template-spritekit
18
10
 
data/ext/extconf.rb CHANGED
@@ -9,8 +9,7 @@ templates.each do |template|
9
9
  dst = File.join(dir, template)
10
10
 
11
11
  FileUtils.mkdir_p(dir) unless File.exist?(dir)
12
- FileUtils.rm_f dst if File.exist?(dst)
13
- FileUtils.ln_s src, dst
12
+ FileUtils.ln_s src, dst, :force => true
14
13
  end
15
14
 
16
15
 
@@ -0,0 +1,17 @@
1
+ # coding: utf-8
2
+ VERSION = "0.2.0"
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "motion-template-spritekit"
6
+ spec.version = VERSION
7
+ spec.authors = ["meganemura"]
8
+ spec.email = ["mura2megane@gmail.com"]
9
+ spec.description = %q{Project template for SpriteKit with RubyMotion}
10
+ spec.summary = %q{Setup SpriteKit template to user's directory}
11
+ spec.homepage = "https://github.com/meganemura/motion-template-spritekit"
12
+ spec.license = "MIT"
13
+ spec.extensions = ['ext/extconf.rb'] # Command-Line Plugin Installer
14
+
15
+ spec.files = `git ls-files`.split($\)
16
+ spec.require_paths = ["lib"]
17
+ end
@@ -0,0 +1,16 @@
1
+ .repl_history
2
+ build
3
+ tags
4
+ app/pixate_code.rb
5
+ resources/*.nib
6
+ resources/*.momd
7
+ resources/*.storyboardc
8
+ .DS_Store
9
+ nbproject
10
+ .redcar
11
+ #*#
12
+ *~
13
+ *.sw[po]
14
+ .eprj
15
+ .sass-cache
16
+ .idea
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-template-spritekit
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.1'
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - meganemura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-16 00:00:00.000000000 Z
11
+ date: 2013-11-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Project template for SpriteKit with RubyMotion
14
14
  email:
@@ -18,17 +18,23 @@ extensions:
18
18
  - ext/extconf.rb
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - .gitignore
22
+ - Gemfile
23
+ - LICENSE.txt
21
24
  - README.md
22
25
  - ext/extconf.rb
26
+ - motion-template-spritekit.gemspec
27
+ - template/spritekit-ios/files/.gitignore
28
+ - template/spritekit-ios/files/Gemfile
29
+ - template/spritekit-ios/files/README.md.erb
30
+ - template/spritekit-ios/files/Rakefile.erb
23
31
  - template/spritekit-ios/files/app/app_delegate.rb
24
32
  - template/spritekit-ios/files/app/my_scene.rb
25
33
  - template/spritekit-ios/files/app/sprite_kit_base.rb
26
34
  - template/spritekit-ios/files/app/view_controller.rb
27
- - template/spritekit-ios/files/Gemfile
28
- - template/spritekit-ios/files/Rakefile.erb
29
- - template/spritekit-ios/files/README.md.erb
30
35
  - template/spritekit-ios/files/resources/Default-568h@2x.png
31
36
  - template/spritekit-ios/files/spec/main_spec.rb.erb
37
+ - template/spritekit-osx/.gitkeep
32
38
  homepage: https://github.com/meganemura/motion-template-spritekit
33
39
  licenses:
34
40
  - MIT