Slide 1

Slide 1 text

Ruby 2.0 on Rails @a_matsuda

Slide 2

Slide 2 text

Ruby 2.0 (on Rails)

Slide 3

Slide 3 text

whoami Akira Matsuda GitHub: amatsuda Twitter: @a_matsuda CRuby core since 1.year.ago

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

begin

Slide 6

Slide 6 text

Ruby 2.0

Slide 7

Slide 7 text

Ruby 2.0 "100% compatible"

Slide 8

Slide 8 text

Ruby 2.0 "100% compatible" (?)

Slide 9

Slide 9 text

Ruby 2.0 "100% compatible" 100% awesome new features!

Slide 10

Slide 10 text

Ruby 2.0 "100% compatible" + 100% awesome new features! = Ruby 2.0.0!

Slide 11

Slide 11 text

New Features

Slide 12

Slide 12 text

New Features "feature freeze" - 1.week.ago

Slide 13

Slide 13 text

New Features Re nements Module#prepend Enumerable#lazy Keyword Arguments

Slide 14

Slide 14 text

Re nements

Slide 15

Slide 15 text

@shugomaeda

Slide 16

Slide 16 text

@shugomaeda Matz's boss at NaCl http://www.netlab.jp/ Ruby Association http://www.ruby.or.jp

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

What are Re nements? A mechanism to extend Classes and Modules locally Lexically scoped Safer and cleaner than open-class monkey patching

Slide 19

Slide 19 text

background Monkey patching affects all instances

Slide 20

Slide 20 text

Monkey patching affects all instances class Person; attr_accessor :name; end matz = Person.new matz.name = 'matz' matz.age #=> NoMethodError: undefined method `age' class Person; attr_accessor :age; end shugo = Person.new shugo.name = 'shugo' shugo.age = 34 matz.age #=> nil

Slide 21

Slide 21 text

Re nements

Slide 22

Slide 22 text

Re nements Module#re ne Kernel#using

Slide 23

Slide 23 text

Module#re ne

Slide 24

Slide 24 text

Module#re ne module Foo refine String do def say puts "#{self}!!" end end 'hello'.say end #=> hello!!

Slide 25

Slide 25 text

Module#re ne module Foo refine String do def say; puts "#{self}!!"; end end 'hello'.say end #=> hello!! 'world'.say #=> NoMethodError: undefined method `say' for "world":String

Slide 26

Slide 26 text

Kernel#using

Slide 27

Slide 27 text

using Kernel#using module Foo refine String do def say; puts "#{self}!!"; end end end class Bar using Foo def hello 'hello'.say end end Bar.new.hello #=> hello!!

Slide 28

Slide 28 text

using using in Module module Foo refine String do def say; puts "#{self}!!"; end end end module Bar using Foo end Bar.module_eval { 'hello'.say } #=> hello!!

Slide 29

Slide 29 text

using anonymous Module module Foo refine String do def say; puts "#{self}!!"; end end end Module.new { using Foo }.module_eval { 'hello'.say } #=> hello!! 'world'.say #=> NoMethodError: undefined method `say' for "world":String

Slide 30

Slide 30 text

using lambda / Proc? module Foo refine String do def say; puts "#{self}!!"; end end; end -> { using Foo 'hello'.say }.call #=> hello!! 'world'.say #=> world!!

Slide 31

Slide 31 text

using lambda + Module module Foo refine String do def say; puts "#{self}!!"; end end; end Module.new { using Foo }.module_eval { -> { 'hello'.say } }.call #=> hello!! 'world'.say #=> undefined method `say' for "world":String

Slide 32

Slide 32 text

examples

Slide 33

Slide 33 text

Re nements example (1) rspec-re nements

Slide 34

Slide 34 text

background

Slide 35

Slide 35 text

RSpec describe RSpec do its(:syntax) { should be_elegant } end

Slide 36

Slide 36 text

rspec-expectations/lib/rspec/ expectations/syntax.rb (edited) module RSpec::Expectations::Syntax def enable_should(syntax_host = default_should_host) BasicObject.module_eval do def should(matcher=nil, message=nil, &block) ::RSpec::Expectations::PositiveExpectationHand ler.handle_matcher(self, matcher, message, &block) end def should_not(matcher=nil, message=nil, &block) ::RSpec::Expectations::NegativeExpectationHand ler.handle_matcher(self, matcher, message, &block) end end end end

Slide 37

Slide 37 text

