Sha256: 2483a1ba774c03fbc7b769d986143e70a5fc0fe3ea28aba2e33cb891474cf928

Contents?: true

Size: 279 Bytes

Versions: 4

Compression:

Stored size: 279 Bytes

Contents

module JBundler

  class GemfileLock

    def initialize
      is_path = false
      File.read('Gemfile.lock').each do |line|
        if line =~ /^PATH/
          is_path = true
        elsif line =~ /^[A-Z]+/
          is_path = false
        end
      end
    end
  end
  
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jbundler-0.3.0 lib/jbundler/gemfile_lock.rb~
jbundler-0.2.2 lib/jbundler/gemfile_lock.rb~
jbundler-0.2.1 lib/jbundler/gemfile_lock.rb~
jbundler-0.2.0 lib/jbundler/gemfile_lock.rb~