Я использую следующее руководство для начала работы с rails для Ubuntu 9.10.
http://guides.rails.info/getting_started.html
Я установил как ruby, так и gem.
gokul @ gokul-laptop: ~ $ ruby -v
ruby 1.8.7 (2009-06-12 patchlevel 174) [i486-linux]
gokul @ gokul-laptop: ~ $ gem -v
1.3.6
Gokul @ Gokul-ноутбук: ~ $
Для рельсов,
gokul @ gokul-laptop: ~ $ sudo gem install rails
не дает никакого ответа.
поэтому использовал менеджер пакетов synaptic для его установки. И, похоже, правильно установил.
gokul @ gokul-laptop: ~ $ rails
Использование: / usr / bin / rails / path / to / your / app [опции]
Опция:
-r, --ruby = путь Путь к выбранному вами двоичному файлу Ruby (в противном случае сценарии используют env, текущий путь диспетчеров).
Default: /usr/bin/ruby1.8
-d, --database=name Preconfigure for selected database (options: mysql/oracle/postgresql/sqlite2/sqlite3/frontbase/ibm_db).
Default: sqlite3
-D, --with-dispatchers Add CGI/FastCGI/mod_ruby dispatches code to generated application skeleton
Default: false
--freeze Freeze Rails in vendor/rails from the gems generating the skeleton
Default: false
-m, --template=path Use an application template that lives at path (can be a filesystem path or URL).
Default: (none)
Информация о рельсах:
-v, --version Show the Rails version number and quit.
-h, --help Show this help message and quit.
Общие параметры:
-p, --pretend Run but do not make any changes.
-f, --force Overwrite files that already exist.
-s, --skip Skip files that already exist.
-q, --quiet Suppress normal output.
-t, --backtrace Debugging: show backtrace on errors.
-c, --svn Modify files with subversion. (Note: svn must be in path)
-g, --git Modify files with git. (Note: git must be in path)
Описание:
Команда 'rails' создает новое приложение Rails со значением по умолчанию
структура и конфигурация каталогов по указанному вами пути.
* * Пример тысяча тридцать один:
rails ~ / Code / Ruby / weblog
This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
See the README in the newly created application to get going.
Gokul @ Gokul-ноутбук: ~ $
Папка приложения
создается со всеми необходимыми папками. Проблема начинается со следующих команд ...
gokul @ gokul-laptop: ~ $ sudo gem install bundler
[sudo] пароль для gokul:
Успешно установленный пакет-0.9.24
1 драгоценный камень установлен
Установка документации ri для bundler-0.9.24 ...
Установка документации RDoc для bundler-0.9.24 ...
gokul @ gokul-laptop: ~ $ bundle install
Не удалось найти Gemfile
Gokul @ Gokul-ноутбук: ~ $
при входе в базу данных sqlite3 по умолчанию, похоже, установлен правильно.
gokul @ gokul-laptop: ~ $ sqlite3
SQLite версии 3.6.16
Введите ".help" для получения инструкций
Введите операторы SQL, оканчивающиеся на ";"
SQLite>
Страница приветствия на борту не может быть найдена в (http://localhost:3000) после выполнения следующих команд ...
gokul @ gokul-laptop: ~ / Desktop $ rails blog
create
create app/controllers
create app/helpers
create app/models
create app/views/layouts
create config/environments
create config/initializers
create config/locales
create db
create doc
create lib
create lib/tasks
create log
create public/images
create public/javascripts
create public/stylesheets
create script/performance
create test/fixtures
create test/functional
create test/integration
create test/performance
create test/unit
create vendor
create vendor/plugins
create tmp/sessions
create tmp/sockets
create tmp/cache
create tmp/pids
create Rakefile
create README
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create config/database.yml
create config/routes.rb
create config/locales/en.yml
create db/seeds.rb
create config/initializers/backtrace_silencers.rb
create config/initializers/inflections.rb
create config/initializers/mime_types.rb
create config/initializers/new_rails_defaults.rb
create config/initializers/session_store.rb
create config/environment.rb
create config/boot.rb
create config/environments/production.rb
create config/environments/development.rb
create config/environments/test.rb
create script/about
create script/console
create script/dbconsole
create script/destroy
create script/generate
create script/runner
create script/server
create script/plugin
create script/performance/benchmarker
create script/performance/profiler
create test/test_helper.rb
create test/performance/browsing_test.rb
create public/404.html
create public/422.html
create public/500.html
create public/index.html
create public/favicon.ico
create public/robots.txt
create public/images/rails.png
create public/javascripts/prototype.js
create public/javascripts/effects.js
create public/javascripts/dragdrop.js
create public/javascripts/controls.js
create public/javascripts/application.js
create doc/README_FOR_APP
create log/server.log
create log/production.log
create log/development.log
create log/test.log
gokul @ gokul-laptop: ~ / Desktop $ cd blog
gokul @ gokul-laptop: ~ / Рабочий стол / блог $ rake db: create
(в / home / gokul / рабочий стол / блог)
gokul @ gokul-laptop: ~ / Рабочий стол / блог $ rails server
create
create app/controllers
create app/helpers
create app/models
create app/views/layouts
create config/environments
create config/initializers
create config/locales
create db
create doc
create lib
create lib/tasks
create log
create public/images
create public/javascripts
create public/stylesheets
create script/performance
create test/fixtures
create test/functional
create test/integration
create test/performance
create test/unit
create vendor
create vendor/plugins
create tmp/sessions
create tmp/sockets
create tmp/cache
create tmp/pids
create Rakefile
create README
create app/controllers/application_controller.rb
create app/helpers/application_helper.rb
create config/database.yml
create config/routes.rb
create config/locales/en.yml
create db/seeds.rb
create config/initializers/backtrace_silencers.rb
create config/initializers/inflections.rb
create config/initializers/mime_types.rb
create config/initializers/new_rails_defaults.rb
create config/initializers/session_store.rb
create config/environment.rb
create config/boot.rb
create config/environments/production.rb
create config/environments/development.rb
create config/environments/test.rb
create script/about
create script/console
create script/dbconsole
create script/destroy
create script/generate
create script/runner
create script/server
create script/plugin
create script/performance/benchmarker
create script/performance/profiler
create test/test_helper.rb
create test/performance/browsing_test.rb
create public/404.html
create public/422.html
create public/500.html
create public/index.html
create public/favicon.ico
create public/robots.txt
create public/images/rails.png
create public/javascripts/prototype.js
create public/javascripts/effects.js
create public/javascripts/dragdrop.js
create public/javascripts/controls.js
create public/javascripts/application.js
create doc/README_FOR_APP
create log/server.log
create log/production.log
create log/development.log
create log/test.log
Gokul @ Gokul-ноутбук: ~ / Desktop / блог $
надеюсь, кто-нибудь может мне помочь с этим ...