global pollution Object.new.should #=> NoMethodError: undefined method `should' require 'rspec' Object.new.should => #>

Slide 38

Slide 38 text

rspec-re nements https://github.com/amatsuda/ rspec-re nements % gem i rspec-re nements

Slide 39

Slide 39 text

rspec-re nements.rb require 'rspec' BasicObject.class_eval do undef :should undef :should_not end module RSpec::Refinements::ExampleMethods refine BasicObject do def should(matcher=nil, message=nil, &block) ::RSpec::Expectations::PositiveExpectationHandler.handle_matcher(self, matcher, message, &block) end def should_not(matcher=nil, message=nil, &block) ::RSpec::Expectations::NegativeExpectationHandler.handle_matcher(self, matcher, message, &block) ennnd RSpec.configure do |c| c.before :all do RSpec.world.example_groups.each do |eg| eg.send :using, RSpec::Refinements::ExampleMethods ennnd # copied from rspec-expectation/ expectations/syntax.rb # ugly but works...

Slide 40

Slide 40 text

rspec-re nements/spec/ foo_spec.rb class Foo def tes self.should end end describe Foo do # make sure the `should` method actually works inside an Example it { should be_a Foo } specify { expect { Foo.new.tes }.to raise_error(NoMethodError, / \Aundefined method `should' for #

Slide 41

Slide 41 text

Re nements example (2) activerecord-re nements

Slide 42

Slide 42 text

Feature User.where('age >= ?', 18)

Slide 43

Slide 43 text

Feature User.where('age >= ?', 18) => User.where { :age >= 18 }

Slide 44

Slide 44 text

activerecord-re nements https://github.com/amatsuda/ activerecord-re nements % gem i activerecord- re nements

Slide 45

Slide 45 text

activerecord-re nements/lib/ active_record/re nements.rb (1) module ActiveRecord::Refinements module WhereBlockSyntax refine Symbol do %i[== != =~ > >= < <=].each do |op| define_method(op) {|val| [self, op, val] } ennnnd

Slide 46

Slide 46 text

activerecord-re nements/lib/ active_record/re nements.rb (2) module ActiveRecord::Refinements module QueryMethods def where(opts = nil, *rest, &block) if block col, op, val = Module.new { using ActiveRecord::Refinements::WhereBlockSyntax }.module_eval &block arel_node = case op when :!= table[col].not_eq val when :=~ table[col].matches val when :> table[col].gt val when ... # (snip) end clone.tap do |relation| relation.where_values += build_where(arel_node) end else super ennnnd

Slide 47

Slide 47 text

activerecord-re nements/lib/ activerecord-re nements.rb module ActiveRecord::QueryMethods prepend ActiveRecord::Refinements::QueryMethods end

Slide 48

Slide 48 text

activerecord-re nements/ spec/where_spec.rb describe 'Symbol enhancements' do describe '#!=' do subject { User.where { :name != 'nobu' }.to_sql } it { should =~ /WHERE \("users"."name" != 'nobu'\)/ } end describe '#>=' do subject { User.where { :age >= 18 }.to_sql } it { should =~ /WHERE \("users"."age" >= 18\)/ } end describe '#=~' do subject { User.where { :name =~ 'tender%' }.to_sql } it { should =~ /WHERE \("users"."name" LIKE 'tender%'\)/ } end context 'outside of where block' do specify { expect { :omg > 1 }.to raise_error ArgumentError } end end

Slide 49

Slide 49 text

Re nements example (3) activesupport-re nements

Slide 50

Slide 50 text

background

Slide 51

Slide 51 text

ActiveSupport core_ext others

Slide 52

Slide 52 text

core_ext class Numeric def days ActiveSupport::Duration.new(self * 24.hours, [[:days, self]]) end end p 3.days #=> 259200 class String def blank? self !~ /[^[:space:]]/ end end p ' '.blank? #=> true

Slide 53

Slide 53 text

"No more free lunch" https://github.com/rails/rails/commit/ ab32126 "require 'active_support' no longer or ders the whole menu of core extension s. Ask for just what you need: e.g. requ ire 'active_support/core/ time' to use timezones, durations, and stdlib date/ time extensions. [Jeremy Kemper]"

Slide 54

Slide 54 text

The AS 3 way require 'active_support' require 'active_support/core_ext/ object/try' p 1234.try :to_s #=> "1234" p 1234.days #=> undefined method `days' for 1234:Fixnum (NoMethodError)

