Dillinger is a cloud-enabled, mobile-ready, offline-storage compatible, AngularJS-powered HTML5 Markdown editor.
You are working on a Rails app that uses a gem named abc. This gem is hosted on RubyGems and the source code of the gem is available at https://github.com/your-username/abc.
You created a new branch locally for your gem (new-feature). You wanted to modify the gem and load it directly to your local Rails app. And, you don't want to push the gem changes to GitHub and publish the gem to RubyGems just yet.
You want all the changes that you made in your local gem directory get reflected immediately in your local Rails app without requiring you to run gem build and gem install command in the gem's local directory.
I hereby claim:
- I am dakad on github.
- I am davida_apptweak (https://keybase.io/davida_apptweak) on keybase.
- I have a public key ASC8LZF7SyIhcdudsvPVZfD_VRyf1Isw5Sm3LCKn0wDf6go
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- "extension.lua" | |
| -- VLC Extension basic structure (template): ---------------- | |
| -- Install | |
| -- Windows: %APPDATA%/vlc/lua/extensions/basic.lua | |
| -- Mac: /Applications/VLC/.../lua/extensions/basic.lua | |
| -- Linux: ~/.local/share/vlc/lua/extensions/basic.lua | |
| function descriptor() | |
| return { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Source: https://stackoverflow.com/a/15502829 | |
| require "grape" | |
| require "grape-entity" | |
| require "json" | |
| module JSendSuccessFormatter | |
| def self.call object, env | |
| { :status => 'success', :data => object }.to_json | |
| end |
OlderNewer