rspec-do_action 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -1
- data/lib/rspec-do_action/version.rb +1 -1
- data/lib/rspec-do_action.rb +1 -1
- data/rspec-do_action.gemspec +1 -0
- data/spec/spec_helper.rb +3 -0
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5e8ce48fd85d3354e483a34aae882a6d96ad45a5
|
4
|
+
data.tar.gz: ae0c96cd3ec6b7008c6f5efeb58eeef2c24d96d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9405e65c9d824b7b19f66dc09598acb3d8eb3437bb5c470b0f7c8999b220d2cb5e70c4b18dced8f87bd8a959daab15a3aaa8f4575097ea614a4605b04ca41f6
|
7
|
+
data.tar.gz: 548e19eac8b9a1fc8850236fac6dd3e185e747f68bfe516923ff8cdea71f8c2c8a495a0ad36c730f814419efee316f9262d492b256b55e875846c143a3ed4f52
|
data/README.md
CHANGED
@@ -1,4 +1,10 @@
|
|
1
|
-
# Rspec::DoAction
|
1
|
+
# Rspec::DoAction
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/sunteya/rspec-do_action.png?branch=master)](https://travis-ci.org/sunteya/rspec-do_action)
|
4
|
+
[![Coverage Status](https://coveralls.io/repos/sunteya/rspec-do_action/badge.png)](https://coveralls.io/r/sunteya/rspec-do_action)
|
5
|
+
[![Code Climate](https://codeclimate.com/github/sunteya/rspec-do_action.png)](https://codeclimate.com/github/sunteya/rspec-do_action)
|
6
|
+
[![Dependency Status](https://gemnasium.com/sunteya/rspec-do_action.png)](https://gemnasium.com/sunteya/rspec-do_action)
|
7
|
+
[![Gem Version](https://badge.fury.io/rb/rspec-do_action.png)](http://badge.fury.io/rb/rspec-do_action)
|
2
8
|
|
3
9
|
add 'acton' and some useful methods for rspec one-liner syntax.
|
4
10
|
|
data/lib/rspec-do_action.rb
CHANGED
data/rspec-do_action.gemspec
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
require "rspec-do_action"
|
2
2
|
require "pry-nav"
|
3
3
|
|
4
|
+
require 'coveralls'
|
5
|
+
Coveralls.wear!
|
6
|
+
|
4
7
|
RSpec.configure do |config|
|
5
8
|
config.treat_symbols_as_metadata_keys_with_true_values = true if RSpec::Version::STRING =~ /^2/
|
6
9
|
config.run_all_when_everything_filtered = true
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-do_action
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sunteya
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -66,6 +66,20 @@ dependencies:
|
|
66
66
|
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: coveralls
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
69
83
|
description: add 'acton' and some useful methods for rspec one-liner syntax.
|
70
84
|
email:
|
71
85
|
- sunteya@gmail.com
|