m-spec 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -6
  3. data/lib/m-spec/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92375890d1da886c3ae53626b708eba8d93d00076dabd9dc9f2282f67d860032
4
- data.tar.gz: 62918be644fb75c3d5831c2884cfdf6099203c59cc31bce3129a1566d4b2c6f6
3
+ metadata.gz: 80f7176104089e7c433938f1f233b00424025973c9eadcb089a691113864cc77
4
+ data.tar.gz: c5401779d4911d751782dd3fea995b7c984780c23de35a7b2eeb987ff22317ae
5
5
  SHA512:
6
- metadata.gz: 332454bdef60665103d66612748d42b9a6bd1af25c96228ae2b0009c236af8871f1d809100ad20905ef4d217ef65e9ecc9a64be6a35a88aab21579447cf59680
7
- data.tar.gz: ae2b63dac9719375fa1bc286c43b0b9410ec9cc1e5a08c350301da9aa08e1f8032987315eb62a5f6f2d925cbb8d5a5dfb2133b79b1b0aab89d78930824340725
6
+ metadata.gz: 3e4085f1f73da8376b825634bc4cae40e23adf175056f1393aec5ebb13985cc68011b5b02aa6f08897fa968083eb570e26078cb4a0f073bae2925d434ee6cc16
7
+ data.tar.gz: 9979041228817e5f401286158b45538ef685e2e85eaed148b529b33c835b6b327b45b2fa0918328b35a4fb94aa28fefd99ad3b2c4702f33080fc4cc11a2150e2
data/README.md CHANGED
@@ -1,13 +1,13 @@
1
1
  # Mspec
2
2
 
3
- The lightest-weight spec framework in ruby
3
+ The lightest-weight spec framework in ruby. Built for learning at [Makers](https://makers.tech).
4
4
 
5
5
  ## Installation
6
6
 
7
7
  Add this line to your application's Gemfile:
8
8
 
9
9
  ```ruby
10
- gem 'mspec'
10
+ gem 'm-spec'
11
11
  ```
12
12
 
13
13
  And then execute:
@@ -16,7 +16,7 @@ And then execute:
16
16
 
17
17
  Or install it yourself as:
18
18
 
19
- $ gem install mspec
19
+ $ gem install m-spec
20
20
 
21
21
  ## Usage
22
22
 
@@ -55,7 +55,7 @@ end
55
55
  To run your specs, pass the spec file directly as an argument. You have to run individual spec files.
56
56
 
57
57
  ```sh
58
- $ mspec ./spec/animal_spec.rb
58
+ $ m-spec ./spec/animal_spec.rb
59
59
  ```
60
60
 
61
61
  ```
@@ -79,7 +79,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
79
79
 
80
80
  ## Contributing
81
81
 
82
- Bug reports and pull requests are welcome on GitHub at https://github.com/dearshrewdwit/mspec. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
82
+ Bug reports and pull requests are welcome on GitHub at https://github.com/dearshrewdwit/m-spec. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
83
83
 
84
84
  ## License
85
85
 
@@ -87,4 +87,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
87
87
 
88
88
  ## Code of Conduct
89
89
 
90
- Everyone interacting in the Mspec project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/dearshrewdwit/mspec/blob/master/CODE_OF_CONDUCT.md).
90
+ Everyone interacting in the Mspec project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/dearshrewdwit/m-spec/blob/master/CODE_OF_CONDUCT.md).
@@ -1,3 +1,3 @@
1
1
  module Mspec
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: m-spec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edward Withers