Installing and Configuring Ruby Support

Contributed by Chris Kutler
November 2007
[Revision number: V6.0-3]

This document provides information about downloading, installing, and configuring Ruby support in the NetBeans IDE.

Contents

Downloading Ruby Support
Configuring the IDE to Use Your Own Ruby Installation (Optional)
Managing Gems
Using Database Servers With JRuby
Adding Databases
Registering Databases With the IDE
Deploying a JRuby Application to GlassFish
  Content on this page applies to NetBeans IDE 6.0

Downloading Ruby Support


If you do not have the NetBeans 6.0 IDE, go to the www.netbeans.org, and download a version of the IDE that contains Ruby support. If you have a NetBeans IDE 6.0 installation that does not include Ruby support, complete the following steps to add Ruby support to the IDE.

  1. If your network uses a proxy, choose Tools > Options from the main menu, select the Manual Proxy Settings radio button in the Options dialog box, type the HTTP Proxy and Port for your proxy, and click OK.
  2. Choose Tools > Plugins from the main menu.
  3. In the Plugins dialog box, click the Available Plugins tab, and scroll to the Ruby category, as shown below.

    Figure 1: Plugin Manager

    Plugin Manager
  4. Select the Ruby and Rails checkbox to obtain Ruby support for the NetBeans IDE.
  5. (Optional) Select the JRuby and Rails Distribution checkbox to download and install the JRuby software and the Ruby on Rails framework.

    Note: You must have either Ruby or JRuby software installed on your system in order to use the Ruby and Rails distribution. If you do not have this software, you must either install this plugin, or download and install JRuby or Ruby software before working with Ruby projects in the IDE.
  6. (Optional) Select one or more of the following plugins:

  7. Click Install.

    The NetBeans IDE Installer appears.
  8. In the NetBeans IDE Installer, click Next.
  9. Read the license agreement, then select the I Accept the Terms in All License Agreements radio button, and click Install.
  10. After the installation is completed, select either Restart IDE Now or Restart IDE Later and click Finish.

Configuring the IDE to Use Your Own Ruby Installation (Optional)


The first time that you create or open a Ruby project in the IDE, the IDE checks if you have any other Ruby installations in addition to the bundled JRuby software. If you do, the IDE displays a dialog box asking you to select which software to use.

If you decide to install the Ruby software later, you can complete the following steps to configure the IDE to use your Ruby installation.

  1. In the IDE, choose Tools > Options from the main menu.
  2. Click Ruby, and, if necessary, click the Platform tab.

    If you have not yet opened or created a Ruby project, the first time that you access the Platform tab, the IDE displays a Choose Ruby Interpreter dialog box. The dialog box shows a list of available Ruby installations, as shown in the following figure. If the dialog box does not appear, skip to Step 5.

    Figure 2: Choose Ruby Interpreter Dialog Box

     Choose Ruby Interpreter dialog box
  3. Select the Ruby interpreter that you want to use. If you do not see your Ruby interpreter on the list, click Other.
  4. Click Close.
  5. If you chose Other in Step 3, or if the Choose Ruby Interpreter dialog box did not appear, click the Browse button as shown in the next figure. Navigate to the location of your Ruby binary and click Open.

    Figure 3: Ruby Options Window

    Screenshot of Ruby Options window
    Note: You can also access the Ruby Options window by clicking the Change button in step 2 of the New Project wizard.
  6. Click OK to close the Options dialog box.

For information about obtaining Ruby software, see www.ruby-lang.org, instantrails.rubyforge.org, and locomotive.raaum.org.

Managing Gems


Gems are third-party Ruby libraries. The IDE provides a Ruby Gems manager for adding and maintaining gems. You open the Ruby Gems manager by choosing Tools > Ruby Gems from the main menu. The manager contains the following tabs:

Figure 4: Installed Tab in Ruby Gems Manager

 Installed tab in Ruby Gems manager

Note. The RubyGems wiki page provides information about how to enable the Ruby Gems manager to manage a native Ruby gems repository.

For more information about Ruby Gems, go to www.ruby-lang.org/en/libraries/. For more information about Rails, go to rubyonrails.org. Information about the ActiveRecord-JDBC gem can be found at jruby-extras.rubyforge.org/ActiveRecord-JDBC.

Using Database Servers With JRuby


You can access databases from a JRuby on Rails application in one of two ways.

Note: If your operating system's host file does not contain localhost, use 127.0.0.1 instead. Note also that with some systems, the database setting must be in lowercase letters.

Adding Databases


Several of the NetBeans tutorials require that you create a database for the data tables that are used by the tutorial. The steps for adding a database are different for each database server. The following instructions are for the MySQL and Java DB databases.

Adding MySQL Databases

  1. If it has not already been started, start the database server.
  2. (Optional) Use the following steps to create a user.

    1. At a command prompt, type the following command.

      mysql -u user -p

      Omit the -p if the user does not have a password. Otherwise, when prompted, type the password. The user must have global create user privileges or the insert privilege for the mysql database, such as the root user.
    2. Use syntax similar to the following example to create a user.

      CREATE USER 'fred'@'localhost'
      identified by 'secret';
    3. (Optional) Use syntax similar to the following to specify access privileges. In this example, the user is granted all privileges to all databases on the localhost database server.

      GRANT ALL PRIVILEGES ON *.* TO 'fred'@'localhost';
    4. Type quit and press Enter to exit.
  3. To create a database, use syntax similar to the following at a command prompt.

    mysqladmin -u fred -p create mydb_development

    Omit the -p if the user does not have a password. Otherwise, when prompted, type the password. If you have not created users, you can use root as the user name.

