tenon 2.0.4 → 2.0.5
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/config/initializers/tenon.rb +9 -0
- data/lib/tenon/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: f3d72628d8d927570e2f9a49f039ac6446fe18c1
|
|
4
|
+
data.tar.gz: 48a4042713755b843b2b53e167e0624c2650a468
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e3926d69d75bcd9b9dd465a5c2a189274a2395dbc1cbdceaaaf878d64a24fe3ce1dd019995ede5448c3556555bcac52c08d4f057a1602914598ab2e2c61fc31
|
|
7
|
+
data.tar.gz: cae46a7633a1ea0bda6d0ce8052cd74a8aaf2c2b318781a0ad61d072ffdb89b90a465d68533ee080b9b56ffff8ea3fb7a3a6121c04e619bd2d986bfd8da86b0f
|
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
# by the site developer. There is a Settings module built into Tenon
|
|
3
3
|
# where you can expose other settings to your client.
|
|
4
4
|
Tenon.configure do |config|
|
|
5
|
+
# Define the details of the server that will be serving JS and CSS
|
|
6
|
+
# assets in development
|
|
7
|
+
config.dev_assets = {
|
|
8
|
+
protocol: 'http',
|
|
9
|
+
host: 'localhost',
|
|
10
|
+
port: '9999',
|
|
11
|
+
dir: '/assets'
|
|
12
|
+
}
|
|
13
|
+
|
|
5
14
|
# Define all your breakpoints and associated tenon_content widths.
|
|
6
15
|
# This is necessary because you may have multiple models with tenon_content
|
|
7
16
|
# with different maximum widths and therefore different widths at various
|
data/lib/tenon/version.rb
CHANGED