rspec_boolean 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -15
- data/lib/rspec_boolean/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb7152c3b6066f63b73987145786c0f789ded535
|
|
4
|
+
data.tar.gz: ffb1fcbbe47a56cc996cae5db08c57a8f5759930
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 878599fefa0be19dedae2f425aa8901f4648d4158d0bdeab4692180a308d6602c2106e2980c8e6943dd4f2de05b63afda9f8e4df6e0a1354d105e1fff5c51db8
|
|
7
|
+
data.tar.gz: eaa51dc40c61edd9ca6cda6464ee547d047d797a21a9cbc721aacf1879bd2dd577664d426ce4b24d0f7a5cf800368e4c78faa5a7b21b9f67d412726a5cdd159e
|
data/README.md
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
# RspecBoolean
|
|
2
2
|
|
|
3
|
-
Welcome to
|
|
3
|
+
Welcome to rspec_boolean, with this gem you can use "be_boolean" expectation to your tests
|
|
4
4
|
|
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
|
6
5
|
|
|
7
6
|
## Installation
|
|
8
7
|
|
|
9
|
-
Add this line to your application's Gemfile:
|
|
8
|
+
Add this line to your application's Gemfile in the group :development, :test:
|
|
10
9
|
|
|
11
10
|
```ruby
|
|
12
11
|
gem 'rspec_boolean'
|
|
@@ -16,21 +15,13 @@ And then execute:
|
|
|
16
15
|
|
|
17
16
|
$ bundle
|
|
18
17
|
|
|
19
|
-
Or install it yourself as:
|
|
20
|
-
|
|
21
|
-
$ gem install rspec_boolean
|
|
22
|
-
|
|
23
18
|
## Usage
|
|
24
19
|
|
|
25
|
-
TODO: Write usage instructions here
|
|
26
|
-
|
|
27
|
-
## Development
|
|
28
|
-
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
30
20
|
|
|
31
|
-
|
|
21
|
+
```ruby
|
|
22
|
+
expect(false).to be_boolean
|
|
23
|
+
```
|
|
32
24
|
|
|
33
25
|
## Contributing
|
|
34
|
-
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/rspec_boolean.
|
|
26
|
+
Fork the repo, send bug reports and pull requests on GitHub at https://github.com/compersionapps/rspec_boolean.
|
|
36
27
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec_boolean
|
|
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
|
- Lorenzo Sinisi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec-rails
|