fixi 0.0.1 → 0.0.2
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.
- data/README +19 -0
- data/fixi.gemspec +1 -0
- data/lib/fixi/version.rb +1 -1
- metadata +13 -1
data/README
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
Fixi - Source Code
|
2
|
+
==================
|
3
|
+
|
4
|
+
A fixity tracker utility.
|
5
|
+
|
6
|
+
Installing From RubyGems.org
|
7
|
+
----------------------------
|
8
|
+
|
9
|
+
> [sudo] gem install fixi
|
10
|
+
|
11
|
+
Installing From Source
|
12
|
+
----------------------
|
13
|
+
|
14
|
+
> [sudo] rake install
|
15
|
+
|
16
|
+
Usage
|
17
|
+
-----
|
18
|
+
|
19
|
+
To see usage, after installing, run fixi --help
|
data/fixi.gemspec
CHANGED
data/lib/fixi/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: fixi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.2
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Chris Wilper
|
@@ -23,6 +23,17 @@ dependencies:
|
|
23
23
|
version: "0"
|
24
24
|
type: :runtime
|
25
25
|
version_requirements: *id001
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: sqlite3-ruby
|
28
|
+
prerelease: false
|
29
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
30
|
+
none: false
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: "0"
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id002
|
26
37
|
description: Keeps an index of checksums and lets you update and verify them
|
27
38
|
email:
|
28
39
|
- cwilper@gmail.com
|
@@ -35,6 +46,7 @@ extra_rdoc_files: []
|
|
35
46
|
files:
|
36
47
|
- .gitignore
|
37
48
|
- Gemfile
|
49
|
+
- README
|
38
50
|
- Rakefile
|
39
51
|
- bin/fixi
|
40
52
|
- fixi.gemspec
|