Slide 55

Slide 55 text

A dangerous controller require 'active_support/core_ext/numeric/time' class FooController < ApplicationController def index @foos = Foo.where { :created_at > 3.days.ago } end end

Slide 56

Slide 56 text

activesupport- re nements https://github.com/amatsuda/ activesupport-re nements % gem i activesupport- re nements

Slide 57

Slide 57 text

activesupport-re nements/ spec/try_spec.rb require 'active_support/refinements/core_ext/object/try' describe 'Object#try' do context 'when using ObjectExt::Try' do it 'an Object has #try method' do Module.new { using ObjectExt::Try }.module_eval { 'hello'.try(:reverse) }.should == 'olleh' end end context 'when not using ObjectExt::Try' do it 'has no #try method' do expect { 'hello'.try(:reverse) }.to raise_error NoMethodError end end end

Slide 58

Slide 58 text

A safer controller require 'active_support/refinements/ core_ext/numeric/time' class FooController < ApplicationController using NumericExt::Time def index @foos = Foo.where { :created_at > 3.days.ago } end end

Slide 59

Slide 59 text

No content

Slide 60

Slide 60 text

Module#prepend

Slide 61

Slide 61 text

background

Slide 62

Slide 62 text

Ruby < 2, Rails < 3

Slide 63

Slide 63 text

alias_method_chain def alias_method_chain(target, feature) alias_method "#{target}_without_#{feature}", target alias_method target, "#{target}_with_#{feature}" end https://github.com/rails/rails/commit/794d93f by @jamis

Slide 64

Slide 64 text

AMC class A def foo; puts 'foo'; end end class A def foo_with_bar foo_without_bar puts 'bar' end alias_method_chain :foo, :bar end A.new.foo A.new.foo_without_bar

Slide 65

Slide 65 text

simple pagination ActiveRecord::FinderMethods.module_eval do def all_with_page(*args) if args.any? && (page = args.first.delete(:page)) limit(10). offset(10 * (page - 1)). all_without_page(*args) else all_without_page(*args) end end alias_method_chain :all, :page end

Slide 66

Slide 66 text

Problem

Slide 67

Slide 67 text

adding `baz` and calling foo "without_bar" class A def foo; puts 'foo'; end def foo_with_bar foo_without_bar puts 'bar' end alias_method_chain :foo, :bar def foo_with_baz foo_without_baz puts 'baz' end alias_method_chain :foo, :baz end A.new.foo_without_bar

Slide 68

Slide 68 text

"without_bar" skips "baz" class A def foo; puts 'foo'; end def foo_with_bar foo_without_bar puts 'bar' end alias_method_chain :foo, :bar def foo_with_baz foo_without_baz puts 'baz' end alias_method_chain :foo, :baz end A.new.foo_without_bar #=> foo

Slide 69

Slide 69 text

an actual example gem 'activerecord', '<2.3' require 'active_record' ActiveRecord::Base.configurations = {'test' => {:adapter => 'sqlite3', :database => ':memory:'}} ActiveRecord::Base.establish_connection('test') class User < ActiveRecord::Base validates_presence_of :name end class CreateAllTables < ActiveRecord::Migration def self.up create_table(:users) {|t| t.column :name, :string} end end CreateAllTables.up # p User.new.save_without_validation p User.new.save_without_dirty p User.new.save

Slide 70

Slide 70 text

Rails 3’s solution use the power of Ruby Module super

Slide 71

Slide 71 text

https://github.com/rails/ rails/commit/d916c62

Slide 72

Slide 72 text

excerpt from d916c62 included do - alias_method_chain :save, :dirty ... end - def save_with_dirty(*args) - if status = save_without_dirty(*args) + def save(*) #:nodoc: + if status = super ...

Slide 73

Slide 73 text

@wycats style module Bar def foo puts 'bar' super end; end module Baz def foo puts 'baz' end; end class A include Baz include Bar def foo puts 'foo' super end end A.new.foo #=> foo bar baz

Slide 74

Slide 74 text

the original foo method class A def foo puts 'foo' super end end

Slide 75

Slide 75 text

how can we extend methods that are not calling super? class A def foo puts 'foo' end end (do something...) A.new.foo #=> foo bar

Slide 76

Slide 76 text

AMC? class A def foo puts 'foo' end end class A def foo_with_bar foo_without_bar puts ‘bar’ end alias_method_chain :foo, :bar end A.new.foo #=> foo bar

