• This repository has been archived on 19/Apr/2023
  • Stars
    star
    470
  • Rank 89,915 (Top 2 %)
  • Language
    Ruby
  • License
    Apache License 2.0
  • Created almost 15 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

TorqueBox Ruby Platform

No Longer Maintained

The TorqueBox project is no longer actively developed nor maintained. Do not use it for development or production usage unless you are willing and able to fix issues as they come up.

TorqueBox

This is TorqueBox 4 and represents a substantial change in direction from previous TorqueBox releases. We're moving to a lightweight, embedded model that runs without any Java application server, at the expense of a few of the more enterprisy features. For users that want to run in a Java application server or need those enterprisy features, we'll provide a way to take your TorqueBox application and run it unmodified on a stock WildFly installation.

Documentation

We have various guides available to help with installation, migration, usage, and deployment of TorqueBox 4.

Quickstart for running TorqueBox

Requirements

TorqueBox requires JRuby 1.7.x (in 1.9 or 2.0 mode) or JRuby 9.x.x running on Java 7+. The code has only been tested on JRuby 1.7.6 and higher but should work on earlier versions.

Installation

Read the Installation Guide for installation details.

Running directly

From inside your Rack application's root directory:

torquebox run

Rails

Ensure torquebox is in your Gemfile, then:

rails s torquebox

Rack

rackup -s torquebox

Motivation

We want a smaller, more modular TorqueBox that is easier to get started with, embeddable, and lets users bring in additional functionality as-needed. More details of our motivation and community feedback are expressed in an email thread from the torquebox-user mailing list.

Technology

TorqueBox runs on JRuby and sits on top of a new lightweight, pluggable, polyglot server codenamed WunderBoss (at least for now). All the new features of TorqueBox will be implemented in WunderBoss then exposed via a Ruby API in the TorqueBox project. This lets other projects, in other languages, reuse the same functionality by creating small language-specific API wrappers.

The web portion of WunderBoss uses JBoss Undertow, which is also the same web server used in WildFly (the successor to JBoss Application Server).

We aim to reuse the same underlying components as WildFly so that TorqueBox applications can run on top of WildFly in addition to running without it, to give users an option between a full-blown Java application server and a very lightweight, minimal server.

Current status

Right now TorqueBox 4 provides a high-performance Rack implementation for web applications and basic APIs for messaging, caching, and scheduled jobs. The Rack support is considered production-ready, but the messaging, caching, and scheduling implementations are still in a bit more flux.

Roadmap

We're developing TorqueBox 4 while also maintaining TorqueBox 3, and we expect it to take some time before TorqueBox 4 comes out of alpha and betas and into a final release.

Building TorqueBox

bundle install
rake build

Running specs

rake spec

Running integration tests

Make sure phantomjs is available on your $PATH - http://phantomjs.org/download.html.

The first time you run the integration tests may take longer as bundler gets invoked for each test application to install its dependencies. Subsequent runs with the same JRuby installation should be faster.

cd integration-tests
rake spec

Running a single integration test

cd integration-tests
SPEC=spec/basic_sinatra_spec.rb rake spec

Running specs with more verbose output

DEBUG=true rake spec

Running all integration test variants (disk, jar, wildfly)

There are several variants of integration tests. Each runs the same applications and same specs, but packaged in different ways. This takes quite a bit longer, but is what CI runs.

rake spec:all

Installing from source

rake install

Releasing

Preparation

TorqueBox 4 is released from the master branch of torquebox/torquebox-release.

Set up this repository as an additional remote for your workspace:

git remote add release [email protected]:torquebox/torquebox-release.git

Ensure that the master branch has the contents you wish to release. Using the -f flag to force is allowed in this case, since the torquebox-release repository is not a public-facing human-cloneable repository.

git push release master:master -f

Perform the build

Using the build system, select the torquebox4-release job, entering in the branch to release from (usually 'master'), the version to release, and the next version after release.

If something goes wrong in the release job and it needs to run again, be sure to reset the torquebox-release repository with the correct code first:

git push release master:master -f

Deploy RubyGems

After the job complete successfully, the generated RubyGems will need to be manually deployed. Download them from the job and push each using:

gem push <gem_name>.gem

You'll have to be an owner of the gems to do this. Bug bbrowning, bobmcw, or tcrawley if you are not.

Publish the release API documentation

The release API docs are built by the release job on CI. Download those and put them a _4x_docs//yardoc folder in the torquebox.org git repo.

Push changes from the release repository to the official repository

git fetch release --tags
git merge release/master
git push origin master
git push origin <release_tag>

Release the project in JIRA

Announce it

Post it on torquebox.org

Notify the torquebox-users@ list

Tweet it.

Set the /topic in #torquebox IRC channel using ChanServ (if you can).

More Repositories

1

torquebox-lite

A smaller, web-only version of TorqueBox
Ruby
42
star
2

backstage

Queue/Topic/Job viewer for TorqueBox
Ruby
38
star
3

torquespec

Integration testing with TorqueBox
Ruby
17
star
4

torquebox-console

A Pry console for TorqueBox.
Ruby
16
star
5

speedmetal

SpeedMetal - Benchmark tests for TorqueBox and Competitors
Ruby
15
star
6

stompbox

Prototype app for git deployment to TorqueBox triggered by github deploy hooks
Ruby
13
star
7

chef-cookbooks

TorqueBox Chef Cookbooks
Ruby
12
star
8

torquebox.org

TorqueBox website
HTML
10
star
9

torquebox-openshift-express

Please use https://github.com/torquebox/openshift-quickstart for running TorqueBox on OpenShift
Ruby
9
star
10

stomp-chat-demo

JavaScript
6
star
11

presentations

Our presentation sources
JavaScript
5
star
12

openshift-quickstart

Run TorqueBox on Red Hat's OpenShift
Shell
5
star
13

websocket-client

Pure Ruby WebSocket client.
Ruby
4
star
14

jruby9-maven-plugins

JRuby9 Next Generation Maven Mojo
Java
4
star
15

torquebox-release

TorqueBox Release Engineering - DO NOT CLONE
Ruby
4
star
16

training

Ruby
3
star
17

kitchen-sink

A sample rails 3 app demonstrating TorqueBox features
Ruby
2
star
18

ballast-sinatra

Sinatra sample application
Ruby
2
star
19

torquebox-appliances

Boxgrinder appliance definitions and RPM spec files for building a TorqueBox AMI
Ruby
2
star
20

chirpr

Sample Sinatra Application for TorqueBox
Ruby
2
star
21

torquebox-webconsole

An extension to rack-webconsole that allows attaching the console to any TorqueBox app runtime.
Ruby
2
star
22

torquebox-irc-bot

Example of using TorqueBox services to run an IRC Bot with a web interface
Ruby
2
star
23

ballast-bundled

Bundled sample app
Ruby
1
star
24

ballast-rack

Rack sample application
Ruby
1
star
25

ballast-rails

Rails sample application
Ruby
1
star
26

torquebreak

1
star
27

rumpler

TorqueBox-specific Gemfile-to-RPM tool
Ruby
1
star
28

torquebox-style

The contemporary stylings of TorqueBox
JavaScript
1
star
29

torquebox-rpm

PLEASE IGNORE -- THIS REPO IS DISCONTINUED TorqueBox RPMs
1
star
30

fu_cp

Ruby
1
star
31

app-turds

Jim's various app turds
Ruby
1
star