blog_boi 0.0.1 → 0.0.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
  SHA256:
3
- metadata.gz: '09ac692bef7327594881b23ee820dd5e3ae06550a6473637451e0b4f6590e9bd'
4
- data.tar.gz: 464037cdd2cf13aa869203177137aba5d6df3a81036f409cbfe2b7eece2eb16f
3
+ metadata.gz: 9edccc6733c4fd1af893fd5f01ee68ee9f47a9d44a35fa1c67f9024314607552
4
+ data.tar.gz: 9521dcbf140d316907f8b26dd64470e10b8726bd9068f627ae05c3f73dffedd8
5
5
  SHA512:
6
- metadata.gz: 457d65d6077b50b949c843205ad8e8c7392aa3471154e72dc7e5fcfa6323df272972cff11da62cffa4bf88fead7d65db88401674149a42fa00edabf7b6e139ef
7
- data.tar.gz: 719979962e8672cb6706d009e974d75375334fac2f52f61fdaaf94a6f93987f52ddbbc3b02088dacbd9d5ac472e0c39f73a56594d7c058ea41a9efa536a56eb6
6
+ metadata.gz: cc9ed6b88e1041a55f2a6f79878d0602e4e7129a1196d76022662c09081480921c6bf0a8864778c0d467bb67a140cd6e8a8a35e0984569f9aea43cd729484ed4
7
+ data.tar.gz: 9fc77ff8add34fa38b08b4828ffec34241742e3e092a2b483f4c5832c5292c8aae0bda1c316439ef92c5ca6334b09e30d157807e942bddb6bcf31f66cc22ae0e
data/README.md CHANGED
@@ -2,14 +2,14 @@
2
2
 
3
3
  BlogBoi is a rails gem / engine that provides out-of-the-box blogging functionality to your rails application
4
4
 
5
+ WARNING: v0.0.1 and v0.0.2 are not yet stable / production ready
6
+
5
7
  ## A) Installation
6
8
 
7
9
  1. Add this line to your application's Gemfile:
8
10
 
9
11
  ```ruby
10
- gem 'blog_boi',
11
- git: "git@github.com:charliereese/blog_boi.git",
12
- tag: "v0.0.1"
12
+ gem 'blog_boi', '~> 0'
13
13
  ```
14
14
 
15
15
  _Note: path may move to github and not be relative_
@@ -93,4 +93,29 @@ Override the header or footer by placing your own files at `views/layouts/_heade
93
93
 
94
94
  ## E) License
95
95
 
96
- The gem is currently private property. It will eventually be made available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
96
+ The gem is currently available as open source software under the terms of the [MIT License](https://opensource.org/licenses/MIT).
97
+
98
+ ## F) Contributing
99
+
100
+ This gem is currently not actively accepting contributions.
101
+
102
+ With that in mind, if you'd like to make a fix / change, please create a pull request (and when I have a moment - probably in a couple weeks time - I'll have a look)!
103
+
104
+ ## G) Updating gem version (for maintainers)
105
+
106
+ **G.1 Update version**
107
+
108
+ In `lib/blog_boi/version.rb` update version.
109
+
110
+ **G.2 Build gem**
111
+
112
+ `gem build blog_boi.gemspec`
113
+
114
+ **G.3 Push gem**
115
+
116
+ `gem push blog_boi-X.X.X.gem` (replace X's with version)
117
+
118
+ **G.4 Tag GitHub**
119
+
120
+ `git tag -a vX.X.X -m "Msg"`
121
+ `git push --tags`
@@ -6,7 +6,7 @@
6
6
 
7
7
  <div class="row">
8
8
 
9
- <div class="col-12 mb-neg-md-125-sm-50">
9
+ <div class="col-12 mb-neg-md-125-sm-50 text-center">
10
10
 
11
11
  <% if @article.image.attached? %>
12
12
 
@@ -1,3 +1,3 @@
1
1
  module BlogBoi
2
- VERSION = '0.0.1'
2
+ VERSION = '0.0.2'
3
3
  end
metadata CHANGED
@@ -1,20 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blog_boi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charlie Reese
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-17 00:00:00.000000000 Z
11
+ date: 2019-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: kramdown
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
17
  - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ - - ">="
18
21
  - !ruby/object:Gem::Version
19
22
  version: 2.1.0
20
23
  type: :runtime
@@ -22,6 +25,9 @@ dependencies:
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '2.1'
30
+ - - ">="
25
31
  - !ruby/object:Gem::Version
26
32
  version: 2.1.0
27
33
  - !ruby/object:Gem::Dependency
@@ -29,6 +35,9 @@ dependencies:
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '6.0'
40
+ - - ">="
32
41
  - !ruby/object:Gem::Version
33
42
  version: 6.0.0
34
43
  type: :runtime
@@ -36,6 +45,9 @@ dependencies:
36
45
  version_requirements: !ruby/object:Gem::Requirement
37
46
  requirements:
38
47
  - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '6.0'
50
+ - - ">="
39
51
  - !ruby/object:Gem::Version
40
52
  version: 6.0.0
41
53
  - !ruby/object:Gem::Dependency
@@ -90,17 +102,18 @@ dependencies:
90
102
  name: sqlite3
91
103
  requirement: !ruby/object:Gem::Requirement
92
104
  requirements:
93
- - - ">="
105
+ - - "~>"
94
106
  - !ruby/object:Gem::Version
95
107
  version: '0'
96
108
  type: :development
97
109
  prerelease: false
98
110
  version_requirements: !ruby/object:Gem::Requirement
99
111
  requirements:
100
- - - ">="
112
+ - - "~>"
101
113
  - !ruby/object:Gem::Version
102
114
  version: '0'
103
- description: Easily add blogging functionality to your rails project using BlogBoi.
115
+ description: 'Easily add blogging functionality to your rails project using BlogBoi.
116
+ WARNING: v0.0.1 and v0.0.2 are not yet stable / production ready.'
104
117
  email:
105
118
  - j.charles.reese@gmail.com
106
119
  executables: []