md_resume 0.1.0 → 0.1.1

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: 5e17377e32b45ab6b2127c36392a12d26ee7b0b3b0b6f078b3fdf07e4f9b2663
4
- data.tar.gz: 946d865aae51c40a864f70112be7d04797b40292fd35c2f2deaf01c672d3b30d
3
+ metadata.gz: f7960149f0e0b6634eb7db3f0811e99359adc5d9349b19b6ec042929ed06c3d7
4
+ data.tar.gz: ac6b8a0dff05ad88f718bfb9e8df3f388a6569a3051503468616a70fd902fd77
5
5
  SHA512:
6
- metadata.gz: d7abc200a53f58087cdcb9bebc2a4f08ac9a6890a78f4c87b0ee132d4f6f354350bbb0e16c183f7db71d55aef067cc09d89465e12aaed8a25eb9a2e600c08543
7
- data.tar.gz: c13a6605ec135d342b46bdf91eba7c8307be5e1f2c60cb32cabab4740a23f578dae9406534f7280647044f07262abf874c1ecec727c305d086ef84219b7b904a
6
+ metadata.gz: 3c27c8c7c2486676cc369d8d9117046b8436aae2d38a9704014942e31f4e031ccb2ff6f4efd7cf32838a9d59d051f3c5faff1c322eb24874301eaee907c09409
7
+ data.tar.gz: 27605dc40ca78e8f2536cdf7fae08e0be7428fb564171289a86953d6ae87b92c19b0ea98a6b13168846cf9aa498f6a5329a40943d569620aa56f77529b2f8f65
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MdResume
4
- VERSION = "0.1.0"
4
+ VERSION = '0.1.1'
5
5
  end
data/md_resume.gemspec CHANGED
@@ -5,19 +5,20 @@ require_relative 'lib/md_resume/version'
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = 'md_resume'
7
7
  spec.version = MdResume::VERSION
8
- spec.authors = ['YuriBocharov']
8
+ spec.authors = ['elasticspoon']
9
9
  spec.email = ['quesadillaman@gmail.com']
10
10
 
11
11
  spec.summary = 'Ruby gem for creating resume from markdown file.'
12
- spec.description = 'Write a resume in markdown, style it with CSS, distribute it as either HTML or PDF. Now with even faster feedback cycles, make changes and preview them immediately!</br></br><code>md-resume</code> is a resume generator written in Ruby styled with CSS. Instead of stopping at exclusively generation of a resume in HTML or PDF format, the project goes further in letting you perfect your resume. Running <code>resume.rb</code> in development mode will spin up a local server that will watch your changes to the resume styles and content. The server will live update an HTML preview of your resume letting you move quickly with changes and updates. The project uses <code>kramdown</code> to translate markdown to HTML, bringing with it additional inline markdown customization options.'
13
- spec.homepage = 'https://github.com/elasticspoon/markdown-resume'
12
+ spec.description = 'Write a resume in markdown, style it with CSS,
13
+ edit it with a live server and distribute it as either HTML or PDF.'
14
+ spec.homepage = 'https://github.com/elasticspoon/md_resume'
14
15
  spec.license = 'MIT'
15
16
  spec.required_ruby_version = '>= 2.6.0'
16
17
 
17
18
  # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
18
19
 
19
20
  spec.metadata['homepage_uri'] = spec.homepage
20
- spec.metadata['source_code_uri'] = 'https://github.com/elasticspoon/markdown-resume'
21
+ spec.metadata['source_code_uri'] = 'https://github.com/elasticspoon/md_resume'
21
22
  # spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
22
23
 
23
24
  # Specify which files should be added to the gem when it is released.
@@ -36,7 +37,4 @@ Gem::Specification.new do |spec|
36
37
  spec.add_dependency 'filewatcher', '~> 2.1'
37
38
  spec.add_dependency 'kramdown', '~> 2.4'
38
39
  spec.add_dependency 'webrick', '~> 1.8'
39
-
40
- # For more information and examples about making a new gem, check out our
41
- # guide at: https://bundler.io/guides/creating_gem.html
42
40
  end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: md_resume
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - YuriBocharov
7
+ - elasticspoon
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
@@ -52,16 +52,9 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.8'
55
- description: Write a resume in markdown, style it with CSS, distribute it as either
56
- HTML or PDF. Now with even faster feedback cycles, make changes and preview them
57
- immediately!</br></br><code>md-resume</code> is a resume generator written in Ruby
58
- styled with CSS. Instead of stopping at exclusively generation of a resume in HTML
59
- or PDF format, the project goes further in letting you perfect your resume. Running
60
- <code>resume.rb</code> in development mode will spin up a local server that will
61
- watch your changes to the resume styles and content. The server will live update
62
- an HTML preview of your resume letting you move quickly with changes and updates.
63
- The project uses <code>kramdown</code> to translate markdown to HTML, bringing with
64
- it additional inline markdown customization options.
55
+ description: |-
56
+ Write a resume in markdown, style it with CSS,
57
+ edit it with a live server and distribute it as either HTML or PDF.
65
58
  email:
66
59
  - quesadillaman@gmail.com
67
60
  executables:
@@ -87,12 +80,12 @@ files:
87
80
  - md_resume.gemspec
88
81
  - resume.png
89
82
  - sig/md_resume.rbs
90
- homepage: https://github.com/elasticspoon/markdown-resume
83
+ homepage: https://github.com/elasticspoon/md_resume
91
84
  licenses:
92
85
  - MIT
93
86
  metadata:
94
- homepage_uri: https://github.com/elasticspoon/markdown-resume
95
- source_code_uri: https://github.com/elasticspoon/markdown-resume
87
+ homepage_uri: https://github.com/elasticspoon/md_resume
88
+ source_code_uri: https://github.com/elasticspoon/md_resume
96
89
  post_install_message:
97
90
  rdoc_options: []
98
91
  require_paths: