-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation is Vague #5
Comments
Any update on this? Following the instructions (even after installing bundler, etc.) simple-view is still not found. In order for my project to compile, I had to grab your includes from the root (while adjusting paths): app.files += Dir.glob(File.join(app.project_dir, 'vendor/SimpleView/.rb')) Curious as to why you're going this route rather than the (seemingly) more simple and common gem install package route? |
source :rubygems
gem 'simple-view', :git => 'https://github.com/seanho/SimpleView.git'
$:.unshift("/Library/RubyMotion/lib")
require 'motion/project'
require 'rubygems'
require 'bundler'
Bundler.require :default
Motion::Project::App.setup do |app|
# ...
end |
Appreciated; these instructions worked. This seems like it should be documented on the README, however, particularly for new (new) users who are unfamiliar with Bundler and how it interfaces with the RM build-process. |
I believe every steps above are actually presented in readme, perhaps what you missing is bundle install? Yep I agreed this could be difficult for ppl not familiar on bundler, perhaps a gem release will help. |
I agree. It's good to remember that due to RubyMotion's accessibility, a lot of people are going to be coming to it without a formal Ruby background. An installation similar to BubbleWrap would be ideal. |
Could you please detail the steps to install the gem in your gemfile? gem install simple-view does not work, and 'your gemfile' is somewhat vague.
The text was updated successfully, but these errors were encountered: