factory_bot 4.11.0 → 4.11.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: 89e05780d4f57018d6825a36765bae4eafd20a5ea7ef0dd087f056a467d7c04a
4
- data.tar.gz: 57af145df0452c560e27c979f3f76a1ee680e6e0e7f10dbb6af253a02943f942
3
+ metadata.gz: 14d67d2d0498cdfe3d47717279561f299566ecd20084af6958e3c5143188ccae
4
+ data.tar.gz: bb6daffb31d969293032bbb2d655c3628095bdd285708fdc93fe2a60e4cd072e
5
5
  SHA512:
6
- metadata.gz: 7bcda07de6b55b94f5ab976c058520adf4340cd6ca4518b06ceda03dc2a76ec190a0ef7519d3273440868b2f2f772f0b56f9c9aa71a990db6c32986b1a4f97c4
7
- data.tar.gz: 57506e51449c9b2516862498a3078e79c4426ff441e96ee46577b83dbafc97bb91b610b176d1d7b9167b722515954cafa2816c98b866ac8b8586cdbe73273e54
6
+ metadata.gz: 24178c541ce3b726ad7274febd2bbf69ccaff9446a15a79b9bfce5525b0e2f63cc4af50a48950abe5b8b80397151bf86c31263463b0d7309093c870cb925c97d
7
+ data.tar.gz: 630e120e664a503de162d11d9dc36f83a7fc5602a8935875cacfb905b28c3cf1c8f0978137281b5aa8d2fed3fa40c236dd567cb7544bca44cb85e1f43fb2ac83
@@ -0,0 +1,6 @@
1
+ lib/**/*.rb
2
+ -
3
+ GETTING_STARTED.md
4
+ CONTRIBUTING.md
5
+ NAME.md
6
+ LICENSE
@@ -188,7 +188,7 @@ factory :user do
188
188
  # Do not use deprecated static attributes
189
189
  admin true
190
190
 
191
- # Use dynamic attribues instead
191
+ # Use dynamic attributes instead
192
192
  admin { true }
193
193
  end
194
194
  ```
data/NEWS CHANGED
@@ -1,3 +1,6 @@
1
+ 4.11.1 (September 7, 2018)
2
+ Documentation: Include .yardopts in the gem to fix broken RubyDoc links
3
+
1
4
  4.11.0 (August, 15, 2018)
2
5
  Bugfix: Do not raise error for valid build_stubbed methods: decrement, increment, and toggle
3
6
  Bugfix: Do not add timestamps with build_stubbed for objects that shouldn't have timestamps
data/README.md CHANGED
@@ -66,13 +66,13 @@ More Information
66
66
  ----------------
67
67
 
68
68
  * [Rubygems](https://rubygems.org/gems/factory_bot)
69
- * [Stack Overflow](http://stackoverflow.com/questions/tagged/factory-bot)
69
+ * [Stack Overflow](https://stackoverflow.com/questions/tagged/factory-bot)
70
70
  * [Issues](https://github.com/thoughtbot/factory_bot/issues)
71
- * [GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS](http://robots.thoughtbot.com/)
71
+ * [GIANT ROBOTS SMASHING INTO OTHER GIANT ROBOTS](https://robots.thoughtbot.com/)
72
72
 
73
- You may also find useful information under the [factory_girl tag on Stack Overflow](http://stackoverflow.com/questions/tagged/factory-girl).
73
+ You may also find useful information under the [factory_girl tag on Stack Overflow](https://stackoverflow.com/questions/tagged/factory-girl).
74
74
 
75
- [GETTING_STARTED]: http://rubydoc.info/gems/factory_bot/file/GETTING_STARTED.md
75
+ [GETTING_STARTED]: https://www.rubydoc.info/gems/factory_bot/file/GETTING_STARTED.md
76
76
 
77
77
  Contributing
78
78
  ------------
@@ -93,7 +93,7 @@ software, and may be redistributed under the terms specified in the
93
93
  About thoughtbot
94
94
  ----------------
95
95
 
96
- ![thoughtbot](http://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg)
96
+ ![thoughtbot](https://presskit.thoughtbot.com/images/thoughtbot-logo-for-readmes.svg)
97
97
 
98
98
  factory_bot is maintained and funded by thoughtbot, inc.
99
99
  The names and logos for thoughtbot are trademarks of thoughtbot, inc.
@@ -105,7 +105,7 @@ See [our other projects][community] or
105
105
  [community]: https://thoughtbot.com/community?utm_source=github
106
106
  [hire]: https://thoughtbot.com/hire-us?utm_source=github
107
107
  [ci-image]: https://travis-ci.org/thoughtbot/factory_bot.svg
108
- [ci]: http://travis-ci.org/thoughtbot/factory_bot?branch=master
108
+ [ci]: https://travis-ci.org/thoughtbot/factory_bot?branch=master
109
109
  [grade-image]: https://codeclimate.com/github/thoughtbot/factory_bot/badges/gpa.svg
110
110
  [grade]: https://codeclimate.com/github/thoughtbot/factory_bot
111
111
  [version-image]: https://badge.fury.io/rb/factory_bot.svg
@@ -1,3 +1,3 @@
1
1
  module FactoryBot
2
- VERSION = "4.11.0".freeze
2
+ VERSION = "4.11.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.11.0
4
+ version: 4.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Clayton
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-08-16 00:00:00.000000000 Z
12
+ date: 2018-09-07 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
@@ -160,6 +160,7 @@ executables: []
160
160
  extensions: []
161
161
  extra_rdoc_files: []
162
162
  files:
163
+ - ".yardopts"
163
164
  - CONTRIBUTING.md
164
165
  - GETTING_STARTED.md
165
166
  - LICENSE