Get it from the App Store.
In XCode's Preferences > Downloads you can install command line tools.
| Block is a house that is nice and square, | |
| Element is a room with its walls all bare, | |
| Modifier is the wallpaper, hang with care! | |
| .house | |
| .house__room | |
| .house__room—-paisley |
| { | |
| "files": | |
| { | |
| "jquery" : "http://code.jquery.com/jquery.js", | |
| "jquery.min" : "http://code.jquery.com/jquery.min.js", | |
| "jquery-cookie" : "https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js", | |
| "jquery-dotimeout" : "https://raw.github.com/cowboy/jquery-dotimeout/master/jquery.ba-dotimeout.min.js", | |
| "jquery-extra-selectors" : "https://raw.github.com/keithclark/JQuery-Extended-Selectors/master/jquery-extra-selectors.js", | |
| "jquery-flexslider" : "https://raw.github.com/mbmufffin/FlexSlider/master/jquery.flexslider-min.js", | |
| "jquery-mediaelement" : "https://raw.github.com/johndyer/mediaelement/master/build/mediaelement-and-player.js", |
Note that this validation runs both after the file is uploaded and after CarrierWave has processed the image. If your base uploader includes a filter to resize the image then the validation will be run against the resized image, not the original one that was uploaded. If this causes a problem for you, then you should avoid using a resizing filter on the base uploader and put any specific size requirements in a version instead.
So instead of this:
require 'carrierwave/processing/mini_magick'
The new rake task assets:clean removes precompiled assets. [fxn]
Application and plugin generation run bundle install unless --skip-gemfile or --skip-bundle. [fxn]
Fixed database tasks for jdbc* adapters #jruby [Rashmi Yadav]
Template generation for jdbcpostgresql #jruby [Vishnu Atrai]
| require "xpath" # XPath is a separate gem now | |
| module Cucumber | |
| module Rails | |
| module CapybaraSelectDatesAndTimes | |
| def select_date(field, options = {}) | |
| date = Date.parse(options[:with]) | |
| selector = %Q{.//fieldset[contains(./legend, "#{field}")]} | |
| within(:xpath, selector) do | |
| find(:xpath, '//select[contains(@id, "_1i")]').find(:xpath, ::XPath::HTML.option(date.year.to_s)).select_option |
| # Make port 80 "real life" speeds | |
| # You can also use Mongrel ports. | |
| function slow_port { | |
| # Set the port variable if no port inputted. Defaulted to 80 (for Passenger). | |
| if [ -z "$1" ] | |
| then port=80 | |
| else port=$1 | |
| fi | |
| # Slow the ports. |