Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Releases: testdouble/jasmine-rails

v0.7.2

05 May 13:56
Compare
Choose a tag to compare
  • Add support for multiple spec_dir directories - #122

v0.7.1

26 Apr 21:02
Compare
Choose a tag to compare
  • Fixes #117 some more

CSS Support

12 Apr 18:59
Compare
Choose a tag to compare

v0.6.2

12 Apr 17:42
Compare
Choose a tag to compare
  • Fixes spec runner for folks with turbolinks enabled (I think) #109
  • Adds force_ssl support with a new setting in the jasmine.yml file #110

Rails 4.1 Support

12 Apr 17:24
Compare
Choose a tag to compare
  • Adds support to Rails 4.1 #117
  • Fixes console reporter when skipped or pending specs exist #112

Jasmine 2 Support

20 Feb 13:26
Compare
Choose a tag to compare

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.

v0.5.6

11 Feb 07:02
Compare
Choose a tag to compare
  • Ensures the tmp directory exists when running specs (#104)

v0.5.5

02 Feb 18:39
Compare
Choose a tag to compare
  • #101 - moves the tmp directory someplace less obnoxious. Thanks @wireframe!

0.5.4

06 Jan 19:17
Compare
Choose a tag to compare
  • Installs phantomjs if it's not found in the path via the phantomjs gem #98

0.5.3

06 Jan 19:08
Compare
Choose a tag to compare
  • Now works for projects that redefine the /assets route to something else. See #95