For more information about creating MySQL users and databases, see the MySQL Reference Manual.

Adding Java DB (Derby) Databases


If you installed a version of the IDE that includes the GlassFish application server, the IDE is configured to access the Java DB database that is provided with GlassFish. You can use the following steps to add a Java DB database from the IDE.

  1. From the main menu of the IDE, choose Tools > Java DB Database > Create Database.
  2. In the Create Java DB Database dialog box, type the Database Name, User Name, and optional Password, as shown in the following example below.

    Figure 6: Create Java DB Database Dialog Box

    Create Java DB Database dialog box
  3. (Optional) To specify a different location for the database, click Settings, then click the Browse button for the Database Location, navigate to the folder in which you want the database to reside, and click Open. Click OK to close the Java DB Settings dialog box.
  4. Click OK.

    The IDE creates the database and adds a node to the Databases section in the Services window, as shown in the next figure.

    Figure 7: Database Node in Services Window

    Database node in Services window

Registering Databases With the IDE


You do not need to register a database with the IDE to use it from your Ruby project. However, by registering a database you can create and view tables, and exercise SQL commands directly from the IDE.

Registering Database Servers With the IDE


First, you must register the database server with the IDE. The IDE has been tested with the following drivers:

MySQL, PostgreSQL, and, optionally, Java DB are already registered with the IDE. The following steps show how to register other database servers with the IDE.

  1. If you haven't already, obtain a JDBC 3.0 compliant driver for your database server.

    In the next step, you specify the path to this driver. The IDE uses the JDBC driver to access the database schema and to query the databases. If the database client driver is not fully JDBC 3.0 compliant, you might have problems using the IDE's database tools.

  2. In the Services window, expand Databases, right-click the Drivers node and choose New Driver from the pop-up menu.

    The New JDBC Driver dialog box appears.
  3. Click Add, then navigate to and select the driver's jar file, and click Open.

    The New JDBC Driver dialog box displays the settings for the selected driver.
  4. Click OK to close the New JDBC Driver dialog box.

    The IDE adds a node for your database server under the Drivers node.

Establishing a Connection to a Database Instance


The following steps show how to create a connection from the IDE to a database instance, such as the example mydb_development database described in the previous section.

  1. In the Services window, right-click the Databases node and choose New Connection.

    The New Database Connection dialog box appears.
  2. Select your driver from the Name drop-down list, such as MySQL (Connector/J driver).
  3. Using the pattern shown in the Database URL text box as a guide, type the database's URL into the text box. For example, type jdbc:mysql://localhost:3306/mydb_development.
  4. Provide the user name, and provide the password if it is required, as shown in the next figure.

    Figure 8: New Database Connection

    Selecting JDBC Database Access
  5. Click OK.
  6. When the connection is established, click OK to dismiss the dialog box.

    The IDE adds a node for the connection under the Databases node. The badge for the node shows that the connection is open. When you next start the IDE, the badge will be broken to indicate that the connection is closed. To reconnect, right-click the node and choose connect, provide your password if it is required, and click OK.

Deploying a JRuby Application to GlassFish


By default, your JRuby applications run in the WEBrick browser. If you want to deploy a JRuby application to the GlassFish application server, you can package the application and its dependencies in a web archive (WAR) file. Then you can make the WAR file available to the application server, as shown in the following steps.

  1. The deployed application will use the production database. Open the database.yml file to ensure that the production configuration is set correctly.
  2. When you create your JRuby application, you are given the option to add rake targets to support application server deployment, as shown in the following figure. If you intend to deploy to GlassFish, you should select this checkbox.

    Figure 9: Option to Provide WAR Rake Targets

    Option to Provide WAR Rake Targets
    If you have an existing JRuby project that does not offer this rake target, complete the following steps to add the Goldspike plugin to the project. This plugin adds rake tasks that enable you to create WAR files.

    1. In the Projects window, right-click the project's node and choose Rails Plugins from the pop-up menu.
    2. In the Rails Plugins dialog box, click the New Plugins tab.
    3. If you do not see an entry for goldspike, complete the following steps to register the repository that provides the goldspike plugin.

      1. Click the Repositories tab.
      2. Click Add URL,
      3. In the Add Repository URL dialog box, type http://jruby-extras.rubyforge.org/svn/trunk/rails-integration/plugins and click OK.
      4. After the repository is added, click Close.
      5. Click the New Plugins tab. You should now see an entry for goldspike.
    4. Select the entry for goldspike, and click Install.
    5. Click OK to start the installation.
    6. Close both the Installation and the Rails Plugins dialog boxes.
    7. Right-click the project's node and choose Run Rake Task > Refresh List from the pop-up menu.
  3. To package your application in a WAR file, right-click the project's node and choose Run Rake Task > War > Standalone > Create.

    The IDE creates the WAR file and puts the file in the project's top folder.
  4. If you are using the JDBC adapter, put a copy of your database server's JDBC client driver in glassfish-install-dir/lib and start (or restart) the GlassFish server.

    At the time of this writing, you must use the JDBC adapter unless you are connecting to a MySQL database.
  5. Place a copy of the newly created WAR file into the GlassFish autodeploy folder. For example, copy projects-folder/MyRubyApp/MyRubyApp.war to glassfish-install-dir/domains/domain1/autodeploy.
  6. In a browser, go to the URL for the application, for example, http://localhost:8080/MyRubyApp.

Next Steps



Send Us Your Feedback