Sha256: 377fa8bc6949a0c35d2bda13e1c74573b92d59f2d8b1b1664fb0a9c7238367f7
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'deppbot/version' Gem::Specification.new do |spec| spec.name = "deppbot" spec.version = Deppbot::VERSION spec.authors = ["Juanito Fatas", "Winston Teo Yong Wei"] spec.email = ["katehuang0320+deppbot@gmail.com", "winston.yongwei+deppbot@gmail.com"] spec.summary = %(deppbot - Automated Security and Dependency Updates for Ruby Apps) spec.description = %(deppbot ensures that your Ruby applications are kept updated, always! Based on your configured schedule, deppbot will run bundle update on your Ruby app and send the result as a Pull Request to GitHub. deppbot will also check your app periodically for any RubyGem vulnerabilities and fix it automagically. As seen on https://github.com/integrations/deppbot, https://stackshare.io/deppbot.) spec.homepage = "https://www.deppbot.com" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
deppbot-0.0.1 | deppbot.gemspec |