be happy with ruby on rails - ecosystem

Post on 04-Aug-2015

43 Views

Category:

Software

2 Downloads

Preview:

Click to see full reader

TRANSCRIPT

be happy withruby on rails

* ecosystem

lucas renan

gurusorocaba

wanna be adeveloper?

you can be a happyprogrammer

yukihiro matsumoto

"matz"

programming languageruby

os xlinux

david heinemeier hansson

"dhh"

web frameworkruby on rails

adopted by a lot ofstartups

$ gem install rails

Gemfile

source 'https://rubygems.org'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '4.2.1' # Use sqlite3 as the database for Active Record gem 'sqlite3' # Use SCSS for stylesheets gem 'sass-rails', '~> 5.0’ # Use Uglifier as compressor for JavaScript assets gem 'uglifier', '>= 1.3.0' # Use CoffeeScript for .js.coffee assets and views gem 'coffee-rails', '~> 4.1.0’

asset pipeline

app/stylesheets/application.css

/* *= require_tree . *= require_self */

app/javascripts/application.js

//= require jquery //= require jquery_ujs //= require_tree .

version control

code quality

continous integration

deployment

$ git push heroku master

monitoring

where tolearn?

show me in action!

thanks :)

top related