Slide 77

Slide 77 text

Module#prepend

Slide 78

Slide 78 text

@wycats @n0kada

Slide 79

Slide 79 text

Nobu

Slide 80

Slide 80 text

The Patch Monster % git clone git://github.com/ruby/ruby % git shortlog -ns | grep -v svn | head -10 7049" nobu 3470" akr 2553" matz 1492" naruse 1464" usa 1412" eban 746" ko1 580" knu 531" mame 513" drbrain

Slide 81

Slide 81 text

Who's creating Ruby? Matz: designing Ko1: implementing Nobu: xing

Slide 82

Slide 82 text

Who's creating Ruby? Matz: designing Ko1: implementing Nobu: xing

Slide 83

Slide 83 text

Nobu

Slide 84

Slide 84 text

No content

Slide 85

Slide 85 text

AMC class A def foo puts 'foo' end end class A def foo_with_bar foo_without_bar puts ‘bar’ end alias_method_chain :foo, :bar end A.new.foo #=> foo bar

Slide 86

Slide 86 text

Module#prepend class A def foo; puts 'foo'; end end module Bar def foo super puts 'bar' end end class A prepend Bar end A.new.foo #=> foo bar

Slide 87

Slide 87 text

Module#prepend class A; def foo; puts 'foo'; end; end module Bar def foo super puts 'bar' end end module Baz def foo super puts 'baz' end end class A prepend Bar prepend Baz end A.new.foo #=> foo bar baz

Slide 88

Slide 88 text

simple pagination with Module#prepend module PrependPaginator def all(*args) if args.any? && (page = args.first.delete(:page)) self.limit_value = 10 self.offset_value = 10 * (page - 1) end super end end ActiveRecord::FinderMethods.send :prepend, PrependPaginator

Slide 89

Slide 89 text

activerecord-re nements/lib/ activerecord-re nements.rb module ActiveRecord::Refinements module QueryMethods def where(opts = nil, *rest, &block) if block ... # (snip) else super ennnnd module ActiveRecord::QueryMethods prepend ActiveRecord::Refinements::QueryMethods end

Slide 90

Slide 90 text

Enumerable#lazy

Slide 91

Slide 91 text

@yhara

Slide 92

Slide 92 text

Redmine #4890

Slide 93

Slide 93 text

Enumerator [1, 2, 3].each => #

Slide 94

Slide 94 text

Enumerator::Lazy [1, 2, 3].lazy => #

Slide 95

Slide 95 text

lazy evaluation (1..Float::INFINITY).lazy .select(&:even?) .take(20) .force #=> [2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40]

Slide 96

Slide 96 text

Friday the 13th (until ETERNITY) require 'date' ETERNITY = Float::INFINITY puts (Date.today..ETERNITY). lazy. select {|d| (d.day == 13) && d.friday?}. take(5).force #=> 2013-09-13 2013-12-13 2014-06-13 2015-02-13 2015-03-13

Slide 97

Slide 97 text

Ruby implementation of UNIX wc command (ARGV.length == 0 ? [["", STDIN]] : ARGV.lazy.map { |filename| [filename, File.open(filename)] }).map { |filename, file| "%4d %4d %4d %s\n" % [*file.lines.lazy.map { |line| [1, line.split.length, line.length] }.inject([0, 0, 0]) { |(lc, wc, cc), (l, w, c)| [wc + w, lc + l, cc + c] }, filename] }.each(&:display) by @shugomaeda http://shugomaeda.blogspot.com/2012/03/ enumerablelazy-and-its-benefits.html

Slide 98

Slide 98 text

Keyword Arguments

Slide 99

Slide 99 text

@mametter

Slide 100

Slide 100 text

@mametter Quine artist Ruby 2.0 release manager

Slide 101

Slide 101 text

background

Slide 102

Slide 102 text

def foo(args = {}) puts "a is #{args[:a]}, b is #{args[:b]}" end foo a: 1, b: 2 #=> a is 1, b is 2 Well known idiom using Hash

Slide 103

Slide 103 text

Patterns & Implementations Default Values Multiple Hashes Splat Operator Assert Valid Keys

Slide 104

Slide 104 text

Default Values

Slide 105

Slide 105 text

merge def foo(args = {}) values = {a: 1, b: 2}.merge args puts "a is #{values[:a]}, b is #{values[:b]}" end foo b: 4 #=> a is 1, b is 4

