deppbot 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 62532d41da639b7530ad06fdcc7817d08fe86bc6
4
+ data.tar.gz: 2ab46a8164141fc9c6b26970534ead1e8d15fe2b
5
+ SHA512:
6
+ metadata.gz: 6b769ae4043e8d7fc0a55bddbda67d6d0ee7aea211d89c7fde011edec2f822aefbe0f1f1ae027fdb8282101fc1c5fddb67272d95967294e6c8d72d39cb415ea9
7
+ data.tar.gz: 54deeb354ec1d48545ecb3cf8382db7adb380458b0e2532c60e8a2aa27f8902f2b528eff3a7a16bdafd944a190abe943c53058a1da043c5e1bca6c4bbdddd3c0
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.3.0
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development do
6
+ gem "bundler", "~> 1.11"
7
+ gem "rake", "~> 10.0"
8
+ gem "rspec", "~> 3.4"
9
+ end
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Jolly Good Code
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,12 @@
1
+ # Deppbot - Automated Security and Dependency Updates
2
+
3
+ deppbot ensures that your Ruby applications are kept updated, always!
4
+
5
+ Based on your configured schedule, deppbot will run bundle update on your Ruby app and send the result as a Pull Request to GitHub.
6
+ deppbot will also check your app periodically for any RubyGem vulnerabilities and fix it automagically.
7
+
8
+ [<kbd>Get deppbot Now</kbd>](https://www.deppbot.com)
9
+
10
+ ## License
11
+
12
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "deppbot"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$"\n\t"
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'deppbot/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "deppbot"
8
+ spec.version = Deppbot::VERSION
9
+ spec.authors = ["Juanito Fatas", "Winston Teo Yong Wei"]
10
+ spec.email = ["katehuang0320+deppbot@gmail.com", "winston.yongwei+deppbot@gmail.com"]
11
+
12
+ spec.summary = %(deppbot - Automated Security and Dependency Updates for Ruby Apps)
13
+ 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.)
14
+ spec.homepage = "https://www.deppbot.com"
15
+ spec.license = "MIT"
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ["lib"]
21
+ end
@@ -0,0 +1,4 @@
1
+ require "deppbot/version"
2
+
3
+ module Deppbot
4
+ end
@@ -0,0 +1,3 @@
1
+ module Deppbot
2
+ VERSION = "0.0.1".freeze
3
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: deppbot
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Juanito Fatas
8
+ - Winston Teo Yong Wei
9
+ autorequire:
10
+ bindir: exe
11
+ cert_chain: []
12
+ date: 2016-03-28 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: deppbot ensures that your Ruby applications are kept updated, always!
15
+ Based on your configured schedule, deppbot will run bundle update on your Ruby app
16
+ and send the result as a Pull Request to GitHub. deppbot will also check your app
17
+ periodically for any RubyGem vulnerabilities and fix it automagically. As seen on
18
+ https://github.com/integrations/deppbot, https://stackshare.io/deppbot.
19
+ email:
20
+ - katehuang0320+deppbot@gmail.com
21
+ - winston.yongwei+deppbot@gmail.com
22
+ executables: []
23
+ extensions: []
24
+ extra_rdoc_files: []
25
+ files:
26
+ - ".gitignore"
27
+ - ".rspec"
28
+ - ".travis.yml"
29
+ - Gemfile
30
+ - LICENSE.txt
31
+ - README.md
32
+ - Rakefile
33
+ - bin/console
34
+ - bin/setup
35
+ - deppbot.gemspec
36
+ - lib/deppbot.rb
37
+ - lib/deppbot/version.rb
38
+ homepage: https://www.deppbot.com
39
+ licenses:
40
+ - MIT
41
+ metadata: {}
42
+ post_install_message:
43
+ rdoc_options: []
44
+ require_paths:
45
+ - lib
46
+ required_ruby_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ requirements: []
57
+ rubyforge_project:
58
+ rubygems_version: 2.6.2
59
+ signing_key:
60
+ specification_version: 4
61
+ summary: deppbot - Automated Security and Dependency Updates for Ruby Apps
62
+ test_files: []
63
+ has_rdoc: