I hereby claim:
- I am owenr on github.
- I am rodda (https://keybase.io/rodda) on keybase.
- I have a public key whose fingerprint is A66F 638A B22D 971E 61F2 558D ECE2 9C3C 6B61 F19A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| license: mit | |
| scrolling: no |
| license: gpl-3.0 |
| license: mit |
| inbox.items indexed_page_item_view: { | |
| max_entries_returned: 100, | |
| offset: 0, | |
| base_point: 'Beginning' | |
| } |
| # Failing test for versioning destroyed objects using PaperTrail and Rails 5 (with new AR default config option) | |
| begin | |
| require 'bundler/inline' | |
| rescue LoadError => e | |
| $stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler' | |
| raise e | |
| end | |
| gemfile(true) do | |
| ruby '2.3.0' |
| require 'torquebox-scheduling' | |
| module ActiveJob | |
| module QueueAdapters | |
| class TorqueboxSchedulerAdapter | |
| class << self | |
| def enqueue(job) #:nodoc: | |
| TorqueBox::Scheduling::Scheduler.schedule(job.hash, in: 35) do | |
| Base.execute(job.serialize) | |
| end | |
| end |
| require 'capybara' | |
| module Capybara | |
| module Node | |
| module ElementExt | |
| def set(value, fill_options={}) | |
| if self.tag_name == 'select' | |
| opt = find(:option, value) | |
| if opt.blank? | |
| warn "Could not find option '#{value}' in '#{self.inspect}" | |
| else |