under-os.gemspec in under-os-1.2.0 vs under-os.gemspec in under-os-1.2.1
- old
+ new
@@ -14,21 +14,22 @@
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
- gem.post_install_message = %Q{
- If you want to use the UnderOS template with RubyMotion, please run the following:
+ gem.add_development_dependency 'rake'
+ gem.add_development_dependency 'motion-facon'
- mkdir -p ~/Library/RubyMotion/template/uos
- git clone https://github.com/under-os/under-os-template.git ~/Library/RubyMotion/template/uos
+ gem.extensions = ['ext/extconf.rb']
+ gem.post_install_message = <<-END
+ = UnderOS #{UnderOs::VERSION} =
- Then just run the following to generate your first project:
+ To get started run the following:
- motion create awesomness --template=uos
- }
+ motion create awesomeness --template=uos
+ cd awesomeness
+ rake
- gem.add_development_dependency 'rake'
- gem.add_development_dependency 'motion-facon'
+ END
end