quadro 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/images/quadro/favicon.ico +0 -0
- data/app/assets/images/quadro/quadro-logo-mini.png +0 -0
- data/app/assets/images/quadro/quadro-logo.png +0 -0
- data/app/models/quadro/asset/cover.rb +1 -1
- data/app/models/quadro/asset/image.rb +1 -1
- data/app/models/quadro/asset/slide.rb +1 -1
- data/app/views/quadro/shared/_navigation.html.haml +1 -1
- data/lib/generators/quadro/install/templates/app/assets/images/quadro/favicon.ico +0 -0
- data/lib/generators/quadro/install/templates/app/assets/images/quadro/quadro-logo-mini.png +0 -0
- data/lib/generators/quadro/install/templates/app/assets/images/quadro/quadro-logo.png +0 -0
- data/lib/generators/quadro/install/templates/app/views/quadro/shared/_navigation.html.haml +1 -1
- data/lib/quadro/version.rb +1 -1
- data/test/dummy/app/assets/images/quadro/favicon.ico +0 -0
- data/test/dummy/app/assets/images/quadro/quadro-logo-mini.png +0 -0
- data/test/dummy/app/assets/images/quadro/quadro-logo.png +0 -0
- data/test/dummy/app/views/quadro/shared/_navigation.html.haml +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d8ebe2d29be95a710155dbad56e296246995c55
|
4
|
+
data.tar.gz: ebd33429821026d875411481710152fd28202d6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5907059fd39b17d31a9ba83868e46088afe0c5acbe79957723fa5e24a2b41a97f50abd460c6a29aebbf994ac041de49f6578c3baf95587cca495cd258a35237e
|
7
|
+
data.tar.gz: e2636f1c9ac099edcdbcc577110146b4841751505b204b45340d4efedc2464d243395d46f9926284d59f9e52d634589c0ff7214d3bd27930d0945315160cdc9f
|
Binary file
|
Binary file
|
Binary file
|
@@ -3,7 +3,7 @@ module Quadro
|
|
3
3
|
# attributes
|
4
4
|
store :settings, accessors: [:width, :height, :alt]
|
5
5
|
# attr_accessible :width, :height, :alt
|
6
|
-
has_attached_file :attachment, styles: { thumb: '200x200#', small: '800x600>', medium: '1024x768>', large: '1280x1024>' }, default_url: 'quadro/missing/cover/:style.png'
|
6
|
+
has_attached_file :attachment, styles: { thumb: '200x200#', small: '800x600>', medium: '1024x768>', large: '1280x1024>' }, default_url: 'quadro/missing/cover/:style.png', use_timestamp: false
|
7
7
|
|
8
8
|
# validations
|
9
9
|
validates :alt, length: { maximum: 60 }
|
@@ -3,7 +3,7 @@ module Quadro
|
|
3
3
|
# attributes
|
4
4
|
store :settings, accessors: [:width, :height, :alt]
|
5
5
|
# attr_accessible :width, :height, :alt
|
6
|
-
has_attached_file :attachment, styles: { thumb: '200x200#', small: '320x240>', medium: '640x480>', large: '800x600>' }, default_url: 'quadro/missing/image/:style.png'
|
6
|
+
has_attached_file :attachment, styles: { thumb: '200x200#', small: '320x240>', medium: '640x480>', large: '800x600>' }, default_url: 'quadro/missing/image/:style.png', use_timestamp: false
|
7
7
|
|
8
8
|
# validations
|
9
9
|
validates :alt, length: { maximum: 60 }
|
@@ -3,7 +3,7 @@ module Quadro
|
|
3
3
|
# attributes
|
4
4
|
store :settings, accessors: [:width, :height, :alt, :href]
|
5
5
|
# attr_accessible :width, :height, :alt, :href
|
6
|
-
has_attached_file :attachment, styles: { thumb: '200x200#', small: '640x480>', medium: '800x600>', large: '1024x768>' }, default_url: 'quadro/missing/slide/:style.png'
|
6
|
+
has_attached_file :attachment, styles: { thumb: '200x200#', small: '640x480>', medium: '800x600>', large: '1024x768>' }, default_url: 'quadro/missing/slide/:style.png', use_timestamp: false
|
7
7
|
|
8
8
|
# validations
|
9
9
|
validates :alt, length: { maximum: 60 }
|
Binary file
|
Binary file
|
Binary file
|
data/lib/quadro/version.rb
CHANGED
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: quadro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hugo Gilmar Erazo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-07-
|
11
|
+
date: 2016-07-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -572,7 +572,7 @@ dependencies:
|
|
572
572
|
version: '1.1'
|
573
573
|
description: Quadro Content Management System
|
574
574
|
email:
|
575
|
-
- hugogilmar@
|
575
|
+
- hugogilmar@nanotutoriales.com
|
576
576
|
executables: []
|
577
577
|
extensions: []
|
578
578
|
extra_rdoc_files: []
|