$ brew install mysql$ ln -sfv /usr/local/opt/mysql/*.plist ~/Library/LaunchAgents
$ brew services start mysql
# or| #Model | |
| expect(@user).to have(1).error_on(:username) # Checks whether there is an error in username | |
| expect(@user.errors[:username]).to include("can't be blank") # check for the error message | |
| #Rendering | |
| expect(response).to render_template(:index) | |
| #Redirecting | |
| expect(response).to redirect_to(movies_path) |
| #Model | |
| @user.should have(1).error_on(:username) # Checks whether there is an error in username | |
| @user.errors[:username].should include("can't be blank") # check for the error message | |
| #Rendering | |
| response.should render_template(:index) | |
| #Redirecting | |
| response.should redirect_to(movies_path) |
| <?xml version="1.0"?> | |
| <Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet" | |
| xmlns:o="urn:schemas-microsoft-com:office:office" | |
| xmlns:x="urn:schemas-microsoft-com:office:excel" | |
| xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" | |
| xmlns:html="http://www.w3.org/TR/REC-html40"> | |
| <DocumentProperties xmlns="urn:schemas-microsoft-com:office:office"> | |
| <Author>Microsoft Office User</Author> | |
| <LastAuthor>Microsoft Office User</LastAuthor> | |
| <Created>2017-09-11T01:32:10Z</Created> |
| require 'formula' | |
| class Varnish3 <Formula | |
| url 'https://varnish-cache.org/_downloads/varnish-3.0.2.tgz' | |
| homepage 'http://www.varnish-cache.org/' | |
| sha256 '973f60625e9690e0989e1bbc73c37ea53fc6291b8f7b03d617b76f8084a4a243' | |
| depends_on 'pkg-config' => :build | |
| depends_on 'pcre' => :build |
\curl -sSL https://get.rvm.io | bash -s stablervm list known| '.source.ruby': | |
| 'Redirect to': | |
| 'prefix': 'redi' | |
| 'body': "redirect_to ${1:some}_path" | |
| 'flash[:key] = value': | |
| 'prefix': 'flash' | |
| 'body': 'flash[${1::success}] = ${2:"Created successfully."}$3' | |
| 'render json': | |
| 'prefix': 'renjson' |
Note: This is the guide for v 2.x.
For the v3, please follow this url: https://blog.csdn.net/sam_shan/article/details/80585240 Thanks @liy-cn for contributing.
For the v6, please follow the comment below: https://gist.github.com/trandaison/40b1d83618ae8e3d2da59df8c395093a?permalink_comment_id=5079514#gistcomment-5079514
Download: StarUML.io
| <html> | |
| <head> | |
| <title>Google Maps Multiple Markers</title> | |
| <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> | |
| </head> | |
| <body> | |
| <div id="map" style="height: 400px; width: 500px;"> | |
| </div> | |
| <script type="text/javascript"> |