This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # In the context of Rails app (mailers) | |
| # Somewhere in email helper | |
| def from_address_by(person_name) | |
| return nil unless person_name | |
| address = Mail::Address.new AppConfig.email.from # ex: "john@example.com" | |
| address.display_name = person_name # ex: "John Doe" | |
| address.format # returns "John Doe <john@example.com>" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > rvm use ruby-2.1.1 | |
| Using /Users/dnagir/.rvm/gems/ruby-2.1.1 | |
| > ruby -v | |
| ruby 2.1.1p76 (2014-02-24 revision 45161) [x86_64-darwin13.0] | |
| > ruby test.rb | |
| Run options: --seed 49028 | |
| # Running: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > ruby -v | |
| ruby 2.1.1p76 (2014-02-24 revision 45161) [x86_64-darwin13.0] | |
| > ruby test.rb | |
| Run options: --seed 22679 | |
| # Running: | |
| F. | |
| Finished in 2.320485s, 0.8619 runs/s, 172.3778 assertions/s. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return | |
| # don't put duplicate lines in the history. See bash(1) for more options | |
| # don't overwrite GNU Midnight Commander's setting of `ignorespace'. | |
| HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class GameOfLife | |
| attr_accessor :state, :height, :width, :rules | |
| def initialize options={} | |
| self.rules = options[:rules] || [ [0,0,0,1,0,0,0,0,0], [0,0,1,1,0,0,0,0,0] ] | |
| self.height = options[:size] || options[:height] || 10 | |
| self.width = options[:size] || options[:width] || 10 | |
| self.state = options[:seed] || grid { rand(2) } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Harmony for browser testing | |
| Capybara.driver = :rack_test # uses Harmony and can run JS | |
| Good talk about Arel: 1LT_04-mp4_500mbs.mp4 | |
| Rack GeoIP. | |
| Rack GoogleAnalytics | |
| Rack::Cache (standard) | |
| Rack::CacheBuster |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dima@me:~$ rvm gemset create rc1 | |
| 'rc1' gemset created (/home/dima/.rvm/gems/ruby-1.9.2-p180@rc1). | |
| dima@me:~$ rvm gemset use rc1 | |
| Now using gemset 'rc1' | |
| dima@me:~$ gem update --system | |
| Latest version currently installed. Aborting. | |
| dima@me:~$ gem install rails --pre |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // app/assets/javascripts/application.js | |
| // Include the template into the app | |
| //= require_tree backbone/templates | |
| // And here's how you do the templating | |
| var html = JST.comment(commentModel.attributes); | |
| $(".comments").append(html); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Users | |
| should save record when losing focus from input | |
| Expected spy updateFromForm to have been called. | |
| Error: Expected spy updateFromForm to have been called. |
OlderNewer