Clay Shentrup
Clay Shentrup
If I wanted to treat MacVim like Textmate, I'd use tabs. I'm clearly trying to use buffers, not tabs. And NO, NOT the same thing. It would be the same...
@eMxyzptlk No idea..I gave up on Janus long long ago.
Yeah, this is exactly what ember-simple-auth expects to do with the Devise authorizer, presumably because that's the format Devise expected when using token authentication.
I am also here with same problem.
> Overall nobody - that I'm aware - on the Mapnik crew has access to an M1 and therefore this problem exists. I'm faintly aware, however that there is a...
I have a similar issue. I want to run an Ember Fastboot app without having to make a separate repo for my API backend (which is Rails in my case)....
@kopchickm thanks! I just used this and it worked. ```ruby if ENV.key?('GOOGLE_CHROME_SHIM') # Heroku CI Selenium::WebDriver::Chrome.path = ENV.fetch('GOOGLE_CHROME_SHIM') Capybara.javascript_driver = :selenium_chrome_headless else ```
You could have demonstrated this bug more concisely as: ``` ruby Timecop.freeze('2013-04-24'.to_date) { Date.today } Tue, 23 Apr 2013 ``` > Date is a lossy representation of Time in Ruby...
I would certainly agree that you can't convert a Date to a Time, at least without supplying a time zone to whatever function does the conversion. Your argument that a...
> this is not an issue of precision Your previous comment was about precision: > A date is defined as the period between a midnight and the following midnight, so...