fictium 0.3.0 → 0.3.1

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
  SHA256:
3
- metadata.gz: 3030636739bbc598cfa705f9708eb907a8c5bbe8d8937758ff89ef1550437d5a
4
- data.tar.gz: 9a835767818e69d27fec2eb97ba86a222186226c59a32416d06deea61db36714
3
+ metadata.gz: 942b491567ad199b83676dd568a341e12d02a8fec6486dc7a835ea996e785653
4
+ data.tar.gz: 402d88c43fcc7fa645717dd6c4ebc2da8fa75dcc8f97b3ce8df0e8de635b9e8b
5
5
  SHA512:
6
- metadata.gz: 83902c23aae9e3851f5051127c563f47852c09b0a344ec7b7fd839c24ffa11bcc1a860d0fab60e5e9a21a47aa8a8a2d1c1e80ab5da97df66da3f8eeb47166d55
7
- data.tar.gz: 893041779f809d490a110b2f6106c839f59633a01413673b2e4ebfa8ec112f15a726f58e665110cf2c7938825bf45960db09c82d6e3ff30f58337746d4346351
6
+ metadata.gz: 37a4e5776157dea3d682a88c1086ad8fbd861f98382b28b039e2f09d14d4b0081838b176112debc09b7b74428030462a50cf6a421b8afd9dbf179e1c273e40ac
7
+ data.tar.gz: 919c22475150deec51aa1ad053fa178f98389311b6f68fe9689d5b58a23b67c0f6552e29dc11ea18f796d3b3d2603b30792b9d92abf49c0834c472f085f1c5ee
data/.codeclimate.yml ADDED
@@ -0,0 +1,6 @@
1
+ plugins:
2
+ brakeman:
3
+ enabled: true
4
+ rubocop:
5
+ enabled: true
6
+ channel: rubocop-0-74
data/.travis.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  env:
3
3
  global:
4
- - CC_TEST_REPORTER_ID=ABC532a889d0bb9f79e63dd72a6c99b669b5349b81a7defb42cdde4f0dc5684e874
4
+ - CC_TEST_REPORTER_ID=532a889d0bb9f79e63dd72a6c99b669b5349b81a7defb42cdde4f0dc5684e874
5
5
  sudo: false
6
6
  language: ruby
7
7
  cache: bundler
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fictium (0.3.0)
5
- activesupport (>= 5.3, < 6.2)
4
+ fictium (0.3.1)
5
+ activesupport (>= 5.1, < 6.2)
6
6
  json-schema (~> 2.8)
7
7
  verbs (~> 2.1.4)
8
8
 
@@ -203,7 +203,7 @@ DEPENDENCIES
203
203
  byebug
204
204
  faker (~> 2.6.0)
205
205
  fictium!
206
- rails (>= 5.3, < 6.2)
206
+ rails (>= 5.1, < 6.2)
207
207
  rake (~> 12.3.3)
208
208
  rspec (~> 3.9)
209
209
  rspec-rails (~> 3.9)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Fictium
2
2
 
3
- [![Build Status](https://travis-ci.org/Wolox/fictium.svg?branch=master)](https://travis-ci.org/Wolox/fictium) [![Maintainability](https://api.codeclimate.com/v1/badges/52afbf838f92fe260b6e/maintainability)](https://codeclimate.com/github/Wolox/fictium/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/52afbf838f92fe260b6e/test_coverage)](https://codeclimate.com/github/Wolox/fictium/test_coverage)
3
+ [![Build Status](https://travis-ci.org/Wolox/fictium.svg?branch=master)](https://travis-ci.org/Wolox/fictium) [![Maintainability](https://api.codeclimate.com/v1/badges/52afbf838f92fe260b6e/maintainability)](https://codeclimate.com/github/Wolox/fictium/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/52afbf838f92fe260b6e/test_coverage)](https://codeclimate.com/github/Wolox/fictium/test_coverage) [![Gem Version](https://badge.fury.io/rb/fictium.svg)](https://badge.fury.io/rb/fictium)
4
4
 
5
5
  This gem is a documentation helper. The goal of this gem is, by adding small modifications into your existing tests,
6
6
  you can then transform it into easy REST documentation.
@@ -108,10 +108,11 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERN
108
108
 
109
109
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
110
110
 
111
- This gem is developed by (Wolox)[https://wolox.com.ar].
111
+ This gem is developed by [Wolox](https://wolox.com.ar).
112
112
 
113
113
  Maintainers: [Ramiro Rojo](https://github.com/holywyvern)
114
114
  Contributors: None (for now...)
115
+
115
116
  ![Wolox](https://raw.githubusercontent.com/Wolox/press-kit/master/logos/logo_banner.png)
116
117
 
117
118
  ## Code of Conduct
@@ -1,5 +1,5 @@
1
1
  module Fictium
2
- VERSION = '0.3.0'.freeze
3
- RAILS_MIN_VERSION = '>= 5.3'.freeze
2
+ VERSION = '0.3.1'.freeze
3
+ RAILS_MIN_VERSION = '>= 5.1'.freeze
4
4
  RAILS_MAX_VERSION = '< 6.2'.freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fictium
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ramiro Rojo
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '5.3'
19
+ version: '5.1'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '6.2'
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '5.3'
29
+ version: '5.1'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '6.2'
@@ -120,7 +120,7 @@ dependencies:
120
120
  requirements:
121
121
  - - ">="
122
122
  - !ruby/object:Gem::Version
123
- version: '5.3'
123
+ version: '5.1'
124
124
  - - "<"
125
125
  - !ruby/object:Gem::Version
126
126
  version: '6.2'
@@ -130,7 +130,7 @@ dependencies:
130
130
  requirements:
131
131
  - - ">="
132
132
  - !ruby/object:Gem::Version
133
- version: '5.3'
133
+ version: '5.1'
134
134
  - - "<"
135
135
  - !ruby/object:Gem::Version
136
136
  version: '6.2'
@@ -239,6 +239,7 @@ executables: []
239
239
  extensions: []
240
240
  extra_rdoc_files: []
241
241
  files:
242
+ - ".codeclimate.yml"
242
243
  - ".github/pull_request_template.md"
243
244
  - ".gitignore"
244
245
  - ".rspec"