bhf 1.0.0.beta11 → 1.0.0.beta12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +9 -0
- data/VERSION +1 -1
- data/app/assets/stylesheets/bhf/application.sass +9 -1
- data/app/views/bhf/form/column/_rich_text.html.haml +1 -1
- data/bhf.gemspec +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0e968b63885e346dfd386dd19461dd351514b2c0e846fe96a5b594a97109d101
|
4
|
+
data.tar.gz: 0e0ef9cf6d583f605d4768cb6327d77f21536d94da34e5f8698805da595089a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f6f84348ee9e9eb77f81c356abe03c2fe6de24f56c3dd66768ce23cef3e3d98eaebdb9cec608783422355aeab2fcbc175405377cc024216ce647ee8bfc5667a
|
7
|
+
data.tar.gz: fa906b8237814c1ad3afa1c0409c2fc0d8fbcef9778cd0b0b9ef333a33015d695059258576cced5c241e74b0be349ed7c71348d1067d3dfd42df2d0e875ff72f
|
data/README.md
CHANGED
@@ -28,3 +28,12 @@
|
|
28
28
|
|
29
29
|
Copyright (c) 2014 Anton Pawlik. See LICENSE.txt for
|
30
30
|
further details.
|
31
|
+
|
32
|
+
|
33
|
+
### Build
|
34
|
+
|
35
|
+
gem install juwelier
|
36
|
+
rake gemspec:generate
|
37
|
+
git commit -m 'Regenerate gemspec for version 1.0.0.beta11' -a
|
38
|
+
gem build bhf.gemspec
|
39
|
+
gem push bhf-1.0.0.beta11.gem
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.0.
|
1
|
+
1.0.0.beta12
|
@@ -456,6 +456,12 @@ table.data_table
|
|
456
456
|
cursor: move
|
457
457
|
|
458
458
|
|
459
|
+
trix-editor
|
460
|
+
border: 1px solid transparent
|
461
|
+
background: $w1
|
462
|
+
.attachment-gallery
|
463
|
+
text-align: center
|
464
|
+
|
459
465
|
.default_input
|
460
466
|
border: 1px solid transparent
|
461
467
|
background: $w1
|
@@ -581,7 +587,9 @@ form
|
|
581
587
|
.uploaded_file,
|
582
588
|
.mooeditable-container,
|
583
589
|
.wmd-button-row,
|
584
|
-
.map_canvas
|
590
|
+
.map_canvas,
|
591
|
+
trix-toolbar,
|
592
|
+
trix-editor
|
585
593
|
margin-left: -6px
|
586
594
|
input[type="file"]
|
587
595
|
margin-left: -5px
|
@@ -1,2 +1,2 @@
|
|
1
1
|
= node f, field do
|
2
|
-
= f.rich_text_area field.name, class: '
|
2
|
+
= f.rich_text_area field.name, class: 'trix_input trix-content'
|
data/bhf.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: bhf 1.0.0.
|
5
|
+
# stub: bhf 1.0.0.beta12 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "bhf".freeze
|
9
|
-
s.version = "1.0.0.
|
9
|
+
s.version = "1.0.0.beta12"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1".freeze) if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib".freeze]
|