rails_karma 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3ca4ef8f9506e14c0f599772f6b3edd8256d16fa
4
- data.tar.gz: a1c818d3c70eef190e5f252cb5c6bc73dc86b564
3
+ metadata.gz: cc29e1c38183d0bf108804e450c8413605676be2
4
+ data.tar.gz: 2d5f3bd1d7da73a1a2bc54c9eaf0cbe83aed1158
5
5
  SHA512:
6
- metadata.gz: f936e1fd09b9bb412a314cd6b90d31d16b932a27be0816ba40184aea02df3dcd64529765f4cd8abdd7d879b8684b1e48ff3fbefcfd7da2cf74f516cbc4d3fe16
7
- data.tar.gz: 0888bae68ca0c82d9e95d093865e5f3c33a2d59edf62a5be6997884dd4a8408cba7420d5a37daa66af30492754072a92e70690e49715fd7294c9b52b0876850c
6
+ metadata.gz: afdab2ca8b20c5c775ea76c2e841666b11ee38704e009f015aaddbf447eb930305617b39ddd5d99f391f3b72d970438c085d2ec35b7d721703e203d1a6b8077b
7
+ data.tar.gz: 72cbc8fe8e57278b2c5930f759ee5bd50e1241cc265586588a02bf57b3c874442e924e607ac81cedda115f009fc6416ba0f47f274f89d65233edc7db5d4abffa
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  This is a simple gem which integrates [Karma](http://karma-runner.github.io/) with Rails
4
4
 
5
+ [![Code Climate](https://codeclimate.com/github/enspiral/rails_karma.png)](https://codeclimate.com/github/enspiral/rails_karma)
6
+
5
7
  ## Installation
6
8
 
7
9
  You will need npm to install karma so if you don't have node you can [get it here](http://nodejs.org/download/)
@@ -54,5 +56,8 @@ Update config/karma.conf.js to load the files you want to test and run `rake kar
54
56
 
55
57
  ## Changelog
56
58
 
59
+ ### 0.1.2
60
+ - fixing error with shell command installing karma
61
+
57
62
  ### 0.1.1
58
63
  - initial release
@@ -39,7 +39,7 @@ module RailsKarma
39
39
  end
40
40
  unless File.open('package.json') {|f| f.read.include? 'karma'}
41
41
  puts 'installing karma'
42
- sh 'npm install karma --save-dev'
42
+ puts `npm install karma --save-dev`
43
43
  end
44
44
  unless File.open('.gitignore') {|f| f.read.include? 'node_modules'}
45
45
  puts 'adding node_modules to .gitignore'
@@ -1,3 +1,3 @@
1
1
  module RailsKarma
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_karma
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joshua Vial
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-02 00:00:00.000000000 Z
11
+ date: 2013-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler