0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A simple gem which installs Karma config files and rake tasks
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
>= 0

Runtime

 Project Readme

RailsKarma

This is a simple gem which integrates Karma with Rails

Code Climate

Installation

You will need npm to install karma so if you don't have node you can get it here

Add this line to your application's Gemfile:

gem 'rails_karma'

Then execute:

$ bundle
$ rake karma:install

This will install a sample config file in config/karma.conf.js and install karma via npm

If you are using travis you will need npm install in your before_script to install karma e.g.

#sample .travis.yml file
language: ruby
env:
  - DB=postgres
rvm:
  - 2.0.0
bundler_args: --without development
before_script:
  - cp config/database.yml.travis config/database.yml
  - bundle exec rake db:setup
  - npm install

and then you can use karma in your rake task e.g.

#lib/tasks/ci.rake
desc "Run all the tests, called by the CI server"
task :ci => [:spec, :cucumber, :karma] do

end

Usage

Update config/karma.conf.js to load the files you want to test and run rake karma to run your tests

Contributing

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

Changelog

0.1.3

0.1.2

  • fixing error with shell command installing karma

0.1.1

  • initial release