motion_blender 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: 66517bde47352d1d631eaf58b86b54846704e6ea
4
+ data.tar.gz: cbeb710b43f03f046f0cb3ca6491322059a0e3d8
5
+ SHA512:
6
+ metadata.gz: 6e5f5ce23150e86b6e69381ae1a92e3c01ab2b18aec637a3b4f131d7892f8f9725c52a57553fd7943f541a4ce14aaf3f77b3f55a5d25a2355eea3bfc409dd28f
7
+ data.tar.gz: cfc18c3a8c9cfd5022385a0753cb406d544c6b6f48778bc56b072c4702ec04ec032e9a52bf7ed69c8107e0c0839e3d64befb867f4edcd31deecb6eb1c01e7a0b
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format Fuubar
2
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,75 @@
1
+ AllCops:
2
+ Exclude:
3
+ - 'Rakefile'
4
+ - 'Guardfile'
5
+ - '*.gemspec'
6
+ - 'bin/**/*'
7
+ - 'db/**/*'
8
+ - 'config/**/*'
9
+
10
+ Lint/Eval:
11
+ Exclude:
12
+ - 'lib/motion_blender/analyzer/parser.rb'
13
+
14
+ # Configuration parameters: CountComments.
15
+ Metrics/MethodLength:
16
+ Max: 20
17
+
18
+ Metrics/AbcSize:
19
+ Max: 25
20
+
21
+ # Configuration parameters: EnforcedStyle, SupportedStyles, ProceduralMethods, FunctionalMethods, IgnoredMethods.
22
+ Style/BlockDelimiters:
23
+ Exclude:
24
+ - 'spec/**/*'
25
+
26
+ # Cop supports --auto-correct.
27
+ Style/BlockEndNewline:
28
+ Exclude:
29
+ - 'spec/**/*'
30
+
31
+ # Cop supports --auto-correct.
32
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
33
+ Style/BracesAroundHashParameters:
34
+ Enabled: false
35
+
36
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
37
+ Style/ClassAndModuleChildren:
38
+ Enabled: false
39
+
40
+ Style/Documentation:
41
+ Enabled: false
42
+
43
+ Style/DoubleNegation:
44
+ Enabled: false
45
+
46
+ # Configuration parameters: MinBodyLength.
47
+ Style/GuardClause:
48
+ Enabled: false
49
+
50
+ # Cop supports --auto-correct.
51
+ # Configuration parameters: MaxLineLength.
52
+ Style/IfUnlessModifier:
53
+ Enabled: false
54
+
55
+ # Cop supports --auto-correct.
56
+ Style/Lambda:
57
+ Enabled: false
58
+
59
+ # Cop supports --auto-correct.
60
+ # Configuration parameters: EnforcedStyle, SupportedStyles.
61
+ Style/MethodDefParentheses:
62
+ EnforcedStyle: require_no_parentheses
63
+
64
+ # Cop supports --auto-correct.
65
+ Style/MultilineBlockLayout:
66
+ Exclude:
67
+ - 'spec/**/*'
68
+
69
+ # Cop supports --auto-correct.
70
+ Style/SingleSpaceBeforeFirstArg:
71
+ Enabled: false
72
+
73
+ # Cop supports --auto-correct.
74
+ Style/SpecialGlobalVars:
75
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.3
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in motion_blender.gemspec
4
+ gemspec
data/Guardfile ADDED
@@ -0,0 +1,23 @@
1
+ group :red_green_refactor, halt_on_fail: true do
2
+ guard :rspec, cmd: "bundle exec rspec" do
3
+ require "guard/rspec/dsl"
4
+ dsl = Guard::RSpec::Dsl.new(self)
5
+
6
+ # Feel free to open issues for suggestions and improvements
7
+
8
+ # RSpec files
9
+ rspec = dsl.rspec
10
+ watch(rspec.spec_helper) { rspec.spec_dir }
11
+ watch(rspec.spec_support) { rspec.spec_dir }
12
+ watch(rspec.spec_files)
13
+
14
+ # Ruby files
15
+ ruby = dsl.ruby
16
+ dsl.watch_spec_files_for(ruby.lib_files)
17
+ end
18
+
19
+ guard :rubocop, all_on_start: false do
20
+ watch(%r{.+\.rb$})
21
+ watch(%r{(?:.+/)?\.rubocop\.yml$}) { |m| File.dirname(m[0]) }
22
+ end
23
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 kayhide
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,41 @@
1
+ # MotionBlender
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/motion_blender`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'motion_blender'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install motion_blender
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/kayhide/motion_blender. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "motion_blender"
5
+
6
+ require "pry"
7
+ Pry.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,35 @@
1
+ require 'motion_blender/version'
2
+ require 'motion_blender/analyzer'
3
+ require 'motion_blender/rake_tasks'
4
+
5
+ module MotionBlender
6
+ module_function
7
+
8
+ def analyze
9
+ Motion::Project::App.setup do |app|
10
+ analyzer = Analyzer.new
11
+ analyzer.exclude_files = Dir[File.expand_path('../**/*.rb', __FILE__)]
12
+ app.files.flatten.each do |file|
13
+ analyzer.analyze file
14
+ end
15
+
16
+ if analyzer.files.any?
17
+ app.exclude_from_detect_dependencies += [ext_file, *analyzer.files]
18
+ app.files = [ext_file, *(analyzer.files - app.files), *app.files]
19
+ app.files_dependencies analyzer.dependencies
20
+ end
21
+ end
22
+ end
23
+
24
+ def add file
25
+ if defined?(Motion::Project::Config)
26
+ Motion::Project::App.setup do |app|
27
+ app.files.unshift file
28
+ end
29
+ end
30
+ end
31
+
32
+ def ext_file
33
+ File.expand_path('../../motion/ext.rb', __FILE__)
34
+ end
35
+ end
@@ -0,0 +1,37 @@
1
+ require 'set'
2
+ require 'pathname'
3
+ require 'motion_blender/analyzer/parser'
4
+
5
+ module MotionBlender
6
+ class Analyzer
7
+ attr_reader :files, :dependencies
8
+ attr_accessor :exclude_files
9
+
10
+ def initialize
11
+ @analyzed_files = Set.new
12
+ @files = []
13
+ @dependencies = {}
14
+ @exclude_files = []
15
+ end
16
+
17
+ def analyze file
18
+ return if @exclude_files.include? file
19
+ return if @analyzed_files.include? file
20
+ @analyzed_files << file
21
+
22
+ parser = Parser.new file
23
+ parser.parse
24
+ parser.requires.reject! do |req|
25
+ @exclude_files.include? req.file
26
+ end
27
+
28
+ if parser.requires.any?
29
+ @dependencies[file] = parser.requires.map(&:file)
30
+ @files = (@files + [file] + @dependencies[file]).uniq
31
+ @dependencies[file].each do |f|
32
+ analyze f
33
+ end
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,41 @@
1
+ module MotionBlender
2
+ class Analyzer
3
+ module Hooker
4
+ module_function
5
+
6
+ def active?
7
+ !!@active
8
+ end
9
+
10
+ def activate
11
+ @active = true
12
+ end
13
+
14
+ def deactivate
15
+ @active = false
16
+ end
17
+
18
+ def requires
19
+ @requires ||= Hash.new { |hash, key| hash[key] = [] }
20
+ end
21
+
22
+ def clear
23
+ requires.clear
24
+ end
25
+ end
26
+
27
+ module Hooks
28
+ def require feature
29
+ if Hooker.active?
30
+ super
31
+ src = caller.first.split(':', 2).first
32
+ Hooker.requires[src] << feature
33
+ else
34
+ super
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
40
+
41
+ Object.send :include, MotionBlender::Analyzer::Hooks
@@ -0,0 +1,83 @@
1
+ require 'parser/current'
2
+ require 'pathname'
3
+
4
+ module MotionBlender
5
+ class Analyzer
6
+ class Parser
7
+ REQUIREMENT_TOKENS = %i(motion_require require_relative require)
8
+
9
+ Require = Struct.new(:loader, :method, :arg, :file)
10
+
11
+ attr_reader :file, :requires
12
+
13
+ def initialize file
14
+ @file = file.to_s
15
+ @requires = []
16
+ end
17
+
18
+ def parse
19
+ ast = ::Parser::CurrentRuby.parse(File.read(@file))
20
+ traverse ast
21
+ end
22
+
23
+ def traverse ast
24
+ if ast && ast.type == :send && require_command?(ast)
25
+ req = parse_arg ast
26
+ req.file = resolve_path req.method, req.arg
27
+ @requires << req
28
+ elsif ast
29
+ ast.children
30
+ .select { |node| node.is_a?(::Parser::AST::Node) }
31
+ .each { |node| traverse node }
32
+ end
33
+ rescue LoadError => err
34
+ raise err, err.message, [trace_for(ast), *caller]
35
+ end
36
+
37
+ def require_command? ast
38
+ REQUIREMENT_TOKENS.include?(ast.children[1])
39
+ end
40
+
41
+ def parse_arg ast
42
+ arg_ast = ast.children[2]
43
+ arg = eval arg_ast.loc.expression.source, clean_binding, @file
44
+ Require.new(@file, ast.children[1], arg)
45
+ rescue
46
+ exp = ast.loc.expression.source
47
+ raise LoadError, "failed to parse `#{exp}'", caller(1)
48
+ end
49
+
50
+ def trace_for ast
51
+ "#{@file}:#{ast.loc.line}:in `#{ast.children[1]}'"
52
+ end
53
+
54
+ def clean_binding
55
+ binding
56
+ end
57
+
58
+ def resolve_path method, arg
59
+ if %i(motion_require require_relative).include? method
60
+ arg = Pathname.new(@file).dirname.join(arg).to_s
61
+ end
62
+ path = candidates_for(arg, method == :require).find(&:file?)
63
+ fail LoadError, "not found `#{arg}'" unless path
64
+ explicit_relative path
65
+ end
66
+
67
+ def candidates_for feature, uses_load_path
68
+ path = Pathname.new(feature)
69
+ dirs = (uses_load_path && path.relative?) ? $LOAD_PATH : ['']
70
+ exts = path.extname.empty? ? ['', '.rb'] : ['']
71
+ Enumerator.new do |y|
72
+ dirs.product(exts).each do |dir, ext|
73
+ y << Pathname.new(dir).join("#{path}#{ext}")
74
+ end
75
+ end
76
+ end
77
+
78
+ def explicit_relative path
79
+ path.to_s.sub(%r{^(?![\./])}, './')
80
+ end
81
+ end
82
+ end
83
+ end
@@ -0,0 +1,12 @@
1
+ require 'rake'
2
+ require 'motion_blender'
3
+
4
+ namespace :motion_blender do
5
+ task :analyze do
6
+ MotionBlender.analyze
7
+ end
8
+ end
9
+
10
+ %w(build:simulator build:device).each do |t|
11
+ task t => 'motion_blender:analyze'
12
+ end
@@ -0,0 +1,3 @@
1
+ module MotionBlender
2
+ VERSION = '0.1.0'
3
+ end
data/motion/ext.rb ADDED
@@ -0,0 +1,19 @@
1
+ Module.new do
2
+ def require _
3
+ end
4
+
5
+ def require_relative _
6
+ end
7
+
8
+ def motion_require _
9
+ end
10
+
11
+ Object.send :include, self
12
+ end
13
+
14
+ module MotionBlender
15
+ module_function
16
+
17
+ def add _
18
+ end
19
+ end
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'motion_blender/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'motion_blender'
8
+ spec.version = MotionBlender::VERSION
9
+ spec.authors = ['kayhide']
10
+ spec.email = ['kayhide@gmail.com']
11
+
12
+ spec.summary = 'MotionBlender loads ruby gems for RubyMotion'
13
+ spec.description = 'MotionBlender loads ruby gems for RubyMotion'
14
+ spec.homepage = 'https://github.com/kayhide/motion_blender'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = 'exe'
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_runtime_dependency 'parser'
23
+ spec.add_development_dependency 'bundler', '~> 1.10'
24
+ spec.add_development_dependency 'rake', '~> 10.0'
25
+ spec.add_development_dependency 'rspec'
26
+ spec.add_development_dependency 'fuubar'
27
+ spec.add_development_dependency 'pry'
28
+ spec.add_development_dependency 'pry-doc'
29
+ spec.add_development_dependency 'rubocop'
30
+ spec.add_development_dependency 'guard'
31
+ spec.add_development_dependency 'guard-rspec'
32
+ spec.add_development_dependency 'guard-rubocop'
33
+ spec.add_development_dependency 'simplecov'
34
+ spec.add_development_dependency 'simplecov-gem-profile'
35
+ end
metadata ADDED
@@ -0,0 +1,247 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: motion_blender
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - kayhide
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2015-09-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: parser
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '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'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: fuubar
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: pry
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: pry-doc
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: guard
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: guard-rspec
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: guard-rubocop
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: simplecov
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: simplecov-gem-profile
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ description: MotionBlender loads ruby gems for RubyMotion
196
+ email:
197
+ - kayhide@gmail.com
198
+ executables: []
199
+ extensions: []
200
+ extra_rdoc_files: []
201
+ files:
202
+ - ".gitignore"
203
+ - ".rspec"
204
+ - ".rubocop.yml"
205
+ - ".travis.yml"
206
+ - CODE_OF_CONDUCT.md
207
+ - Gemfile
208
+ - Guardfile
209
+ - LICENSE.txt
210
+ - README.md
211
+ - Rakefile
212
+ - bin/console
213
+ - bin/setup
214
+ - lib/motion_blender.rb
215
+ - lib/motion_blender/analyzer.rb
216
+ - lib/motion_blender/analyzer/hooker.rb
217
+ - lib/motion_blender/analyzer/parser.rb
218
+ - lib/motion_blender/rake_tasks.rb
219
+ - lib/motion_blender/version.rb
220
+ - motion/ext.rb
221
+ - motion_blender.gemspec
222
+ homepage: https://github.com/kayhide/motion_blender
223
+ licenses:
224
+ - MIT
225
+ metadata: {}
226
+ post_install_message:
227
+ rdoc_options: []
228
+ require_paths:
229
+ - lib
230
+ required_ruby_version: !ruby/object:Gem::Requirement
231
+ requirements:
232
+ - - ">="
233
+ - !ruby/object:Gem::Version
234
+ version: '0'
235
+ required_rubygems_version: !ruby/object:Gem::Requirement
236
+ requirements:
237
+ - - ">="
238
+ - !ruby/object:Gem::Version
239
+ version: '0'
240
+ requirements: []
241
+ rubyforge_project:
242
+ rubygems_version: 2.4.5.1
243
+ signing_key:
244
+ specification_version: 4
245
+ summary: MotionBlender loads ruby gems for RubyMotion
246
+ test_files: []
247
+ has_rdoc: