Skip to content

Instantly share code, notes, and snippets.

@nisevi
Created May 3, 2019 14:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nisevi/d443ca3458f14be9f62ae1dea010498a to your computer and use it in GitHub Desktop.
Save nisevi/d443ca3458f14be9f62ae1dea010498a to your computer and use it in GitHub Desktop.
Gemspec file with the addition of RSpec library
# 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 = "nicolas.s.vidal@gmail.com"
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