Skip to content

Commit

Permalink
chore: Prepare to release
Browse files Browse the repository at this point in the history
  • Loading branch information
heyvito committed Sep 17, 2024
1 parent 5dc9e95 commit fbab1b9
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 16 deletions.
4 changes: 3 additions & 1 deletion lib/docrb-html/exe/docrb-html
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require "bundler/setup"
require "bundler"
Bundler.setup

require "renderer"

if ARGV.length != 2
Expand Down
25 changes: 15 additions & 10 deletions lib/docrb/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../docrb-html
specs:
docrb-html (0.3.2)
docrb-html (0.3.3)
nokogiri (~> 1.14)
redcarpet (~> 3.6)
rouge (~> 4.1)
Expand All @@ -10,13 +10,13 @@ PATH
PATH
remote: ../docrb-parser
specs:
docrb-parser (0.1.1)
prism (~> 0.13)
docrb-parser (0.1.2)
prism (~> 1)

PATH
remote: .
specs:
docrb (0.3.4)
docrb (0.3.5)
docrb-html (~> 0.3)
docrb-parser (~> 0.1)

Expand All @@ -27,23 +27,27 @@ GEM
awesome_print (1.9.2)
byebug (11.1.3)
diff-lcs (1.5.0)
ffi (1.16.3)
ffi (1.17.0-aarch64-linux-gnu)
ffi (1.17.0-arm64-darwin)
ffi (1.17.0-x86_64-darwin)
json (2.6.3)
nokogiri (1.15.4-arm64-darwin)
nokogiri (1.16.7-aarch64-linux)
racc (~> 1.4)
nokogiri (1.15.4-x86_64-darwin)
nokogiri (1.16.7-arm64-darwin)
racc (~> 1.4)
nokogiri (1.16.7-x86_64-darwin)
racc (~> 1.4)
parallel (1.22.1)
parser (3.2.1.0)
ast (~> 2.4.1)
prism (0.15.1)
racc (1.7.1)
prism (1.0.0)
racc (1.8.1)
rainbow (3.1.1)
rake (13.0.6)
redcarpet (3.6.0)
regexp_parser (2.7.0)
rexml (3.2.5)
rouge (4.2.0)
rouge (4.4.0)
rspec (3.12.0)
rspec-core (~> 3.12.0)
rspec-expectations (~> 3.12.0)
Expand Down Expand Up @@ -75,6 +79,7 @@ GEM
unicode-display_width (2.4.2)

PLATFORMS
aarch64-linux
arm64-darwin-22
arm64-darwin-23
x86_64-darwin-20
Expand Down
4 changes: 3 additions & 1 deletion lib/docrb/bin/console
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require "bundler/setup"
require "bundler"
Bundler.setup

require "docrb"
require "byebug"

Expand Down
4 changes: 2 additions & 2 deletions lib/docrb/docrb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ require_relative "lib/docrb/version"
Gem::Specification.new do |spec|
spec.name = "docrb"
spec.version = Docrb::VERSION
spec.authors = ["Victor Gama"]
spec.authors = ["Vito Sartori"]
spec.email = ["[email protected]"]

spec.summary = "An opinionated documentation parser"
Expand All @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 3.2"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/trunk/lib/docrb"
spec.metadata["source_code_uri"] = "#{spec.homepage}/tree/master/lib/docrb"
spec.metadata["changelog_uri"] = spec.homepage
spec.metadata["rubygems_mfa_required"] = "true"

Expand Down
4 changes: 3 additions & 1 deletion lib/docrb/exe/docrb
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#!/usr/bin/env ruby
# frozen_string_literal: true

require "bundler/setup"
require "bundler"
Bundler.setup

require "json"
require "fileutils"
require "optparse"
Expand Down
2 changes: 1 addition & 1 deletion lib/docrb/lib/docrb/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Docrb
VERSION = "0.3.4"
VERSION = "0.3.5"
end

0 comments on commit fbab1b9

Please sign in to comment.