emn178

Results 5 issues of emn178

Hi, It validates some incorrect emails as valid, like `[email protected]` Change Devise.email_regexp from ``` Ruby /\A[^@\s]+@([^@\s]+\.)+[^@\W]+\z/ ``` to ``` Ruby /\A[\w+\-.]+@[a-z\d\-]+(\.[a-z]+)*\.[a-z]+\z/i ``` Refer to http://stackoverflow.com/questions/22993545/ruby-email-validation-with-regex It can validate correctly.

**I'm submitting a ...** (check one with "x") ``` [x] bug report => Search github for a similar issue or PR before submitting [ ] feature request => Please check...

v1.2.0 uses wrong url in scss, you use this: ``` background:url(asset-url('gritter.png')) no-repeat left top; ``` But it should be ``` background:asset-url('gritter.png') no-repeat left top; ```

Hi, I add place changed event for input text.

Following code: ```JavaScript var kp = KEYUTIL.generateKeypair('RSA', 1024); privateKey = KEYUTIL.getPEM(kp.prvKeyObj, 'PKCS5PRV', '12345678', 'AES-256-CBC'); ``` Sometimes it has a blank line before `-----END RSA PRIVATE KEY-----`, for example ``` -----BEGIN...