blog-gem 0.1.9 → 0.1.10

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: c6646f47da171957025d2a686b4ce76bf4e73ad5
4
- data.tar.gz: b03b9f5ea9e6d11f15f26d30968c19a30ac94199
3
+ metadata.gz: e65f171f1d3df441132e57facac4f67d799bc90d
4
+ data.tar.gz: b922fe1676ecebab82254127418977841b19dca4
5
5
  SHA512:
6
- metadata.gz: 4ea901f71db76f327f64d8b3c42771fbd25c122abf3df079b1d8ecc881ad54e59e08b7ebd6b82cf5d0414aaad4a2b11186f8ec5acb4f59560f4b75d33875b09b
7
- data.tar.gz: 3fb2edf044767114d9d5af6ed52ec0f88a6e25d0627943d057bdd3476fcc109f4b016147fe7ee6ff9016d16e02e19db198920572ff099ddb417419dea5904c01
6
+ metadata.gz: a7a1f663dc17662c7fedc1b31200fa4dfc3adc69c8a2db262e752bcdca86e1f6f56f9689cd7c9db929c8c2cd500b0cc310255b547030013cd5914d94e8af50cb
7
+ data.tar.gz: 6bc586149c73d2f55152d30f6d969957b8649ddb9a2980cbb07db8936124f29b1c880c9b264a3dd79b28f64039d2bc32746127d0be72dd0f92c039c922e2a0e4
data/config/routes.rb CHANGED
@@ -2,8 +2,8 @@ Blog::Gem::Engine.routes.draw do
2
2
 
3
3
  get "/" => "blog#index", as: :blogs
4
4
  get "/feed.atom" => "blog#index", as: :blog_feed
5
- get "/api.json" => "blog#index", as: :blog_api_index
6
- get "/api/:id.json" => "blog#api", as: :blog_api_show
5
+ get "/api" => "blog#index", as: :blog_api_index
6
+ get "/api/:id" => "blog#api", as: :blog_api_show
7
7
 
8
8
  get "/tag/:tag" => "blog#index", as: :blog_tag
9
9
  get "/category/:category" => "blog#index", as: :blog_category
@@ -1,5 +1,5 @@
1
1
  module Blog
2
2
  module Gem
3
- VERSION = '0.1.9'
3
+ VERSION = '0.1.10'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blog-gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Thelang
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-09-28 00:00:00.000000000 Z
12
+ date: 2017-10-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails