superstore 1.1.0 → 1.1.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 +4 -4
- data/lib/superstore/model.rb +2 -2
- data/superstore.gemspec +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: b55da8bff8e33c782eadee982fd89de1bedb6034
|
|
4
|
+
data.tar.gz: 2fd37acbc35ca272443648625d863d3a234027f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69bba39bfbff615067e0ea35b799359c2632bb431826ab0f772f51dad1778d37582f09065f96a68c6013c957b336f2841a91116ccb3678d8e5d854cf6b327ada
|
|
7
|
+
data.tar.gz: 5be815d4e7650c5c6e361184c5dc72b32d578fa577e3f922c5776f3f73ee657720a98e110e73f0268f3a6a7a5981c336463aa700049726cc891fa3c08981cf97
|
data/lib/superstore/model.rb
CHANGED
|
@@ -9,12 +9,12 @@ module Superstore
|
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def column_family
|
|
12
|
-
warn '`column_family` is deprecated & will be removed in superstore 2.0. Use `table_name` instead.'
|
|
12
|
+
ActiveSupport::Deprecation.warn '`column_family` is deprecated & will be removed in superstore 2.0. Use `table_name` instead.'
|
|
13
13
|
table_name
|
|
14
14
|
end
|
|
15
15
|
|
|
16
16
|
def column_family=(table_name)
|
|
17
|
-
warn '`column_family=` is deprecated & will be removed in superstore 2.0. Use `table_name=` instead.'
|
|
17
|
+
ActiveSupport::Deprecation.warn '`column_family=` is deprecated & will be removed in superstore 2.0. Use `table_name=` instead.'
|
|
18
18
|
self.table_name = table_name
|
|
19
19
|
end
|
|
20
20
|
|
data/superstore.gemspec
CHANGED