Code Monkey home page Code Monkey logo

heroku-buildpack-jruby's Introduction

Heroku buildpack for JRuby

A buildpack to fast and easy use JRuby on Heroku. Just create a Heroku app like this:

heroku create -s cedar --buildpack https://github.com/jruby/heroku-buildpack-jruby.git 

It will download and unpack JRuby from jruby.org, install Bundler and run bundle install and then use your Procfile.

Example Procfile:

web: bin/trinidad -t -r -p $PORT -e $RACK_ENV

Note: You do normally not want to use bundle exec with JRuby. Use the binstubs (in bin/) instead, and put require 'bundler/setup' before any other require.

Current JRuby version: 1.7.0

For now only supports 1.9 mode, open an issue if you need 1.8 mode.

Example application: github.com/carlhoerberg/heroku-jruby-example

Assets

To get the assets precompiled during slug compilation take the following actions:

  1. Replace therubyracer with therubyrhino in the Gemfile (and then run bundle and commit)
  2. Add config.assets.initialize_on_precompile = false to config/application.rb
  3. Change config.serve_static_assets to true in config/environments/production.rb
  4. (Optional) Replace uglifier with closure-compiler and add config.assets.js_compressor = :closure to config/environments/production.rb, to get faster compile times.

Logging

To get Heroku to pick up Rails logs you have to add the following to config/environments/production.rb

STDOUT.sync = true
config.logger = Logger.new(STDOUT) 

Servers

Recommended web servers are:

A comparison can be found here: carlhoerberg.github.com/blog/2012/03/31/jruby-application-server-benchmarks/

Multithreading

To get the real benefits of JRuby you should enable multithreading, both in the application server of choice as well as in Rails.

Rails

Add config.threadsafe! to config/environments/production.rb

Trinidad

Add the --threadsafe flag as a command line argument to Trinidad.

web: bin/trinidad --threadsafe --rackup -p $PORT -e $RACK_ENV

License terms

Copyright (C) 2012 by Carl Hörberg

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

heroku-buildpack-jruby's People

Contributors

carlhoerberg avatar rykov avatar

Watchers

 avatar James Cloos avatar  avatar

Forkers

leobessa

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.