Linux 下安装JRuby
安裝ruby
cd
git clone https://github.com/rbenv/rbenv.git ~/.rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
git clone https://github.com/rbenv/ruby-build.git ~/.rbenv/plugins/ruby-build
echo 'export PATH="$HOME/.rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bashrc
exec $SHELL
rbenv install 2.3.1
rbenv global 2.3.1
ruby -v
安裝Bundler
gem install bundler
安裝NodeJS
node -vcurl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash -
sudo apt-get install -y nodejs
安裝Rails
gem install rails -v 4.2.6
rbenv rehash
版本號(hào)可以通過(guò)tab提示獲得最新版本號(hào)
第一個(gè)網(wǎng)站
使用SQLite3測(cè)試:
#### If you want to use SQLite (not recommended)
rails new myapp
#### If you want to use MySQL
rails new myapp -d mysql
#### If you want to use Postgres
# Note that this will expect a postgres user with the same username
# as your app, you may need to edit config/database.yml to match the
# user you created earlier
rails new myapp -d postgresql
# Move into the application directory
cd myapp
# If you setup MySQL or Postgres with a username/password, modify the
# config/database.yml file to contain the username/password that you specified
# Create the database
rake db:create
rails server
打開(kāi) http://localhost:3000 即看到封面。
第一個(gè)CRUD功能
rails generate scaffold Person first_name:string last_name:string phone_number:string address:text
rake db:migrate
rake db:migrate RAILS_ENV=production
現(xiàn)在打開(kāi) http://localhost:3000/people 即有一個(gè)人員管理CRUD頁(yè)面。
Jruby下運(yùn)行Rails
安裝Java
先卸載openjdk:
yum -y remove java*
安裝oracle jdk
sudo rpm -i jdk-8u112-linux-x64.rpm
安裝Jruby
56 rbenv install --list
57 rbenv global jruby-9.1.5.0
58 jruby –v
修改Gemfile
去掉自動(dòng)生成的:
gem 'activerecord-jdbcsqlite3-adapter'
在末尾增加:
platform :jruby do
gem 'activerecord-jdbc-adapter', git: 'https://github.com/jruby/activerecord-jdbc-adapter.git', branch: 'rails-5'
gem 'activerecord-jdbcsqlite3-adapter', git: "https://github.com/jruby/activerecord-jdbc-adapter.git", branch: 'rails-5'
gem 'listen'
end
運(yùn)行
bundle install
jruby –S rails server
總結(jié)
以上是生活随笔為你收集整理的Linux 下安装JRuby的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: 微信绿包添加方法是什么 微信收钱绿包添加
- 下一篇: 三国杀神荀彧技能是什么 神荀彧强度怎么样