https://github.com/digitalmoksha/motion-qlcommonmark
RubyMotion wrapper for QLCommonMark QuickLook generator
https://github.com/digitalmoksha/motion-qlcommonmark
qlcommonmark quicklook rubymotion
Last synced: about 2 months ago
JSON representation
RubyMotion wrapper for QLCommonMark QuickLook generator
- Host: GitHub
- URL: https://github.com/digitalmoksha/motion-qlcommonmark
- Owner: digitalmoksha
- License: mit
- Created: 2017-04-14T12:35:15.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-04T11:21:46.000Z (about 9 years ago)
- Last Synced: 2026-02-27T09:31:31.631Z (4 months ago)
- Topics: qlcommonmark, quicklook, rubymotion
- Language: Ruby
- Size: 349 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# motion-qlcommonmark
RubyMotion wrapper for the QuickLook generator [QLCommonMark](https://github.com/digitalmoksha/QLCommonMark)
## Installation
Add this line to your application's Gemfile:
gem 'motion-qlcommonmark'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install motion-qlcommonmark
## Usage
When you do a build, the QuickLook generator is automatically installed, embedded into your app, and code signed with current signing certificate.
If you don't wish for the generator to be signed, you can add this to your `Rakefile`
```
Motion::Project::App.setup do |app|
app.qlcommonmark do |config|
config.signing_enabled = false
end
end
```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request