Last active
May 3, 2019 04:40
-
-
Save nisevi/0b36705a9764e304efa809042cb8f689 to your computer and use it in GitHub Desktop.
Gemspec file, our interface to RubyGems
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
Gem::Specification.new do |s| | |
s.name = "thanoscase" | |
s.version = "0.0.1" | |
s.date = "2019-04-27" | |
s.summary = "Thanos gem" | |
s.description = "Randomly removes half the characters of a given string." | |
s.authors = ["Nicolas Sebastian Vidal"] | |
s.email = "[email protected]" | |
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) } | |
s.require_paths = ["lib"] | |
s.license = "MIT" | |
s.files = ["lib/thanoscase.rb", "lib/thanoscase/string.rb"] | |
s.required_ruby_version = ">= 2.5.0" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment