Created
May 3, 2019 14:27
-
-
Save nisevi/d443ca3458f14be9f62ae1dea010498a to your computer and use it in GitHub Desktop.
Gemspec file with the addition of RSpec library
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" | |
s.add_development_dependency "rspec", "~> 3.8" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment