lines-engine 0.4 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f83af3f846afa013fa55aac736ddec0d5f685fff
4
- data.tar.gz: 6ffefaa4ad0f1cdd4de98cfb326007794db219be
3
+ metadata.gz: 101f163398b12ef54a3476b8af771715e00fc26c
4
+ data.tar.gz: 88cc960e719516e6ab883b42844f5f8d0df9c0db
5
5
  SHA512:
6
- metadata.gz: a1cca4cd481dd1c3df923cbcc43217836af82bafd99d749335b964358120a2b74e1ca4cf3898809ed48f452cd2753ba1cf473a95a1681aafc162db6f2575c1ca
7
- data.tar.gz: baa9e13e55d96405632c7ddfa84d474936b89006493beb02ff35574ed5c0ed59852abc6ace91773218756561665fed573621ad2dde65857b08acc10a9c984506
6
+ metadata.gz: d9f330b34659e4514b07745e30e07dada4e26e9d6991ffc2c61ff53f9e14005863a628b11688307aa46d0ce4e9509d246c4755aa4e72ffa4c81c84004746338a
7
+ data.tar.gz: eb3ac038a70817247368a1b41d9fc87841ba24b0b62ccc23ffab689786494638afaedc1755b8c7d3f3dc488af8e9e83ac66e1da15f630ae8da1b46317f4bc59a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.1
4
+
5
+ - Meta Tags and OpenGraph Tags fixed
6
+
3
7
  ## 0.4
4
8
 
5
9
  - CSS finetuning. CSS files are now splitted into semantic parts.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lines-engine (0.4)
4
+ lines-engine (0.4.1)
5
5
  acts-as-taggable-on (~> 3.2.6, >= 3.2.6)
6
6
  bcrypt (~> 3.1.0, >= 3.1.0)
7
7
  carrierwave (~> 0.10.0, >= 0.10.0)
@@ -224,10 +224,10 @@ GEM
224
224
  multi_json (~> 1.0)
225
225
  rack (~> 1.0)
226
226
  tilt (~> 1.1, != 1.3.0)
227
- sprockets-rails (2.2.0)
227
+ sprockets-rails (2.1.4)
228
228
  actionpack (>= 3.0)
229
229
  activesupport (>= 3.0)
230
- sprockets (>= 2.8, < 4.0)
230
+ sprockets (~> 2.8)
231
231
  sshkit (1.5.1)
232
232
  colorize
233
233
  net-scp (>= 1.1.2)
@@ -50,9 +50,9 @@ module Lines
50
50
  @first_page = true
51
51
  @article = Article.published.find(params[:id])
52
52
  @article.teaser = nil unless @article.teaser.present?
53
- meta_tags = { title: SITE_TITLE,
53
+ meta_tags = { title: @article.title,
54
54
  type: 'article',
55
- url: 'meta_og_url',
55
+ url: url_for(@article),
56
56
  site_name: SITE_TITLE,
57
57
  }
58
58
  meta_tags[:image] = CONFIG[:host] + @article.image_url if @article.image_url.present?
data/lib/lines/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Lines
2
- VERSION = "0.4"
2
+ VERSION = "0.4.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lines-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.4'
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Opoloo GbR
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-06 00:00:00.000000000 Z
11
+ date: 2014-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: orm_adapter