Agile Web Development with Rails, Edition 4

26.2 HAML 25.2 rake

26.1 Active Merchant

Determine if a credit card is valid

edit Gemfile
gem 'activemerchant', '~> 1.31'
bundle install --local
Resolving dependencies...
Using rake 10.5.0
Using i18n 0.7.0
Using json 1.8.3
Using minitest 5.8.3
Using thread_safe 0.3.5
Using builder 3.2.2
Using erubis 2.7.0
Using rack 1.5.5
Using mime-types 2.99
Using mini_portile2 2.0.0
Using arel 5.0.1.20140414130214
Using bcrypt 3.1.10
Using bundler 1.11.2
Using highline 1.7.8
Using net-ssh 3.0.2
Using coffee-script-source 1.10.0
Using execjs 2.6.0
Using thor 0.19.1
Using hike 1.2.3
Using multi_json 1.11.2
Using mysql2 0.4.2
Using tilt 1.4.1
Using sass 3.2.19
Using spring 1.6.2
Using sqlite3 1.3.11
Using rdoc 4.2.1
Using tzinfo 1.2.2
Using rack-test 0.6.3
Using mail 2.6.3
Using nokogiri 1.6.7.2
Using net-scp 1.2.1
Using net-sftp 2.1.2
Using net-ssh-gateway 1.2.0
Using coffee-script 2.4.1
Using uglifier 2.7.2
Using sprockets 2.12.4
Using sdoc 0.4.1
Using activesupport 4.1.14 from source at `/home/rubys/git/rails`
Using capistrano 2.15.7
Using actionview 4.1.14 from source at `/home/rubys/git/rails`
Using activemerchant 1.56.0
Using activemodel 4.1.14 from source at `/home/rubys/git/rails`
Using jbuilder 2.4.0
Using rvm-capistrano 1.5.6
Using actionpack 4.1.14 from source at `/home/rubys/git/rails`
Using activerecord 4.1.14 from source at `/home/rubys/git/rails`
Using actionmailer 4.1.14 from source at `/home/rubys/git/rails`
Using railties 4.1.14 from source at `/home/rubys/git/rails`
Using sprockets-rails 2.3.3
Using coffee-rails 4.1.1 from source at `/home/rubys/git/coffee-rails`
Using jquery-rails 3.1.4
Using jquery-ui-rails 5.0.5
Using rails 4.1.14 from source at `/home/rubys/git/rails`
Using sass-rails 4.0.5
Using turbolinks 2.5.3
Bundle complete! 15 Gemfile dependencies, 55 gems now installed.
Use `bundle show [gemname]` to see where a bundled gem is installed.
mkdir script
edit script/creditcard.rb
credit_card = ActiveMerchant::Billing::CreditCard.new(
  number:     '4111111111111111',
  month:      '8',
  year:       '2009',
  first_name: 'Tobias',
  last_name:  'Luetke',
  verification_value:  '123' 
)
 
puts "Is #{credit_card.number} valid?  #{credit_card.valid?}"
rails runner script/creditcard.rb
/home/rubys/.rvm/gems/ruby-2.1.5/gems/activemerchant-1.56.0/lib/active_merchant/billing/compatibility.rb:6:in `valid?': Implicit inclusion of Rails-specific functionality is deprecated. Explicitly require "active_merchant/billing/rails" if you need it.
Is 4111111111111111 valid?  false

26.2 HAML 25.2 rake