No commit activity in last 3 years
No release in over 3 years
Adds chai-jquery plugin to rails asset pipeline
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

Chai jQuery Rails

chai-jquery is a plugin for chai that gives you jquery expectation helpers.

This is a simple gem that adds chai-jquery to the rails asset pipline.

Installation

Add this line to your application's Gemfile:

group :development, :test do
  gem 'chai-jquery-rails'
end

And then execute:

$ bundle

Then in your test files add a sprocket require statement:

js: //= require chai-jquery

coffeescript: #= require chai-jquery

This gem also depends on chai which in turn depends on mocha. The best way to get those is with the konacha gem.

Kudos

  • chai-jquery for doing the hard work.
  • Derek Prior for blogging about how to write a gem that includes rails assets.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request