dolt 0.2.0 → 0.2.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/Gemfile.lock +6 -6
- data/lib/dolt/git/commit.rb +2 -2
- data/lib/dolt/version.rb +1 -1
- metadata +3 -3
data/Gemfile.lock
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
dolt (0.
|
|
4
|
+
dolt (0.2.0)
|
|
5
5
|
async_sinatra (~> 1.0)
|
|
6
6
|
builder (~> 3.1)
|
|
7
7
|
em_pessimistic (~> 0.1)
|
|
8
|
-
em_rugged (~> 0.1.
|
|
8
|
+
em_rugged (~> 0.1.2)
|
|
9
9
|
eventmachine (~> 1.0)
|
|
10
10
|
github-markup (~> 0.7)
|
|
11
11
|
htmlentities (~> 4.3)
|
|
@@ -28,9 +28,9 @@ GEM
|
|
|
28
28
|
eventmachine
|
|
29
29
|
em_pessimistic (0.1.2)
|
|
30
30
|
eventmachine (~> 1.0)
|
|
31
|
-
em_rugged (0.1.
|
|
31
|
+
em_rugged (0.1.2)
|
|
32
32
|
eventmachine (~> 1.0)
|
|
33
|
-
rugged (
|
|
33
|
+
rugged (= 0.17.0.b6)
|
|
34
34
|
eventmachine (1.0.0)
|
|
35
35
|
ffi (1.0.11)
|
|
36
36
|
github-markup (0.7.4)
|
|
@@ -49,12 +49,12 @@ GEM
|
|
|
49
49
|
rubypython (0.5.3)
|
|
50
50
|
blankslate (>= 2.1.2.3)
|
|
51
51
|
ffi (~> 1.0.7)
|
|
52
|
-
rugged (0.17.0)
|
|
52
|
+
rugged (0.17.0.b6)
|
|
53
53
|
sinatra (1.3.3)
|
|
54
54
|
rack (~> 1.3, >= 1.3.6)
|
|
55
55
|
rack-protection (~> 1.2)
|
|
56
56
|
tilt (~> 1.3, >= 1.3.3)
|
|
57
|
-
thin (1.
|
|
57
|
+
thin (1.5.0)
|
|
58
58
|
daemons (>= 1.0.9)
|
|
59
59
|
eventmachine (>= 0.12.6)
|
|
60
60
|
rack (>= 1.0.0)
|
data/lib/dolt/git/commit.rb
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
# You should have received a copy of the GNU Affero General Public License
|
|
16
16
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
17
17
|
#++
|
|
18
|
-
require "
|
|
18
|
+
require "time"
|
|
19
19
|
|
|
20
20
|
module Dolt
|
|
21
21
|
module Git
|
|
@@ -47,7 +47,7 @@ module Dolt
|
|
|
47
47
|
pieces = value.match(/(.*)\s<(.*)>/)
|
|
48
48
|
value = { :name => pieces[1], :email => pieces[2] }
|
|
49
49
|
when :date
|
|
50
|
-
value = Time.
|
|
50
|
+
value = Time.parse(value)
|
|
51
51
|
end
|
|
52
52
|
|
|
53
53
|
hash[key] = value
|
data/lib/dolt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dolt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Christian Johansen
|