Skip to content

Instantly share code, notes, and snippets.

@nisevi
Last active April 27, 2019 13:35
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/3e99c79ff4de9344f4d0ba6a5e1db262 to your computer and use it in GitHub Desktop.
Save nisevi/3e99c79ff4de9344f4d0ba6a5e1db262 to your computer and use it in GitHub Desktop.
Depencias en RubyGems
Gem::Specification.new do |s|
s.name = 'demo_nisevi'
s.version = '0.0.1'
s.date = '2019-04-26'
s.summary = 'Demo nisevi gem'
s.description = 'A simple demo'
s.authors = ['Nicolas Sebastian Vidal']
s.email = 'nicolas.s.vidal@gmail.com'
s.homepage = 'http://rubygems.org/gems/demo_nisevi'
s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
s.bindir = 'bin'
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.require_paths = ['lib']
s.required_ruby_version = '>= 2.5.0'
s.add_development_dependency 'rspec', '~> 3.8'
s.license = 'MIT'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment