guts 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/guts/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b799fbf8f9d68a6f349b1811bb75a4973f58c239
|
4
|
+
data.tar.gz: e5f9f97b10b4bbd2ad93cfeafceddceaeb8547cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c26d7a8fcaeda6ab45203fa4492258bec274931707a91c424276df54a5c4354ebee5c1c7b1918177f95e27dcee2b6f667c9355ef928c228a5d497b453502625b
|
7
|
+
data.tar.gz: a714b706d62634a6d85ad94b0731d0ac539c5a80b40fe8f3e867b3d5d9ea1110dd1116f1703f3adcabf0ad4b1047368c5733ace519c2b05a9e7e90ebe0fc5214
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
|
+
# Version 1.3.2
|
2
|
+
|
3
|
+
+ Removed Gemfile.lock
|
4
|
+
|
1
5
|
# Version 1.3.1
|
2
6
|
|
3
|
-
+ Added support to have scoped friendly_id to models if using MultiSite. This means siteA.com and siteB.com can both have a content type of "page" without UUID. To upgrade, please run `rake guts:install:migrations && rake db:migrate` which includes a migration to remove the uniqueness index on slug values.
|
7
|
+
+ Added support to have scoped friendly_id to models if using MultiSite. This means siteA.com and siteB.com can both have a content type of "page" without UUID. To upgrade, please run `bundle exec rake guts:install:migrations && bundle exec rake db:migrate RAILS_ENV=YOURRAILSENV` which includes a migration to remove the uniqueness index on slug values.
|
4
8
|
|
5
9
|
# Version 1.3.0
|
6
10
|
|
data/lib/guts/version.rb
CHANGED