proclaim 0.5.1 → 0.5.2

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: c581e405ffa395fc7c94d025d075ddeb31b45ea2
4
- data.tar.gz: dbe07b5138af328f03a1e8aaeb55ba56c7a98870
3
+ metadata.gz: 30a7d30c92f6a6e60ef0059fa49731c8d7465cb6
4
+ data.tar.gz: b317da58c8ec5e393d74482c6b5191de8f774483
5
5
  SHA512:
6
- metadata.gz: cb126869fb35be8491cdd49b4ca8e5ab1ebc4d38172e7aefd094a3e8ce8ff41b8fdc6d3140bf7fa08fdf3ae32014ac25b79671a7d672f64052c59a195a86f2c3
7
- data.tar.gz: 37b83d529aed93f2e88d82dc2bafd45611f6e50bb20cf1249e46586ca50fce501185c01449bc8121549da4d1bfb883d32845a8cbf2e2db761481a908c4553fc7
6
+ metadata.gz: 54887e09dff9d5eb8e7b7a884b6391f5796a4da97ec0b6113b9eb89c81668a65f4dd34f53dce1e837239ff85fd8614d608e77ab0b4c41be8e043a2e9b1516d27
7
+ data.tar.gz: af88f27f7c14a0e08ef29b6343d98ea35387ea0346dad5810521a5731442a1ec36d8ab3feb5e548a9939678eb9c5c6b0cdf53fefb6b74e0e3d034022275e9b94
data/CHANGELOG CHANGED
@@ -1,3 +1,6 @@
1
+ v 0.5.2
2
+ - Fixed broken migration adding slugs to posts
3
+
1
4
  v 0.5.1
2
5
  - Fixed bad post body placeholder
3
6
 
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.1"
32
+ gem 'proclaim', "~> 0.5.2"
33
33
  ```
34
34
 
35
35
  Run `bundle install` to install it.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.1
1
+ 0.5.2
@@ -1,7 +1,7 @@
1
1
  class AddSlugToPosts < ActiveRecord::Migration
2
2
  def change
3
3
  change_table :proclaim_posts do |t|
4
- t.string :slug, null: false
4
+ t.string :slug
5
5
  end
6
6
 
7
7
  # This ensures that even if two clients try to create the same
@@ -1,3 +1,3 @@
1
1
  module Proclaim
2
- VERSION = "0.5.1"
2
+ VERSION = "0.5.2"
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.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Fazzari