branch_base 0.1.0 → 0.1.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
  SHA256:
3
- metadata.gz: eac2efb3208cef6e492fac8859c5bf235748568e3e3be1200e7cc617483468c6
4
- data.tar.gz: 5fb3a70cab32f0985c776ed703b0b5c099f7ae79402a13359ad284d69362f11d
3
+ metadata.gz: ac2b962d3318d0496d929f7745c804ff822c58b9e7d15874eddaa0c77fa7330a
4
+ data.tar.gz: 0f255cb5ea4b68fc038c68039a6322b514cdc697dc6ac2571b594ff572cb3f64
5
5
  SHA512:
6
- metadata.gz: 399d80d0011a219e2059df531219e99dfe0625f23db6b17f3a6c8b20e54c44ad6c1bd20cce3911a2113f175295dac46a20cdf0f1023f7197cf71c05237a7a3f2
7
- data.tar.gz: 2e28d8259736b9c702c692318cd7b81b8eade7ef3cb800f8397524998d06bc096573efe66a9a9f95426a91f121d5c939cdcb6ca5a52000805b9e38d28e52d650
6
+ metadata.gz: 1465a856148f4917f10f1c41e201b78fd91d5a5f9dc202eb4db61abea12682191efa7d2dfec0aecdb4fa14a769bf40747bbd59285ba82de3ad88df38b6b1c148
7
+ data.tar.gz: 2c20ed4a6c162853e808b8ef39af131c29dcc0388baa07ae0ffc418a76988ebbcdd1b76f404256437bdf9e633acd0ce2818a82a9f9eb5c7d1cbfbb8437b1333c
data/Dockerfile CHANGED
@@ -2,4 +2,4 @@ FROM ruby:3.1.4
2
2
 
3
3
  ARG VERSION
4
4
 
5
- RUN gem install branch_bash -v $VERSION
5
+ RUN gem install branch_base -v $VERSION
data/Gemfile CHANGED
@@ -2,5 +2,4 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- # Specify your gem's dependencies in pg_easy_replicate.gemspec
6
5
  gemspec
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- branch_base (0.1.0)
4
+ branch_base (0.1.1)
5
5
  rugged
6
6
  sqlite3
7
7
  thor (~> 1.0)
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # BranchBase
2
2
 
3
+ [![CI](https://github.com/shayonj/branch_base/actions/workflows/ci.yaml/badge.svg?branch=main)](https://github.com/shayonj/branch_base/actions/workflows/ci.yaml)
4
+ [![Gem Version](https://badge.fury.io/rb/branch_base.svg?2)](https://badge.fury.io/rb/branch_base)
5
+
3
6
  `branch_base` is a Ruby gem to synchronize data from a Git repository into a SQLite database. It provides a CLI to easily build and store the data, including commits, branches, and file changes, into a SQLite database.
4
7
 
5
8
  You can now easily run, any kind of analytics on your Git directory using the SQLite database.
@@ -11,8 +11,6 @@ module BranchBase
11
11
  end
12
12
 
13
13
  def walk(branch_name = nil, &block)
14
- # Use the provided branch's head commit OID if a branch name is given,
15
- # otherwise, use the repository's HEAD commit OID.
16
14
  oid =
17
15
  if branch_name
18
16
  branch = @repo.branches[branch_name]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BranchBase
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: branch_base
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shayon Mukherjee