dep_upgrade 0.1.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: aa3439155a791a6b748918b619404d3573e1e2dd0f4cefc9632323ff93ec2866
4
+ data.tar.gz: 3db0970d427ba42e5df945bf0cbdab080f655794d62352684d4c92acfbf02405
5
+ SHA512:
6
+ metadata.gz: 41d6a858afa878464a39bc478bd58ed411e43b6fce7cdbd158d703f810330df4db543948e3cfb43cd6beba78f01d4888edac6c5abb4b52c6b132ce680c0c5813
7
+ data.tar.gz: 1f76dfd0514c68d6a9762113d3dcef20d6934a3c705e29be709b2e883c279991af57785805cbc7cf321387b37151ee3fdb5429edb104ff69fc6549ce29054e33
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ /vendor/bundle
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.2
5
+ before_install: gem install bundler -v 1.16.0
data/CHANGELOG.md ADDED
@@ -0,0 +1,8 @@
1
+ # Change Log
2
+ ## [0.1.0](https://github.com/blacktangent/dep_upgrade/tree/0.1.0)
3
+
4
+ [Full Changelog](https://github.com/blacktangent/dep_upgrade/compare/b8ca43cbe...0.1.0)
5
+ * 2017-12-03 - Check in Gemfile.lock [#3](https://github.com/blacktangent/dep_upgrade/pull/3)
6
+ * 2017-12-03 - Update gemspec info and readme [#2](https://github.com/blacktangent/dep_upgrade/pull/2)
7
+ * 2017-12-03 - Add rake task dep:upgrade [#1](https://github.com/blacktangent/dep_upgrade/pull/1)
8
+
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at teohuiming@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in dep_upgrade.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,44 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ dep_upgrade (0.1.0)
5
+ bundler
6
+ bundler-audit
7
+ rake
8
+
9
+ GEM
10
+ remote: https://rubygems.org/
11
+ specs:
12
+ bundler-audit (0.6.0)
13
+ bundler (~> 1.2)
14
+ thor (~> 0.18)
15
+ diff-lcs (1.3)
16
+ git-chlog (0.2.1)
17
+ rake (10.5.0)
18
+ rspec (3.7.0)
19
+ rspec-core (~> 3.7.0)
20
+ rspec-expectations (~> 3.7.0)
21
+ rspec-mocks (~> 3.7.0)
22
+ rspec-core (3.7.0)
23
+ rspec-support (~> 3.7.0)
24
+ rspec-expectations (3.7.0)
25
+ diff-lcs (>= 1.2.0, < 2.0)
26
+ rspec-support (~> 3.7.0)
27
+ rspec-mocks (3.7.0)
28
+ diff-lcs (>= 1.2.0, < 2.0)
29
+ rspec-support (~> 3.7.0)
30
+ rspec-support (3.7.0)
31
+ thor (0.20.0)
32
+
33
+ PLATFORMS
34
+ ruby
35
+
36
+ DEPENDENCIES
37
+ bundler (~> 1.16)
38
+ dep_upgrade!
39
+ git-chlog
40
+ rake (~> 10.0)
41
+ rspec (~> 3.0)
42
+
43
+ BUNDLED WITH
44
+ 1.16.0
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Huiming Teo
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.
data/README.md ADDED
@@ -0,0 +1,70 @@
1
+ # `rails dep:upgrade`
2
+
3
+ Keep your Rails app dependencies up-to-date by running `rails dep:upgrade` weekly.
4
+
5
+ `rails dep:upgrade` runs `bundle update`, `bundle audit`, `yarn upgrade` to update your app dependencies,
6
+ then generates a markdown summary for your pull/merge request:
7
+
8
+ ```markdown
9
+ Paste this summary into your pull/merge request (chore-dep_upgrade_20171202):
10
+ -----
11
+
12
+ ## Dep Upgrade 2017-12-02
13
+
14
+ bundle update:
15
+ * airbrake-ruby [(2.6.0 -> 2.6.1)](https://gemnasium.com/gems/airbrake-ruby)
16
+ * inherited_resources [(1.7.2 -> 1.8.0)](https://gemnasium.com/gems/inherited_resources)
17
+ * paper_trail [(8.0.1 -> 8.1.0)](https://gemnasium.com/gems/paper_trail)
18
+ * twilio-ruby [(5.5.0 -> 5.5.1)](https://gemnasium.com/gems/twilio-ruby)
19
+ * uglifier [(3.2.0 -> 4.0.0)](https://gemnasium.com/gems/uglifier)
20
+
21
+ bundle audit:
22
+ No vulnerabilities found
23
+
24
+ yarn upgrade:
25
+ * moment (2.19.2 -> 2.19.3)
26
+ ```
27
+
28
+ ## Installation
29
+
30
+ Add this line to your application's Gemfile:
31
+
32
+ ```ruby
33
+ gem "dep_upgrade"
34
+ ```
35
+
36
+ And then execute:
37
+
38
+ ```
39
+ $ bundle
40
+ ```
41
+
42
+ After that, rake task `dep:upgrade` will be added automatically into your Rails app.
43
+
44
+ ## Usage
45
+
46
+ Run:
47
+
48
+ ```
49
+ $ rails dep:upgrade
50
+ ```
51
+
52
+
53
+
54
+ ## Development
55
+
56
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
57
+
58
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
59
+
60
+ ## Contributing
61
+
62
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/dep_upgrade. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
63
+
64
+ ## License
65
+
66
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
67
+
68
+ ## Code of Conduct
69
+
70
+ Everyone interacting in the DepUpgrade project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/dep_upgrade/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile ADDED
@@ -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
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "dep_upgrade"
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(__FILE__)
data/bin/setup ADDED
@@ -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,44 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "dep_upgrade/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dep_upgrade"
8
+ spec.version = DepUpgrade::VERSION
9
+ spec.authors = ["Huiming Teo"]
10
+ spec.email = ["teohuiming@gmail.com"]
11
+
12
+ spec.summary = %q{Keep your app dependencies up-to-date with rails dep:upgrade}
13
+ spec.description = "`rails dep:upgrade` runs `bundle update`," \
14
+ " `bundle audit`, `yarn upgrade` and generates a markdown-style summary" \
15
+ " of what have changed that you can paste into a pull/merge request."
16
+ spec.homepage = "https://github.com/blacktangent/dep_upgrade"
17
+ spec.license = "MIT"
18
+
19
+ if spec.respond_to?(:metadata=)
20
+ spec.metadata = {
21
+ "allowed_push_host" => "https://rubygems.org",
22
+ "bug_tracker_uri" => "http://github.com/blacktangent/dep_upgrade/issues",
23
+ "changelog_uri" => "https://github.com/blacktangent/dep_upgrade/blob/master/CHANGELOG.md",
24
+ "homepage_uri" => "https://github.com/blacktangent/dep_upgrade",
25
+ "source_code_uri" => "https://github.com/blacktangent/dep_upgrade"
26
+ }
27
+ end
28
+
29
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
30
+ f.match(%r{^(test|spec|features)/})
31
+ end
32
+ spec.bindir = "exe"
33
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
34
+ spec.require_paths = ["lib"]
35
+
36
+ spec.add_development_dependency "bundler", "~> 1.16"
37
+ spec.add_development_dependency "rake", "~> 10.0"
38
+ spec.add_development_dependency "rspec", "~> 3.0"
39
+ spec.add_development_dependency "git-chlog"
40
+
41
+ spec.add_dependency "bundler"
42
+ spec.add_dependency "bundler-audit"
43
+ spec.add_dependency "rake"
44
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "dep_upgrade/version"
4
+ require "dep_upgrade/command"
5
+
6
+ module DepUpgrade
7
+ def self.load_tasks
8
+ Dir[File.expand_path('tasks/*.rake', __dir__)].each { |ext| load ext }
9
+ end
10
+
11
+ require "dep_upgrade/railtie" if defined?(Rails) && Rails::VERSION::MAJOR >= 3
12
+ end
@@ -0,0 +1,105 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "json"
4
+ require "date"
5
+
6
+ module DepUpgrade
7
+ class Command
8
+ attr_accessor :bundler_outdated_output, :bundler_audit_output,
9
+ :yarn_outdated_output
10
+
11
+ def call
12
+ bundle_outdated
13
+ yarn_outdated
14
+
15
+ bundle_update
16
+ bundle_audit_update
17
+ bundle_audit
18
+ yarn_upgrade
19
+
20
+ print_summary
21
+ end
22
+
23
+ def system!(*args)
24
+ system(*args) || abort("\n== Command #{args} failed ==")
25
+ end
26
+
27
+ def bundle_outdated
28
+ puts "\n== Analyze outdated gems =="
29
+ self.bundler_outdated_output = `bundle outdated --strict --parseable`
30
+ puts "Done."
31
+ end
32
+
33
+ def yarn_outdated
34
+ puts "\n== Analyze outdated yarn packages =="
35
+ self.yarn_outdated_output = JSON.parse(`yarn outdated --json`.split("\n").last)
36
+ puts "Done."
37
+ end
38
+
39
+ def bundle_update
40
+ puts "\n== Update all gems =="
41
+ system!("bundle update --all")
42
+ end
43
+
44
+ def bundle_audit_update
45
+ puts "\n== Update gems advisory database =="
46
+ system!("bundle exec bundle audit update")
47
+ end
48
+
49
+ def bundle_audit
50
+ puts "\n== Audit all gems =="
51
+ self.bundler_audit_output = `bundle exec bundle audit`.strip
52
+ puts "Done."
53
+ end
54
+
55
+ def yarn_upgrade
56
+ puts "\n== Update all yarn packages =="
57
+ system!("yarn upgrade")
58
+ end
59
+
60
+ def print_summary
61
+ puts "\nPaste this summary into your pull/merge request " \
62
+ "(chore-dep_upgrade_#{Date.today.strftime("%Y%m%d")}):"
63
+ puts "-----"
64
+
65
+ puts "\n## Dep Upgrade #{Date.today}"
66
+
67
+ print_bundle_update_summary
68
+ print_bundle_audit_summary
69
+ print_yarn_upgrade_summary
70
+ end
71
+
72
+ def print_bundle_update_summary
73
+ puts "\nbundle update:"
74
+ self.bundler_outdated_output
75
+ .split("\n")
76
+ .reject { |line| line.empty? }
77
+ .map do |line|
78
+ line.match(
79
+ /(?<name>[^ ]+) \(newest (?<to>[^,]+), installed (?<from>[^),]+)/
80
+ )&.named_captures
81
+ end
82
+ .compact
83
+ .map do |gem|
84
+ [
85
+ "#{gem['name']} [(#{gem['from']} -> #{gem['to']})]",
86
+ "(https://gemnasium.com/gems/#{gem['name']})"
87
+ ].join
88
+ end
89
+ .each { |line| puts "* #{line}" }
90
+ end
91
+
92
+ def print_yarn_upgrade_summary
93
+ puts "\nyarn upgrade:"
94
+ self.yarn_outdated_output["data"]["body"]
95
+ .select { |package| package[1] != package[2] } # Current != Wanted
96
+ .map { |package| "#{package[0]} (#{package[1]} -> #{package[2]})" }
97
+ .each { |line| puts "* #{line}" }
98
+ end
99
+
100
+ def print_bundle_audit_summary
101
+ puts "\nbundle audit:"
102
+ puts self.bundler_audit_output
103
+ end
104
+ end
105
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DepUpgrade
4
+ class Railtie < Rails::Railtie
5
+ rake_tasks do
6
+ DepUpgrade.load_tasks
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module DepUpgrade
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "dep_upgrade"
4
+
5
+ namespace :dep do
6
+ desc "Upgrade bundler and yarn dependencies"
7
+ task :upgrade do
8
+ DepUpgrade::Command.new.call
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,167 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dep_upgrade
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Huiming Teo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-12-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.16'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: git-chlog
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: bundler-audit
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ description: "`rails dep:upgrade` runs `bundle update`, `bundle audit`, `yarn upgrade`
112
+ and generates a markdown-style summary of what have changed that you can paste into
113
+ a pull/merge request."
114
+ email:
115
+ - teohuiming@gmail.com
116
+ executables: []
117
+ extensions: []
118
+ extra_rdoc_files: []
119
+ files:
120
+ - ".gitignore"
121
+ - ".rspec"
122
+ - ".travis.yml"
123
+ - CHANGELOG.md
124
+ - CODE_OF_CONDUCT.md
125
+ - Gemfile
126
+ - Gemfile.lock
127
+ - LICENSE.txt
128
+ - README.md
129
+ - Rakefile
130
+ - bin/console
131
+ - bin/setup
132
+ - dep_upgrade.gemspec
133
+ - lib/dep_upgrade.rb
134
+ - lib/dep_upgrade/command.rb
135
+ - lib/dep_upgrade/railtie.rb
136
+ - lib/dep_upgrade/version.rb
137
+ - lib/tasks/dep.rake
138
+ homepage: https://github.com/blacktangent/dep_upgrade
139
+ licenses:
140
+ - MIT
141
+ metadata:
142
+ allowed_push_host: https://rubygems.org
143
+ bug_tracker_uri: http://github.com/blacktangent/dep_upgrade/issues
144
+ changelog_uri: https://github.com/blacktangent/dep_upgrade/blob/master/CHANGELOG.md
145
+ homepage_uri: https://github.com/blacktangent/dep_upgrade
146
+ source_code_uri: https://github.com/blacktangent/dep_upgrade
147
+ post_install_message:
148
+ rdoc_options: []
149
+ require_paths:
150
+ - lib
151
+ required_ruby_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ required_rubygems_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: '0'
161
+ requirements: []
162
+ rubyforge_project:
163
+ rubygems_version: 2.7.3
164
+ signing_key:
165
+ specification_version: 4
166
+ summary: Keep your app dependencies up-to-date with rails dep:upgrade
167
+ test_files: []