...You need to wrap them inside --cucumber-options option of parallel_cucumber. DISPLAY=:17 bundle exec parallel_cucumber --cucumber-options '--tags @solo' features See more details in the docs...

...cucumber features with (only) 2 cores The great thing is that the commands are bundler aware. Some tests showed that parallel test execution (2 CPUs instead of 1) gives you...

makandra dev

...one by one, fixing errors as they occur: Update gems as listed below, and bundle Boot a Rails console - see below for a list of changes you will probably need...

...install for Ruby 2.5 if you use a version equal or below 1.8.3. Run bundle update json --conservative to solve this issue. The backtrace you will encounter looks like this...

...certificate-body file://www.example.com.crt --private-key file://www.example.com.key --certificate-chain file://www.example.com.ca-bundle { "ServerCertificateMetadata": { "Path": "/", "Arn": "arn:aws:iam::5xxxxxxxxxxx:server-certificate/www.example.com-2013010-2014010", "ServerCertificateId": "AXXXXXXXXXXXXXXXXXXXX", "ServerCertificateName": "www.example.com-2013010-2014010", "UploadDate...

...to encounter several issues. Here are a few solutions (obviously not exhaustive): When running bundle install, a gem called linecache complains about not being compatible This is a dependency of...

makandra dev
github.com

Installation In your Gemfile: gem 'rmagick', :require => false gem 'gruff' Then run bundle install (and don't forget to restart your development server.) Usage This is a common...

makandracards.com

deploy-to-production now calls Capistrano with bundle exec since we started to bundle Capistrano in all projects...

coderwall.com

...use therubyracer -v '0.11.4' and libv8 -v '3.11.8.17' on OS X Mavericks. However, running bundle update therubyracer worked for me. It installed therubyracer -v '0.12.1' and libv8 -v '3.16.14.3' and...

Log of my attempts to get it working Probably you got here when bundling failed building native extensions for therubyracer. The libv8 (3.3.10.4) should have been installed when bundling...

...executable chromedriver for gem chromedriver-helper. chromedriver-helper is not currently included in the bundle, perhaps you meant to add it to your Gemfile? (Gem::Exception) chromedriver-helper overrides rbenv...

...a tradition of breaking details of its scope API every other release. The gem bundles multiple patches and initializers we've been using for hardcore work with scopes (or relations...

...for Libv8:Module (NoMethodError) This is caused by therubyracer's extconf.rb requiring libv8 without Bundler. So it gets the most recent version on your local machine, which might be incompatible...

This is how you do it (key shortcuts apply for TextMate2) Open the bundle editor (ctrl + alt +  + B) Create a new Item ( + N), select "Command" Paste this: ^ #!/usr/bin/env ruby...

makandra dev

...echo 'not running'").start_with?('not running') end def god_command "cd #{current_path}; bundle exec god" end desc "Stop god" task :terminate_if_running do if god_is_running...

...net-ssh' gem by adding to your Gemfile: gem 'net-ssh', '=2.9.1' Now run bundle update net-ssh. It has no dependencies so it shouldn't update other gems.

...job_type :exclusive_rake, "cd :path && flock -n 'tmp/pids/cron_:task.lock' -c ':environment_variable=:environment bundle exec rake :task --silent --backtrace :output'" every 1.minute do exclusive_rake 'my:job:name'

makandra dev

...method to wrap any system calls to the test application def prepare_environment(&block) Bundler.with_clean_env do # Spring leads to all kinds of unexpected behavior in tests. ENV['DISABLE...

...for rake tasks in schedule.rb job_type :backtraced_rake, "cd :path && :environment_variable=:environment bundle exec rake :task --silent --backtrace :output" every 15.minutes do backtraced_rake 'users:send_notifications'

It is possible to access Rails config (for example secrets) from within your webpack bundles, thanks to rails-erb-loader. When using webpacker, the setup is like this:

...certificate-name www.example.com-2013010-2014010 --certificate-body www.example.com.crt --private-key www.example.com.key --certificate-chain www.example.com.ca-bundle A client error (MalformedCertificate) occurred: Invalid Public Key Certificate. That's because of the format...

...plugin would require the sqlite3 gem, but that gem wasn't in the Gem bundle. Rack only parses 65536 form params by default Problem can occur when using the integrated...

...Raven.configure block: config.environments = ['development', 'staging', 'production']. Remove better_errors from Gemfile if existing and bundle. With Raven.capture_message('Test from development') you can test your setting on console. Raising an...

...features/support. --dry-run makes Cucumber skip loading env.rb. Open a really wide terminal window. bundle exec cucumber --dry-run --format stepdefs | grep -B1 'NOT MATCHED' --no-group-separator | grep features/step_definitions...

...If you do this, your gemspec will not validate and modern versions of Bundler will silently ignore it. This leads to errors like: Could not find your-gem-0.1.2 in...