octostat 0.2.0 → 0.3.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 +4 -4
- data/README.md +4 -26
- data/exe/octostat +5 -0
- data/lib/octostat/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6c0ebd758965992e92891eab5bc84a686faee4febe56824d7caaa4cefccd683
|
4
|
+
data.tar.gz: 2ace567260f96559ab9650037ac72402e26381922ee1a301a8349cfdbf7e988c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71eac438522c71bcd0c85c60d5f8b9f7a19392e011c75261e27aee675b4302ec5d93bff863c3aa2c0d72bfd9273bfe51c81c835ee75132aa54028ac8d56b8233
|
7
|
+
data.tar.gz: 1645d6dbb6fa2a655759d8ef18a613f1670cbcbd0bf3c90a79585d43007a9f3d88f8375a17d168a30ee448eec775f402de51c047cca240f23a20abdd381caa50
|
data/README.md
CHANGED
@@ -1,38 +1,16 @@
|
|
1
1
|
# Octostat
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
3
|
+
Octostat extracts and converts the Git log of a repo into an SQLite database for easy querying.
|
6
4
|
|
7
5
|
## Installation
|
8
6
|
|
9
|
-
|
10
|
-
|
11
|
-
```ruby
|
12
|
-
gem 'octostat'
|
13
|
-
```
|
14
|
-
|
15
|
-
And then execute:
|
16
|
-
|
17
|
-
$ bundle
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install octostat
|
7
|
+
`gem install octostat`
|
22
8
|
|
23
9
|
## Usage
|
24
10
|
|
25
|
-
|
26
|
-
|
27
|
-
## Development
|
28
|
-
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
-
|
31
|
-
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).
|
32
|
-
|
33
|
-
## Contributing
|
11
|
+
`octostat <OPTIONAL_PATH_TO_REPO>`
|
34
12
|
|
35
|
-
|
13
|
+
To specify the name of the output database: `octostat path/to/repo --db=new_name.sqlite`
|
36
14
|
|
37
15
|
## License
|
38
16
|
|
data/exe/octostat
ADDED
data/lib/octostat/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octostat
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joé Dupuis
|
@@ -69,13 +69,15 @@ dependencies:
|
|
69
69
|
description:
|
70
70
|
email:
|
71
71
|
- joe@dupuis.io
|
72
|
-
executables:
|
72
|
+
executables:
|
73
|
+
- octostat
|
73
74
|
extensions: []
|
74
75
|
extra_rdoc_files: []
|
75
76
|
files:
|
76
77
|
- LICENSE.txt
|
77
78
|
- README.md
|
78
79
|
- Rakefile
|
80
|
+
- exe/octostat
|
79
81
|
- lib/octostat.rb
|
80
82
|
- lib/octostat/command.rb
|
81
83
|
- lib/octostat/database.rb
|