grit 1.0.0 → 1.0.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.
- data/History.txt +4 -0
- data/README.txt +10 -1
- data/VERSION.yml +1 -1
- metadata +15 -5
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -13,9 +13,18 @@ object oriented manner.
|
|
13
13
|
|
14
14
|
== INSTALL:
|
15
15
|
|
16
|
+
Easiest install is via RubyGems:
|
17
|
+
|
18
|
+
$ gem install grit
|
19
|
+
|
20
|
+
or
|
21
|
+
|
16
22
|
$ gem sources -a http://gems.github.com/ (you only need to do this once)
|
17
23
|
$ gem install mojombo-grit
|
18
24
|
|
25
|
+
The gem from GitHub will generally be available sooner than the gem from
|
26
|
+
Rubyforge. Both sources will eventually contain the same releases.
|
27
|
+
|
19
28
|
== SOURCE:
|
20
29
|
|
21
30
|
Grit's git repo is available on GitHub, which can be browsed at:
|
@@ -37,7 +46,7 @@ trees, blobs, etc.
|
|
37
46
|
The first step is to create a Grit::Repo object to represent your repo. I
|
38
47
|
include the Grit module so reduce typing.
|
39
48
|
|
40
|
-
require '
|
49
|
+
require 'grit'
|
41
50
|
include Grit
|
42
51
|
repo = Repo.new("/Users/tom/dev/grit")
|
43
52
|
|
data/VERSION.yml
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: grit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Preston-Werner
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2009-
|
13
|
+
date: 2009-02-10 00:00:00 -08:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -23,7 +23,17 @@ dependencies:
|
|
23
23
|
- !ruby/object:Gem::Version
|
24
24
|
version: "1.15"
|
25
25
|
version:
|
26
|
-
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: diff-lcs
|
28
|
+
type: :runtime
|
29
|
+
version_requirement:
|
30
|
+
version_requirements: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: 1.1.2
|
35
|
+
version:
|
36
|
+
description: Grit is a Ruby library for extracting information from a git repository in an object oriented manner.
|
27
37
|
email: tom@mojombo.com
|
28
38
|
executables: []
|
29
39
|
|
@@ -1725,10 +1735,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1725
1735
|
version:
|
1726
1736
|
requirements: []
|
1727
1737
|
|
1728
|
-
rubyforge_project:
|
1738
|
+
rubyforge_project: grit
|
1729
1739
|
rubygems_version: 1.3.0
|
1730
1740
|
signing_key:
|
1731
1741
|
specification_version: 2
|
1732
|
-
summary:
|
1742
|
+
summary: Grit is a Ruby library for extracting information from a git repository in an object oriented manner.
|
1733
1743
|
test_files: []
|
1734
1744
|
|