This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
Releases: testdouble/jasmine-rails
Releases · testdouble/jasmine-rails
v0.7.2
v0.7.1
CSS Support
v0.6.2
Rails 4.1 Support
Jasmine 2 Support
This release adds support for Jasmine 2.x without reducing support for Jasmine 1.x. From the user's perspective, this was accomplished by loosening our version specifier for the jasmine-core
gem, which provide's Jasmine's JavaScript files as assets. This means:
- If you'd like to use jasmine 2, just run
bundle update jasmine-core
and you should be off to the races. - If you'd like to stay on jasmine 1.3.x (which I'll be doing until I finish porting over all of my helpers and wrapping all of my matchers), simply add
gem "jasmine-core", "~> 1.3"
to your Gemfile to ensure you stay on the older release of Jasmine.