rspec_key_value 0.2.1 → 0.2.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e754377cceb7bbb19b8c84282258a55fb8a77b7c
4
- data.tar.gz: 683a1795d736050121139bb0f58aff25f85c0da7
3
+ metadata.gz: 30094e9c6f79c8c327c86f23052bd4e5e07ef0cb
4
+ data.tar.gz: d0bdfeeea82099a11a0a219beb102e753e268875
5
5
  SHA512:
6
- metadata.gz: 33dabb0e319e4748bb4b8c467a1bf8d03284fa59fd4ace1c950ca981dfb8a347cd3e4822855e07f64b4c650341722b23acdba6b68516ae233e3debd8c1a61ea9
7
- data.tar.gz: 3dbe1312517a580956947b61336d6c5f718aa2ae5c960cdbaa3d1147fc2ec65bac4ffa19d74a4ba76e5462032803e4961d6871733c8875fd5c4d8cf0ba8fb311
6
+ metadata.gz: 381cdcdae26030380c3d564f5107a4f0c7c7ca4cb050b13e02075dc0ef4cd559770a764da63c5ec739a40721d63332359dd215054d18d9f85dad44aacb754c06
7
+ data.tar.gz: 6c027c479e0d838f6b4d5403cdfe7dcbca89724444ac1ad8f1047dee33c237780d5d8efd7e75eefb5378bd18e3bb46f7f891d71d7848bdd755c3159976951cfb
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) [2016] [Alexander Todorov]
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -28,6 +28,10 @@ bundle exec rspec -f RspecKeyValue::Formatter
28
28
 
29
29
  ## Changelog
30
30
 
31
+ * 0.2.2 (Dec 17th 2016)
32
+ - add MIT license
33
+ - update URLs in gemspec
34
+
31
35
  * 0.2.1 (Dec 17th 2016)
32
36
  - first release
33
37
 
@@ -1,3 +1,3 @@
1
1
  module RspecKeyValue
2
- VERSION = '0.2.1'.freeze
2
+ VERSION = '0.2.2'.freeze
3
3
  end
@@ -8,8 +8,11 @@ Gem::Specification.new do |spec|
8
8
  spec.version = RspecKeyValue::VERSION
9
9
  spec.authors = ['Alexander Todorov']
10
10
  spec.email = ['atodorov@MrSenko.com']
11
+ spec.homepage = 'https://github.com/MrSenko/rspec_key_value'
12
+ spec.license = 'MIT'
11
13
 
12
14
  spec.summary = 'Simple key:value formatter for rspec'
15
+ spec.description = File.read('README.md')
13
16
 
14
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f|
15
18
  f.match(%r{^(test|spec|features)/})
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_key_value
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Todorov
@@ -108,7 +108,57 @@ dependencies:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
- description:
111
+ description: |
112
+ # RSpec KeyValue
113
+
114
+ [![Build Status](https://travis-ci.org/MrSenko/rspec_key_value.svg?branch=master)](https://travis-ci.org/MrSenko/rspec_key_value)
115
+
116
+ A simple key:value formatter for rspec.
117
+
118
+ ## Installation
119
+
120
+ Add this line to your application's Gemfile:
121
+
122
+ ```ruby
123
+ gem 'rspec_key_value'
124
+ ```
125
+
126
+ And then execute:
127
+
128
+ $ bundle
129
+
130
+ Or install it yourself as:
131
+
132
+ $ gem install rspec_key_value
133
+
134
+ ## Usage
135
+
136
+ ```bash
137
+ bundle exec rspec -f RspecKeyValue::Formatter
138
+ ```
139
+
140
+ ## Changelog
141
+
142
+ * 0.2.2 (Dec 17th 2016)
143
+ - add MIT license
144
+ - update URLs in gemspec
145
+
146
+ * 0.2.1 (Dec 17th 2016)
147
+ - first release
148
+
149
+ ## Development
150
+
151
+ After checking out the repo, run `bin/setup` to install dependencies.
152
+ You can also run `bin/console` for an interactive prompt that will allow you to experiment.
153
+
154
+ To install this gem onto your local machine, run `bundle exec rake install`.
155
+ To release a new version, update the version number in `version.rb`, and then run
156
+ `bundle exec rake release`, which will create a git tag for the version,
157
+ push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
158
+
159
+ ## Contributing
160
+
161
+ Bug reports and pull requests are welcome on GitHub at https://github.com/MrSenko/rspec_key_value.
112
162
  email:
113
163
  - atodorov@MrSenko.com
114
164
  executables: []
@@ -120,6 +170,7 @@ files:
120
170
  - ".rubocop.yml"
121
171
  - ".travis.yml"
122
172
  - Gemfile
173
+ - LICENSE
123
174
  - README.md
124
175
  - Rakefile
125
176
  - bin/console
@@ -128,8 +179,9 @@ files:
128
179
  - lib/rspec_key_value/formatter.rb
129
180
  - lib/rspec_key_value/version.rb
130
181
  - rspec_key_value.gemspec
131
- homepage:
132
- licenses: []
182
+ homepage: https://github.com/MrSenko/rspec_key_value
183
+ licenses:
184
+ - MIT
133
185
  metadata: {}
134
186
  post_install_message:
135
187
  rdoc_options: []