
Of course Ruby is just another programming language and RoR is where the web thing starts. Ruby -> RoR is like Python -> Django.
This was my gemfile back then, you can see all the different gems we used, some for testing only and some some just to try them out:
- Code: Select all
source 'https://rubygems.org'
gem 'rails', '~> 3.2.12'
gem 'sqlite3', '1.3.7'
gem 'jquery-rails'
gem 'bootstrap-sass'
gem 'haml'
gem 'simple_form'
gem 'devise'
gem 'inherited_resources'
gem 'foreigner'
gem 'cancan'
gem 'rolify'
gem 'spork'
gem 'thin'
group :development do
gem 'haml-rails'
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem 'rspec-rails'
gem 'faker'
gem "factory_girl_rails"
end
group :test do
gem 'capybara'
gem 'spork'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'uglifier', '>= 1.0.3'
end
group :production do
gem 'mysql2'
gem 'exception_notification', '~> 2.6'
gem 'therubyracer', '0.10.2'
end
group :deployment do
gem 'capistrano'
gem 'rvm-capistrano'
end
I also wanted to try out and compare Django to RoR, but I haven't found the time yet. Maybe you can?
