Skip to content

Commit

Permalink
Add some metadata for the gem, resulting in 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kalsan committed Dec 7, 2022
1 parent ffd2727 commit cab3b60
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
9 changes: 8 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,16 @@ task :gemspec do
s.executables = []
s.require_paths = ['lib']
s.required_ruby_version = '>= 3.0.0'
s.license = 'LGPL-3.0-or-later'
s.homepage = 'https://github.com/kalsan/dyny'
s.metadata = {
'source_code_uri' => 'https://github.com/kalsan/dyny',
'documentation_uri' => 'https://github.com/kalsan/dyny'

}

# Dependencies
s.add_runtime_dependency 'rails'
s.add_runtime_dependency 'rails' # Tested with Rails 7, but olders may work. TBD.
end

File.open('dyny.gemspec', 'w') do |f|
Expand Down
7 changes: 5 additions & 2 deletions dyny.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,20 @@
# This file is auto-generated via: 'rake gemspec'.

# -*- encoding: utf-8 -*-
# stub: dyny 0.0.2 ruby lib
# stub: dyny 0.0.3 ruby lib

Gem::Specification.new do |s|
s.name = "dyny".freeze
s.version = "0.0.2"
s.version = "0.0.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.metadata = { "documentation_uri" => "https://github.com/kalsan/dyny", "source_code_uri" => "https://github.com/kalsan/dyny" } if s.respond_to? :metadata=
s.require_paths = ["lib".freeze]
s.authors = ["Sandro Kalbermatter".freeze]
s.date = "2022-12-07"
s.files = [".gitignore".freeze, ".ruby-version".freeze, "LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "dyny.gemspec".freeze, "lib/dyny.rb".freeze, "lib/dyny/helper.rb".freeze, "lib/dyny/railtie.rb".freeze, "lib/dyny/template_handler.rb".freeze, "lib/dyny/version.rb".freeze]
s.homepage = "https://github.com/kalsan/dyny".freeze
s.licenses = ["LGPL-3.0-or-later".freeze]
s.required_ruby_version = Gem::Requirement.new(">= 3.0.0".freeze)
s.rubygems_version = "3.2.33".freeze
s.summary = "A tiny framework for writing dynamic Rails views directly in Ruby".freeze
Expand Down
2 changes: 1 addition & 1 deletion lib/dyny/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Dyny
module Version
MAJOR = 0
MINOR = 0
PATCH = 2
PATCH = 3

EDGE = false

Expand Down

0 comments on commit cab3b60

Please sign in to comment.