dev-portfolio-blog 0.1.4 → 0.1.7

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
  SHA256:
3
- metadata.gz: dc6309102a33db996690ae0f8aa9ec6e02b91c5fee12f9583b3a498a324e51bd
4
- data.tar.gz: 2f255e4fdb163ea99114e3bfee9afb24fea7cb692ff7b3a1bee11634dcfdd2e9
3
+ metadata.gz: 46e9ba4bd273240d9841af909b08ac74e1df3ea67aefafd448346f9d3d991c6d
4
+ data.tar.gz: 28ec7ef34627bff4b694ce7ee4ff4156fa846ce10be273dd544d3796f0fdb89c
5
5
  SHA512:
6
- metadata.gz: 38686cae34c56a8d44b5c70231d6329d6cd613d179eb545b0b93780f7f7a54d5095b5f2edab9b39dd4f70656f5a3f77696b2488e6a5a5e154f78ef60a8366975
7
- data.tar.gz: c355ab8829db0b20b8a572a7989a13da68fbb7a128e6cc36ffcd3cff4ec58f8d31725b150f7101bcd9db4d7353da977deec6657f722b90fb9c3b57c2a2129ade
6
+ metadata.gz: 94bb983796d954ef0afa978d2c7355a82e6f1f568f3c62d5cfc07cf29133f838ff5ebd585aae0c544d2ab19a20509aa2dc00f9d199c7c546189f0f14139272a0
7
+ data.tar.gz: 595b955d07b1d96e5d8c1562b7930842d84e16cd3b6ac8c6430ba3b92151933455e4307f6eacfc6542c2951f664954863c3b2e183c4be309240505e505e0cd58
data/README.md CHANGED
@@ -22,6 +22,18 @@
22
22
 
23
23
  This is a minimal jekyll theme for writing blogs and about yourself.
24
24
 
