Skip to content

Commit

Permalink
Merge pull request #562 from scarpe-team/schwimsy
Browse files Browse the repository at this point in the history
Whimsical hello message from a bunny
  • Loading branch information
Schwad authored Oct 8, 2024
2 parents 8e6d186 + 960b27b commit 3f9119c
Showing 1 changed file with 41 additions and 22 deletions.
63 changes: 41 additions & 22 deletions scarpe.gemspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# frozen_string_literal: true

require_relative "lib/scarpe/version"
require_relative 'lib/scarpe/version'

Gem::Specification.new do |spec|
spec.name = "scarpe"
spec.name = 'scarpe'
spec.version = Scarpe::VERSION
spec.authors = ["Marco Concetto Rudilosso", "Noah Gibbs", "Nicholas Schwaderer"]
spec.email = ["[email protected]", "[email protected]", "[email protected]"]
spec.authors = ['Marco Concetto Rudilosso', 'Noah Gibbs', 'Nicholas Schwaderer']
spec.email = ['[email protected]', '[email protected]', '[email protected]']

spec.summary = "Scarpe - shoes but running on webview"
spec.homepage = "https://github.com/scarpe-team/scarpe"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.summary = 'Scarpe - shoes but running on webview'
spec.homepage = 'https://github.com/scarpe-team/scarpe'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.2.0'

# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"

spec.metadata["homepage_uri"] = spec.homepage
#spec.metadata["source_code_uri"] = "https://github.com/scarpe-team/scarpe"
spec.metadata["changelog_uri"] = "https://github.com/scarpe-team/scarpe/blob/main/CHANGELOG.md"
spec.metadata['homepage_uri'] = spec.homepage
# spec.metadata["source_code_uri"] = "https://github.com/scarpe-team/scarpe"
spec.metadata['changelog_uri'] = 'https://github.com/scarpe-team/scarpe/blob/main/CHANGELOG.md'

# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Expand All @@ -26,22 +26,41 @@ Gem::Specification.new do |spec|
(f == __FILE__) || f.match(%r{\A(?:(?:test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
end
end
spec.bindir = "exe"
spec.bindir = 'bin'
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.require_paths = ['lib']

spec.add_dependency "fastimage", "~>2.2.7"
spec.add_dependency "nokogiri", "~>1.15.2"
spec.add_dependency "sqlite3", "~>1.6.3"
spec.add_dependency "webrick", "~>1.7.0"
spec.add_dependency 'fastimage', '~>2.2.7'
spec.add_dependency 'nokogiri', '~>1.15.2'
spec.add_dependency 'sqlite3', '~>1.6.3'
spec.add_dependency 'webrick', '~>1.7.0'

spec.add_dependency "lacci", "~>0.4.0"
spec.add_dependency "scarpe-components", "~>0.4.0"
spec.add_dependency 'lacci', '~>0.4.0'
spec.add_dependency 'scarpe-components', '~>0.4.0'

spec.add_dependency "bloops", "~>0.5"
spec.add_dependency "logging", "~>2.3.1"
spec.add_dependency "webview_ruby", "~>0.1.1"
spec.add_dependency 'bloops', '~>0.5'
spec.add_dependency 'logging', '~>2.3.1'
spec.add_dependency 'webview_ruby', '~>0.1.1'

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html

spec.post_install_message = <<-MESSAGE
(\\(\\
(>':')
o(__")")
Welcome to Scarpe!
Let's hop into some magic!
🎩✨ Abracadabra! ✨🐰
Scarpe is tying itself to your system...
Don't worry, it's as easy as putting on bunny slippers!
Are you ready to bounce into a world of wonder?
Enjoy your magical journey with Scarpe!
MESSAGE
end

0 comments on commit 3f9119c

Please sign in to comment.