proclaim 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3097ffe58a4ddda60a5dea886f2ee9397bb39acb
4
- data.tar.gz: f80505cac5a11b356e077aa93191d31928fba9d2
3
+ metadata.gz: c581e405ffa395fc7c94d025d075ddeb31b45ea2
4
+ data.tar.gz: dbe07b5138af328f03a1e8aaeb55ba56c7a98870
5
5
  SHA512:
6
- metadata.gz: 1c61057de07fd97a72401a70f8bfd034066d4417e654b9864ae43943140fb190c18bb11400c806e7615484457f4f8ba14739ccd4ca6756bf89f6a5d7c0a04d43
7
- data.tar.gz: d6700afa0c73bf5e8c4fe07e1d08c6726f56f849fdeebf24565a499b741941913d9c014833e028aeecb52b4ede9a80fda3c9fa4c641b2dd4cd1ae38d4612f2ef
6
+ metadata.gz: cb126869fb35be8491cdd49b4ca8e5ab1ebc4d38172e7aefd094a3e8ce8ff41b8fdc6d3140bf7fa08fdf3ae32014ac25b79671a7d672f64052c59a195a86f2c3
7
+ data.tar.gz: 37b83d529aed93f2e88d82dc2bafd45611f6e50bb20cf1249e46586ca50fce501185c01449bc8121549da4d1bfb883d32845a8cbf2e2db761481a908c4553fc7
data/CHANGELOG CHANGED
@@ -1,8 +1,11 @@
1
- 0.5.0
1
+ v 0.5.1
2
+ - Fixed bad post body placeholder
3
+
4
+ v 0.5.0
2
5
  - Fixed bug causing possible blank excerpt
3
6
  - Make post URLs more friendly (backward-compatible)
4
7
 
5
- 0.4.0
8
+ v 0.4.0
6
9
  - Added media query to emails for better display on mobile devices
7
10
  - Added callbacks as a way for main app to be notified of new posts,
8
11
  comments, or subscriptions. Configured in initializer
data/README.md CHANGED
@@ -29,7 +29,7 @@ Proclaim 0.5 works with Rails 4.2 and on, with Ruby 1.9.3 and on. Add it to your
29
29
  Gemfile with:
30
30
 
31
31
  ```ruby
32
- gem 'proclaim', "~> 0.5.0"
32
+ gem 'proclaim', "~> 0.5.1"
33
33
  ```
34
34
 
35
35
  Run `bundle install` to install it.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.0
1
+ 0.5.1
@@ -99,12 +99,16 @@ figure.mediumInsert-images
99
99
  box-sizing: border-box;
100
100
  }
101
101
 
102
- .medium-editor-placeholder:after
102
+ div.post_body.editable:after
103
103
  {
104
- position: relative;
104
+ top: 0;
105
105
  }
106
106
 
107
- h1.post_title.editable:after
107
+ h1.post_title.editable
108
108
  {
109
- text-align: center;
109
+ &:after
110
+ {
111
+ position: relative;
112
+ text-align: center;
113
+ }
110
114
  }
@@ -1,3 +1,3 @@
1
1
  module Proclaim
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: proclaim
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Fazzari