Skip to content

Commit

Permalink
Fix included gem files
Browse files Browse the repository at this point in the history
  • Loading branch information
carolinesalib committed Jun 4, 2022
1 parent a6cef5b commit 01288eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
simpleblog (0.0.3)
simpleblog (1.0.0)
redcarpet
rouge

Expand Down
8 changes: 6 additions & 2 deletions simpleblog.gemspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
Gem::Specification.new do |s|
s.name = "simpleblog"
s.version = "0.0.3"
s.version = "1.0.0"
s.summary = "Helpers to generate markdown blog pages using Rails"
s.description = "Create a simple blog that can be edit with markdown"
s.authors = ["Caroline Salib"]
s.email = "[email protected]"
s.files = ["lib/simpleblog.rb"]
s.files = Dir.glob("{lib}/**/*")
s.files += ["simpleblog.gemspec"]
s.bindir = "exe"
s.executables = s.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
s.require_paths = ["lib"]
s.homepage = "https://rubygems.org/gems/simpleblog"
s.metadata = {"source_code_uri" => "https://github.com/carolinesalib/simpleblog"}
s.license = "MIT"
Expand Down

0 comments on commit 01288eb

Please sign in to comment.