phcpresspro 2.0.1 → 2.1.0

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: 488c89fe003157d94a73a119d0dfaa57eb4eccab
4
- data.tar.gz: 27b6370190cad73882237f89da6b6a0ca053158c
3
+ metadata.gz: f0b43d2458afcd360bd25119050fdaeae4fdefe4
4
+ data.tar.gz: 1b5b4a54e27210e71cb8f1f97c71c2424c972c4b
5
5
  SHA512:
6
- metadata.gz: 247671fda1268e2bc946c976b838e93a53a0a5460673039c7b825179cdcae3d7435963007d62d563b86e3392fee8eadda6a626f1d025712d86858dd1f7893a8d
7
- data.tar.gz: 317bd1e9dfc1128e464d34327cc257da791f5a3866bee78afc11bd14379e193f988d128fdc63d5df1c5002ad80e2d731fdc68b2be2e8b703929eca6c779de785
6
+ metadata.gz: e08c46b2d3414c01e26e134292a9b52492d3681ef4f9ccdfe49fa6b9d9d9ba29a3f582d67e3eae1b963e0161ba9c09c661076d8eaf86fb8cf00023aef8601053
7
+ data.tar.gz: 450bf00abab2cb1b955871da6010d019bd15f8de4b4a08daf1f252397a1e811db6622e6e9861fa6893ab3037e106b2b428868d8a9fedc4ba9ee4543f4c8846e7
data/README.md CHANGED
@@ -0,0 +1,8 @@
1
+ *****Common Commands
2
+
3
+ **Installation:**
4
+
5
+ gem 'phcpresspro', '~> 2.0', '>= 2.0.1'
6
+ rake phcpress:install:migrations
7
+
8
+ **Notes:**
@@ -8,6 +8,7 @@ class CreatePhcpressproNewsPosts < ActiveRecord::Migration
8
8
  t.text :newspstexcerpts
9
9
  t.string :pstimage
10
10
 
11
+ t.integer :pstcategory_id
11
12
  t.integer :user_id
12
13
 
13
14
  t.timestamps null: false
@@ -8,6 +8,7 @@ class CreatePhcpressproBlogPosts < ActiveRecord::Migration
8
8
  t.text :blogpstexcerpts
9
9
  t.string :pstimage
10
10
 
11
+ t.integer :pstcategory_id
11
12
  t.integer :user_id
12
13
 
13
14
  t.timestamps null: false
@@ -1,3 +1,3 @@
1
1
  module Phcpresspro
2
- VERSION = "2.0.1"
2
+ VERSION = "2.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpresspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
@@ -468,8 +468,6 @@ files:
468
468
  - db/migrate/20160316131626_create_phcpresspro_news_posts.rb
469
469
  - db/migrate/20160316131650_create_phcpresspro_blog_posts.rb
470
470
  - db/migrate/20160424211134_create_phcpresspro_categories.rb
471
- - db/migrate/20160425194021_add_phcpresspro_category_to_phcpress_blog_posts.rb
472
- - db/migrate/20160425194321_add_phcpresspro_category_to_phcpress_news_post.rb
473
471
  - lib/phcpresspro.rb
474
472
  - lib/phcpresspro/engine.rb
475
473
  - lib/phcpresspro/version.rb
@@ -1,7 +0,0 @@
1
- class AddPhcpressproCategoryToPhcpressproBlogPosts < ActiveRecord::Migration
2
-
3
- def change
4
- add_column :phcpresspro_blog_posts, :pstcategory_id, :string
5
- end
6
-
7
- end
@@ -1,7 +0,0 @@
1
- class AddPhcpressproCategoryToPhcpressproNewsPost < ActiveRecord::Migration
2
-
3
- def change
4
- add_column :phcpresspro_news_posts, :pstcategory_id, :string
5
- end
6
-
7
- end