Дмитрий
Дмитрий
We set timezone to the user's timezone like ``` ruby Time.zone = 'London' Chronic.time_class = Time.zone ``` We read this information in the chronic's wiki Recently we had a bug...
Hello! I want to check that my email has some link. In my spec I want to write the following: ```rspec expect(email).to include_link /https:\/\/example\.com\/login/ ``` It would be good to...
https://developer.foursquare.com/docs/explore#req=checkins/resolve%3FshortId%3DfP44HxXzikm
[fix #101] Now clients can get an information about a checkin by a short ID at the end of a swarmapp.com url like: ``` client.resolve_checkin(shortId: 'dcBOk2Awmpj') ```
Hello, in our project we assign tags the following way: ```ruby tag = ActsAsTaggableOn::Tag.create! name: 'people' Article.create! title: 'Title', content: 'Text', tags: [tag] #or Article.create! title: 'Title', content: 'Text', tags_ids:...
After update to `v0.1.0` from `v0.0.9` tests started to fail with ```ruby expect( get_users(page: '-2') ).to eq(errors: { page: ["must be a positive number"] }) expected: {:errors=>{:page=>["must be a positive...
This PR introduces the following changes: 1. Add back changes from #209 that fix deprecation warning "Initialization autoloaded the constants ActionText::ContentHelper and ActionText::TagHelper." 2. Call sorcery config block where it...
I have a country select: ```haml = select_tag :country_id, options_for_select(@countries), data: { remote: true, disable: true, url: user_profile_path(current_user), method: :patch } ``` I want the country select to be disabled...