Slide 106

Slide 106 text

reverse_merge (ActiveSupport) def foo(args = {}) values = args.reverse_merge a: 1, b: 2 puts "a is #{values[:a]}, b is #{values[:b]}" end foo b: 4 #=> a is 1, b is 4

Slide 107

Slide 107 text

def create(attributes = {}, options = {}, &block) AR/associations/collection_association.rb def form_tag(url_for_options = {}, options = {}, &block) AV/helpers/form_tag_helper.rb def render(options = {}, locals = {}, &block) AV/helpers/rendering_helper.rb def button_to(name, options = {}, html_options = {}) AV/helpers/url_helper.rb def date_select(method, options = {}, html_options = {}) AV/helpers/date_helper.rb multiple Hashes

Slide 108

Slide 108 text

Passing values into the latter keywords Hash def button_to(name, options = {}, html_options = {}) <%= button_to 'New!', action: 'new', method: 'get' %> #=> options: {action: 'new', method: 'get'}, html_options: {} <%= button_to 'New!', {action: 'new'}, {method: 'get'} %> #=> options: {action: 'new'}, html_options: {method: 'get'}

Slide 109

Slide 109 text

Splat Operator def define_model_callbacks(*callbacks) options = callbacks.extract_options! options = { :terminator => "result == false", :scope => [:kind, :name], :only => [:before, :around, :after] }.merge(options) ... AMo/callbacks.rb

Slide 110

Slide 110 text

extract_options! class Array def extract_options! if last.is_a?(Hash) && last.extractable_options? pop else {} end end end AS/core_ext/array/extract_options.rb

Slide 111

Slide 111 text

assert_valid_keys VALID_FIND_OPTIONS = [:conditions, :include, :joins, :limit, :offset, :extend, :order, :select, :readonly, :group, :having, :from, :lock ] def apply_finder_options(options) ... options.assert_valid_keys(VALID_FIND_OPTIONS) AR/relation/spawn_methods.rb

Slide 112

Slide 112 text

Implementation of assert_valid_keys def assert_valid_keys(*valid_keys) valid_keys.flatten! each_key do |k| raise ArgumentError.new("Unknown key: #{k}") unless valid_keys.include?(k) end end AS/core_ext/hash/keys.rb

Slide 113

Slide 113 text

using assert_valid_keys {name: 'amatsuda', job: 'Rubyist'} .assert_valid_keys(:name, :age) #=> ArgumentError: Unknown key: job

Slide 114

Slide 114 text

Ruby 2.0 keyword arguments

Slide 115

Slide 115 text

Defalut Values

Slide 116

Slide 116 text

No need to merge or reverse_merge anymore! def foo(a: 1, b: 2) puts "a is #{a}, b is #{b}" end foo() #=> a is 1, b is 2 foo a: 3, b: 2 #=> a is 3, b is 2

Slide 117

Slide 117 text

Multiple Hashes & Splat Operator

Slide 118

Slide 118 text

The "rest" argument def button_to(name, controller: nil, action: nil, **html_options) puts "controller: #{controller}" puts "action: #{action}" puts "html_options: #{html_options}" end button_to 'a', action: 'new', method: 'get' #=> controller: (nil) action: new html_options: {:method=>"get"}

Slide 119

Slide 119 text

assert_valid_keys

Slide 120

Slide 120 text

We don't need assert_valid_keys anymore! def apply_finder_options(conditions: nil, include: nil, joins: nil, limit: nil, offset: nil, extend: nil, order: nil, select: nil, readonly: nil, group: nil, having: nil, from: nil, lock: nil) puts "order: #{order}" puts "limit: #{limit}" end apply_finder_options order: 'id', limit: 3, omg: 999 #=> unknown keyword: omg (ArgumentError)

Slide 121

Slide 121 text

ensure

Slide 122

Slide 122 text

try 2.0 if your_app.ruby_version == 1.9.3 you.should upgrade {|ruby| your_app << ruby.new_features! raise Issue.new unless ruby.compatible? } end

Slide 123

Slide 123 text

try 2.0 if your_app.ruby_version == 1.9.3 you.should upgrade {|ruby| your_app << ruby.new_features! raise Issue.new unless ruby.compatible? } else die end

Slide 124

Slide 124 text

Use the new features Because it's useful In order to speed up transition And let's deprecate 1.9.3 ASAP!

Slide 125

Slide 125 text

end