25
+ ## features
26
+ 1. Google Analytics
27
+ 2. Dark mode
28
+ 3. Disqus comments
29
+ 4. Categorization
30
+ 5. Highly optimized blog
31
+ #### PageSpeed Insights
32
+ * [Home](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Ftherohitjain.com)[(therohitjain.com)](https://therohitjain.com)
33
+ * [Blog](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Ftherohitjain.com/blog/)[(therohitjain.com/blog/)](https://therohitjain.com/blog/)
34
+ * [About](https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Ftherohitjain.com/about/)[(therohitjain.com/about/)](https://therohitjain.com/about/)
35
+
36
+
25
37
  ## Desktop Preview
26
38
 
27
39
  ![Home Page](/screenshots/Home.png?raw=true "Home View of the website")
@@ -63,6 +75,8 @@ To start using the theme you need to follow these steps.
63
75
 
64
76
  Assuming that you started your first website based on `minima` theme from [here](https://jekyllrb.com/docs/)
65
77
 
78
+ Add a `favicon.ico` to the root directory for favicon.
79
+
66
80
  1. Create `blog.md` in the root folder ans set its yaml parameters to
67
81
 
68
82
  ```yaml
@@ -84,43 +98,52 @@ permalink: /about/
84
98
  home_text : [Your Text]
85
99
  ```
86
100
 
87
- 4. In the `_congif.yml` file add a key `resume_url` and set it to the path of the Resume. Also add `author_name` to your name to appear on the website.
101
+ 4. Create a new `categories.md` file in root with following yaml parameters
102
+ ```yaml
103
+ layout: categories
104
+ ```
105
+
106
+ 4. In the `_congif.yml` file add following and change accordingly
88
107
 
89
108
  Path is relative to the root directory
90
109
  ```yaml
91
110
  resume_url: [PATH_TO_RESUME]
92
111
  author_name: [YOUR_NAME]
112
+ description: [SITE_DESCRIPTION]
113
+ url: [WEBSITE_URL]
114
+ google_analytics: '[google analytics Id]'
115
+ disqus:
116
+ shortname: [discus-shotname]
93
117
  ```
94
118
 
95
-
96
- 5. In the `index.md` file add
97
-
98
-
99
119
  ### Minifier
100
120
 
101
121
  Visit [Jekyll-minifier](https://github.com/digitalsparky/jekyll-minifier) and add this to your `_config.yml` file to enable minifier.
102
122
 
103
- ##### Check [_config.yml](https://github.com/rohitjain00/dev-portfolio-blog/blob/master/_config.yml) for example config file.
104
-
105
- =======
106
- ```yaml
107
- home_text : [some-text]
108
- ```
123
+ ### Pagination
109
124
 
110
- Replace "some-text" with your text
125
+ Visit [jekyll-paginate-v2](https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md#site-configuration) and add this to your `_config.yml` file to enable pagination.
111
126
 
112
- 6. Using Google Analytics add
127
+ ### Check [_config.yml](https://github.com/rohitjain00/dev-portfolio-blog/blob/master/_config.yml) for example config file.
113
128
 
114
- ```yaml
115
- google_analytics: [google analytics Id]
116
- ```
117
129
 
130
+ ## Writing a new blog
118
131
 
119
- ### Pagination
132
+ Create a new folder `_posts` in root folder
120
133
 
121
- Visit [jekyll-paginate-v2](https://github.com/sverrirs/jekyll-paginate-v2/blob/master/README-GENERATOR.md#site-configuration) and add this to your `_config.yml` file to enable pagination.
134
+ 1. Create a new markdown file in the format `yyyy-mm-dd-postname.md`
135
+ 2. Make sure that disqus's shortname is valid.
136
+ 3. Add yaml configuartion to the post
122
137
 
123
- Check [_config.yml](https://github.com/rohitjain00/dev-portfolio-blog/blob/master/_config.yml).
138
+ ```yaml
139
+ ---
140
+ layout: post
141
+ comments: [true | false]
142
+ title: Hello World
143
+ categories: [category1, category2]
144
+ ---
145
+ Post Text.
146
+ ```
124
147
 
125
148
 
126
149
  ## Contributing
@@ -136,6 +159,8 @@ Your theme is setup just like a normal Jekyll site! To test your theme, run `bun
136
159
  When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
137
160
  To add a custom directory to your theme-gem, please edit the regexp in `dev-portfolio-blog.gemspec` accordingly.
138
161
 
162
+ ### Read about the themes and how it's implemented [here](https://github.com/rohitjain00/dev-portfolio-blog/wiki/Theme-Management)
163
+
139
164
  ## License
140
165
 
141
166
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,14 @@
1
+ <div id="disqus_thread"></div>
2
+ <script>
3
+ var disqus_config = function () {
4
+ this.page.url = '{{ page.url | absolute_url }}';
5
+ this.page.identifier = '{{ page.url | absolute_url }}';
6
+ };
7
+ (function() {
8
+ var d = document, s = d.createElement('script');
9
+ s.src = 'https://{{ site.disqus.shortname }}.disqus.com/embed.js';
10
+ s.setAttribute('data-timestamp', +new Date());
11
+ (d.head || d.body).appendChild(s);
12
+ })();
13
+ </script>
14
+ <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>
@@ -1,2 +1,2 @@
1
- <select id='themeSelector' onchange="toggleTheme()">
2
- </select>
1
+ <select id='themeSelector' onchange="toggleTheme()" aria-label="Select theme">
2
+ </select>
@@ -4,17 +4,30 @@ title: Blog
4
4
  pagetype: blog
5
5
  ---
6
6
  <!-- This loops through the paginated posts -->
7
- <ul>
8
- {% if paginator.total_posts == 0 %}
9
- <p>No posts right now.</p>
10
- {% else %}
11
- {% for post in paginator.posts %}
12
- <h2><a href="{{ post.url | relative_url }}">{{ post.title }}</a></h2>
13
- <small>{{ post.date | date_to_string }}</small>
14
- <p>{{ post.excerpt }}</p>
15
- {% endfor %}
16
- {% endif %}
7
+
8
+
9
+ {% if paginator.total_posts == 0 %}
10
+ <p>No posts right now.</p>
11
+ {% else %}
12
+ <div class="blogPage-categoryList">
13
+ <ul>
14
+ <li><a href="{{ "/categories/" | relative_url }}">Categories</a> : </li>
15
+ {% for category in site.categories %}
16
+ {% capture category_name %}{{ category | first }}{% endcapture %}
17
+ <li><a href="{{"/categories/#" | append: category_name | relative_url}}">{{category_name}}</a></li>
18
+ {% endfor %}
17
19
  </ul>
20
+ </div>
21
+ <ul class="blog-list">
22
+ {% for post in paginator.posts %}
23
+ <li>
24
+ <a class="blog-heading" href="{{ post.url | relative_url }}">{{ post.title }}</a><span class="date">{{ post.date | date_to_string }}</span>
25
+ <div class="excerpt">{{ post.excerpt }}</div>
26
+ </li>
27
+ {% endfor %}
28
+ </ul>
29
+ {% endif %}
30
+
18
31
  <hr>
19
32
  {% if paginator.total_pages > 1 %}
20
33
  <ul>
@@ -0,0 +1,23 @@
1
+ ---
2
+ layout: description
3
+ permalink: /categories/
4
+ title: Categories
5
+ ---
6
+
7
+
8
+ <div id="archives">
9
+ {% for category in site.categories %}
10
+ <div class="archive-group">
11
+ {% capture category_name %}{{ category | first }}{% endcapture %}
12
+ <div id="#{{ category_name | slugize }}"></div>
13
+ <h3 class="category-head">{{ category_name }}</h3>
14
+ <a name="{{ category_name | slugize }}"></a>
15
+ {% for post in site.categories[category_name] %}
16
+ <article class="archive-item">
17
+ &nbsp;&nbsp;<a href="{{ post.url | relative_url }}">{{post.title}} - {{ post.date | date_to_string }}</a>
18
+ </article>
19
+ <br>
20
+ {% endfor %}
21
+ </div>
22
+ {% endfor %}
23
+ </div>
@@ -1,10 +1,42 @@
1
1
  <!doctype html>
2
- <html>
2
+ <html lang="en">
3
3
  <head>
4
4
  <meta charset="utf-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>{{ page.title }}</title>
7
- <link rel="stylesheet" href="{{"/assets/css/styles.css" | relative_url}}">
6
+ <link rel="shortcut icon" href="{{"/favicon.ico" | relative_url }}" type="image/x-icon" />
7
+ <link rel="dns-prefetch" href="https://{{ site.disqus.shortname }}.disqus.com">
8
+ <meta
9
+ itemprop="description"
10
+ name="description"
11
+ content="
12
+ {% if page.description %}
13
+ {{ page.description | truncate: 160 }}
14
+ {% else %}
15
+ {{ site.description | truncate: 160 }}
16
+ {% endif %}"
17
+ />
18
+ <title>
19
+ {%if page.title %}
20
+ {{ page.title }}
21
+ {% else %}
22
+ {{ site.title }}
23
+ {% endif %}
24
+ </title>
25
+ <!-- async load css file -->
26
+ <link rel="stylesheet" href="{{"/assets/css/styles.css" | relative_url}}" media="none" onload="if(media!='all')media='all'">
27
+ <!-- Load css when script is disabled -->
28
+ <noscript><link rel="stylesheet" href="{{"/assets/css/styles.css" | relative_url}}"></noscript>
29
+
30
+ <!-- Dns Prefetch the google analytics -->
31
+ <link rel="dns-prefetch" href="www.googletagmanager.com">
32
+ <link rel="dns-prefetch" href="www.google-analytics.com">
33
+
34
+
35
+
36
+ <!-- Load the script async and wait for the page to render for script to execute -->
37
+ <script defer src="{{"/assets/js/theme.js" | relative_url }}"></script>
38
+ <script defer src="{{"/assets/js/script.js" | relative_url }}"></script>
39
+
8
40
  {% include analytics.html %}
9
41
  {% feed_meta %}
10
42
  {% seo %}
@@ -13,7 +45,5 @@
13
45
  <body onload="onLoad()">
14
46
  {% include themeSelector.html %}
15
47
  {{ content }}
16
- <script src="{{"/assets/js/theme.js" | relative_url }}"></script>
17
- <script src="{{"/assets/js/script.js" | relative_url }}"></script>
18
48
  </body>
19
49
  </html>
@@ -3,4 +3,22 @@ layout: description
3
3
  ---
4
4
  <h2>{{ page.title }}</h2>
5
5
  <small>{{ post.date | date_to_string }}</small>
6
- {{content}}
6
+ {{content}}
7
+
8
+ <div class="post-categories">
9
+ Categories :
10
+ {% if post %}
11
+ {% assign categories = post.categories %}
12
+ {% else %}
13
+ {% assign categories = page.categories %}
14
+ {% endif %}
15
+ {% for category in categories %}
16
+ <a href="{{site.url}}/categories/#{{category|slugize}}">{{category}}</a>
17
+ {% unless forloop.last %}&nbsp;{% endunless %}
18
+ {% endfor %}
19
+ </div>
20
+
21
+ {% if site.disqus.shortname and page.comments %}
22
+ <hr>
23
+ {% include disqus_comments.html %}
24
+ {% endif %}
@@ -9,13 +9,15 @@
9
9
  html {
10
10
  --primary-background-color: white;
11
11
  --primary-text-color: #222;
12
+ padding: 0;
13
+ margin: 0;
12
14
  }
13
15
 
14
16
  body {
15
17
  background-color: var(--primary-background-color);
16
18
  color: var(--primary-text-color);
17
19
  transition: background 0.1s ease-in, color 0.1s ease-in;
18
- font-size: 120%;
20
+ // font-size: 120%;
19
21
  }
20
22
  .mid-section-home {
21
23
  text-align: center;
@@ -91,80 +93,128 @@ body {
91
93
  width: 60%;
92
94
  margin: 0 auto;
93
95
  margin-top: 50px;
94
-
95
96
  @include mediaQuery(tablet-width) {
96
97
  width: 70%;
97
98
  }
98
99
  @include mediaQuery(phone-width) {
99
100
  width: 95%;
100
101
  }
101
- }
102
- nav {
103
- display: flex;
104
- flex-direction: row;
105
- justify-content: space-between;
106
- align-items: stretch;
107
- flex-wrap: wrap;
108
- border-bottom: 2px solid var(--primary-text-color);
109
- * {
110
- margin: 10px;
111
- }
112
- h1 {
113
- // align-self: flex-start;
114
- font-size: 40px;
115
- }
116
- ul {
117
- flex-shrink: 1;
118
- padding: 0 10px;
119
- li {
120
- padding: 0 10px;
121
- display: inline-block;
122
- a {
123
- text-decoration : none;
124
- color: var(--primary-text-color);
125
- &:hover {
126
- border-bottom: 2px solid var(--primary-text-color);
102
+ nav {
103
+ display: flex;
104
+ flex-direction: row;
105
+ justify-content: space-between;
106
+ flex-wrap: wrap;
107
+ border-bottom: 2px solid var(--primary-text-color);
108
+ h1 {
109
+ // align-self: flex-start;
110
+ font-size: 40px;
111
+ flex-grow: 2;
112
+ text-align: left;
113
+ margin: 10px;
114
+ }
115
+ ul {
116
+ display: flex;
117
+ flex-direction: row;
118
+ flex-wrap: wrap;
119
+ justify-content: end;
120
+ align-items: center;
121
+ flex-grow: 5;
122
+ li {
123
+ padding: 0 20px;
124
+ list-style-type: none;
125
+ a {
126
+ text-decoration : none;
127
127
  color: var(--primary-text-color);
128
+ &:hover {
129
+ border-bottom: 2px solid var(--primary-text-color);
130
+ color: var(--primary-text-color);
131
+ }
132
+ }
133
+ @include mediaQuery(phone-width) {
134
+ text-align: center;
135
+ padding: 0 10px;
128
136
  }
129
137
  }
130
- @include mediaQuery(phone-width) {
138
+ }
139
+ @include mediaQuery(tablet-width) {
140
+ flex-direction: column;
141
+ justify-content: center;
142
+ align-items: center;
143
+ ul {
144
+ justify-content: center;
145
+ }
146
+ h1 {
131
147
  text-align: center;
132
- padding: 0 10px;
133
148
  }
134
149
  }
135
150
  }
136
- @include mediaQuery(phone-width) {
137
- flex-direction: column;
138
- justify-content: center;
139
- text-align: center;
140
- * {
141
- flex-basis: 100%;
151
+ .sub-mid-section-cover {
152
+ width: 100%;
153
+ margin: 0 auto;
154
+ overflow: hidden;
155
+ img {
156
+ max-width: 100%;
157
+ }
158
+ a {
159
+ color: var(--primary-text-color);
142
160
  }
143
161
  }
144
162
  }
145
- .sub-mid-section-cover {
146
- width: 90%;
147
- margin: 0 auto;
148
163
 
149
- * {
150
- max-width: 100%;
151
- overflow-x: scroll;
152
- }
153
- a {
154
- color: var(--primary-text-color);
155
- }
156
- }
157
- .blog-section-list {
158
- a {
159
- color: var(--primary-text-color);
160
- }
161
- }
162
- .container-404 {
163
- text-align: center;
164
- }
164
+
165
+ // .blog-section-list {
166
+ // a {
167
+ // color: var(--primary-text-color);
168
+ // }
169
+ // }
170
+ // .container-404 {
171
+ // text-align: center;
172
+ // }
165
173
 
166
174
  #themeSelector {
167
175
  position: fixed;
168
176
  top: 5px;
169
177
  right: 5px;
178
+ background: var(--primary-background-color);
179
+ color: var(--primary-text-color);
180
+ border-radius: 5px;
181
+ border: 0;
182
+ }
183
+
184
+ .post-categories {
185
+ text-align: right;
186
+ }
187
+ .blog-list {
188
+ list-style: none;
189
+ padding-left: 0;
190
+ li {
191
+ margin-bottom: 50px;
192
+ .excerpt {
193
+ font-size: 15px;
194
+ }
195
+ .blog-heading {
196
+ font-size: 25px;
197
+ font-weight: 800;
198
+ }
199
+ .date {
200
+ font-size: 15px;
201
+ opacity: 0.8;
202
+ margin-left: 20px;
203
+ }
204
+ }
205
+
206
+ }
207
+ .blogPage-categoryList {
208
+ ul {
209
+ list-style-type: none;
210
+ display: flex;
211
+ flex-wrap: wrap;
212
+ padding-left: 0;
213
+ li {
214
+ margin: 10px 10px;
215
+ }
216
+ li:first-child {
217
+ margin-left: 0;
218
+ }
219
+ }
170
220
  }
@@ -1,17 +1,20 @@
1
1
  function onLoad() {
2
2
  var themeSelector = document.getElementById('themeSelector');
3
- console.log('inside on load method');
4
3
  for (var themeName in themeMap) {
5
- console.log('inside loop' + ' ' + themeName);
6
4
  var opt = document.createElement('option');
7
5
  opt.value = themeName;
8
6
  opt.innerHTML = capitalizeFirstLetter(themeName);
9
7
  themeSelector.appendChild(opt);
10
8
  }
9
+ if (localStorage.getItem('theme') != null) {
10
+ themeSelector.value = localStorage.getItem('theme');
11
+ toggleTheme();
12
+ }
11
13
  }
12
14
 
13
15
  function toggleTheme() {
14
16
  var themeName = themeSelector.value;
17
+ localStorage.setItem('theme', themeName);
15
18
  var element = document.getElementsByTagName('html')[0];
16
19
  changeTheme(element, themeMap[themeName]);
17
20
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dev-portfolio-blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rohit Jain
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-06 00:00:00.000000000 Z
11
+ date: 2020-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -16,113 +16,155 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.8'
19
+ version: 3.8.7
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.8'
26
+ version: 3.8.7
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: jekyll-seo-tag
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 2.6.1
33
+ version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ">="
39
39
  - !ruby/object:Gem::Version
40
- version: 2.6.1
40
+ version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jekyll-feed
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ">="
46
46
  - !ruby/object:Gem::Version
47
- version: 0.13.0
47
+ version: '0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 0.13.0
54
+ version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: jekyll-sitemap
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 1.4.0
61
+ version: '0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 1.4.0
68
+ version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: jekyll-paginate-v2
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - "~>"
73
+ - - ">="
74
74
  - !ruby/object:Gem::Version
75
- version: 1.9.4
75
+ version: '0'
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - "~>"
80
+ - - ">="
81
81
  - !ruby/object:Gem::Version
82
- version: 1.9.4
82
+ version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: jekyll-minifier
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: jekyll-assets
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: sprockets
85
113
  requirement: !ruby/object:Gem::Requirement
86
114
  requirements:
87
115
  - - "~>"
88
116
  - !ruby/object:Gem::Version
89
- version: 0.1.10
117
+ version: '3.7'
90
118
  type: :runtime
91
119
  prerelease: false
92
120
  version_requirements: !ruby/object:Gem::Requirement
93
121
  requirements:
94
122
  - - "~>"
95
123
  - !ruby/object:Gem::Version
96
- version: 0.1.10
124
+ version: '3.7'
125
+ - !ruby/object:Gem::Dependency
126
+ name: autoprefixer-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
97
139
  - !ruby/object:Gem::Dependency
98
140
  name: bundler
99
141
  requirement: !ruby/object:Gem::Requirement
100
142
  requirements:
101
- - - "~>"
143
+ - - ">="
102
144
  - !ruby/object:Gem::Version
103
- version: 2.1.4
145
+ version: '0'
104
146
  type: :development
105
147
  prerelease: false
106
148
  version_requirements: !ruby/object:Gem::Requirement
107
149
  requirements:
108
- - - "~>"
150
+ - - ">="
109
151
  - !ruby/object:Gem::Version
110
- version: 2.1.4
152
+ version: '0'
111
153
  - !ruby/object:Gem::Dependency
112
154
  name: rake
113
155
  requirement: !ruby/object:Gem::Requirement
114
156
  requirements:
115
- - - "~>"
157
+ - - ">="
116
158
  - !ruby/object:Gem::Version
117
- version: '12.0'
159
+ version: '0'
118
160
  type: :development
119
161
  prerelease: false
120
162
  version_requirements: !ruby/object:Gem::Requirement
121
163
  requirements:
122
- - - "~>"
164
+ - - ">="
123
165
  - !ruby/object:Gem::Version
124
- version: '12.0'
125
- description:
166
+ version: '0'
167
+ description:
126
168
  email:
127
169
  - rohitjain18005@gmail.com
128
170
  executables: []
@@ -132,9 +174,11 @@ files:
132
174
  - LICENSE.txt
133
175
  - README.md
134
176
  - _includes/analytics.html
177
+ - _includes/disqus_comments.html
135
178
  - _includes/navigation.html
136
179
  - _includes/themeSelector.html
137
180
  - _layouts/blog.html
181
+ - _layouts/categories.html
138
182
  - _layouts/default.html
139
183
  - _layouts/description.html
140
184
  - _layouts/home.html
@@ -149,7 +193,7 @@ homepage: https://github.com/rohitjain00/dev-portfolio-blog
149
193
  licenses:
150
194
  - MIT
151
195
  metadata: {}
152
- post_install_message:
196
+ post_install_message:
153
197
  rdoc_options: []
154
198
  require_paths:
155
199
  - lib
@@ -165,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
209
  version: '0'
166
210
  requirements: []
167
211
  rubygems_version: 3.0.3
168
- signing_key:
212
+ signing_key:
169
213
  specification_version: 4
170
214
  summary: This is a simple efficient blog and portfolio
171
215
  test_files: []