drg 0.8.0 → 0.8.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a8e48ecc9dad0ef6b8aa9c7caaff1116d79ee336
4
- data.tar.gz: 0aab8b29bb2723129fc0c6ccf2b29fa2051ab02c
3
+ metadata.gz: 2c11a9f67d3fbdd3b319183860c5a9fd362ab321
4
+ data.tar.gz: 686a0d355a95ead41e3bec771225b9330a3102c5
5
5
  SHA512:
6
- metadata.gz: 06c35400aa6eecb7286b3b86ae9cc1c1cceb36151059e10bf409ff7bc0704bb446fdbb8b9d37aa52001039fe3391df53e9f31c4759edcaa9e1fcc67bc61664e7
7
- data.tar.gz: 1e4f1d10aeb53d42ab9630a503fd07760f0ed1acc3614cde78d776666b8194d9637768f84a42964f4d0645029456f768afe3fb90485487cf081e79ad34ddbacb
6
+ metadata.gz: 78841e2535b13a2b58981b53de029193d19fc76a47caaa6aaef57d63f24e58e3d74a5d6b8a21bea5862cefeb0e9e61bf349195934f0c3af8d3093a1c217361c2
7
+ data.tar.gz: a2c6fd319ae2234a0fb7ee6e449c1663110e368c8fadd41a4859c7301fcd74dc566d37bf758cefda2cf0691ed03ea3c0a12749997f5f8dad4c8e1af03baaf4ae
data/Gemfile CHANGED
@@ -2,8 +2,9 @@ source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in drg.gemspec
4
4
  gemspec
5
-
5
+ # gem 'duck_puncher'
6
6
  group :development, :test do
7
+ # gem 'rubocop', '~> 0.29', require: false
7
8
  gem "pry", '~> 0.10'
8
9
  gem 'object_tracker', '>= 1.0.5'
9
10
  gem 'byebug', require: false
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
1
  # DRG
2
+ [![Code Climate](https://codeclimate.com/github/ridiculous/drg/badges/gpa.svg)](https://codeclimate.com/github/ridiculous/drg)
3
+ [![Gem Version](https://badge.fury.io/rb/drg.svg)](http://badge.fury.io/rb/drg)
2
4
 
3
5
  A Ruby utility to help automate dependency management using Bundler. You can pin Gem versions to the current or the next
4
6
  available level. DRG can automatically update your gems to the latest available version, similar to Gemnasium.
@@ -24,6 +24,7 @@ module DRG
24
24
 
25
25
  def find_by_name(name)
26
26
  lines.each_with_index.each do |line, index|
27
+ next if line =~ /^\s*#/
27
28
  next if line =~ /:?path:?\s*(=>)?\s*/
28
29
  next if line =~ /:?git(hub)?:?\s*(=>)?\s*/
29
30
  return GemfileLine.new line, index, name if line =~ /gem\s*['"]#{name}["']/
data/lib/drg/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DRG
2
- VERSION = '0.8.0'.freeze
2
+ VERSION = '0.8.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: drg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Buckley