gitchangelog 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -19,4 +19,11 @@ That's all there is to it.
19
19
  You can omit the stylesheet above, and create your own styles.
20
20
 
21
21
  Each commit is wrapped in a div with class "commit". This div contains spans with the following class styles: "cdate", "cname", and "chash".
22
- The commit message is enclosed in a pre tag.
22
+ The commit message is enclosed in a pre tag.
23
+
24
+ ## Custom Layout
25
+ You can set the application layout specifically for Gitchangelog in your application.rb file.
26
+
27
+ config.to_prepare do
28
+ GitchangelogController.layout "mylayout"
29
+ end
@@ -1,3 +1,3 @@
1
1
  module Gitchangelog
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -21,3 +21,39 @@ Processing by GitchangelogController#index as HTML
21
21
  Rendered /Users/djlee2/Sites/Gems/gitchangelog/app/views/gitchangelog/index.html.erb within layouts/application (7.5ms)
22
22
  Completed 200 OK in 46ms (Views: 33.6ms | ActiveRecord: 0.0ms)
23
23
   (0.1ms) rollback transaction
24
+
25
+
26
+ Started GET "/changelog" for 127.0.0.1 at 2012-03-08 16:30:25 -0600
27
+
28
+
29
+ Started GET "/changelog" for 127.0.0.1 at 2012-03-08 16:30:46 -0600
30
+  (0.4ms) begin transaction
31
+  (0.0ms) rollback transaction
32
+  (0.0ms) begin transaction
33
+
34
+
35
+ Started GET "/changelog" for 127.0.0.1 at 2012-03-09 08:56:03 -0600
36
+ Processing by GitchangelogController#index as HTML
37
+ Rendered /Users/djlee2/Sites/Gems/gitchangelog/app/views/gitchangelog/index.html.erb within layouts/application (8.8ms)
38
+ Completed 200 OK in 52ms (Views: 37.8ms | ActiveRecord: 0.0ms)
39
+  (0.1ms) rollback transaction
40
+  (0.4ms) begin transaction
41
+  (0.0ms) rollback transaction
42
+  (0.0ms) begin transaction
43
+
44
+
45
+ Started GET "/changelog" for 127.0.0.1 at 2012-03-09 09:08:45 -0600
46
+ Processing by GitchangelogController#index as HTML
47
+ Rendered /Users/djlee2/Sites/Gems/gitchangelog/app/views/gitchangelog/index.html.erb within layouts/application (7.5ms)
48
+ Completed 200 OK in 44ms (Views: 32.5ms | ActiveRecord: 0.0ms)
49
+  (0.1ms) rollback transaction
50
+  (0.4ms) begin transaction
51
+  (0.0ms) rollback transaction
52
+  (0.0ms) begin transaction
53
+
54
+
55
+ Started GET "/changelog" for 127.0.0.1 at 2012-03-09 09:42:17 -0600
56
+ Processing by GitchangelogController#index as HTML
57
+ Rendered /Users/djlee2/Sites/Gems/gitchangelog/app/views/gitchangelog/index.html.erb within layouts/application (7.5ms)
58
+ Completed 200 OK in 48ms (Views: 35.2ms | ActiveRecord: 0.0ms)
59
+  (0.1ms) rollback transaction
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitchangelog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,33 +9,33 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-03-08 00:00:00.000000000Z
12
+ date: 2012-03-09 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70321120152040 !ruby/object:Gem::Requirement
16
+ requirement: &70186167888200 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - ~>
19
+ - - ! '>='
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.2
21
+ version: 3.1.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70321120152040
24
+ version_requirements: *70186167888200
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: git
27
- requirement: &70321120151620 !ruby/object:Gem::Requirement
27
+ requirement: &70186167887700 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
31
31
  - !ruby/object:Gem::Version
32
- version: '0'
32
+ version: 1.2.5
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70321120151620
35
+ version_requirements: *70186167887700
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: sqlite3
38
- requirement: &70321120151160 !ruby/object:Gem::Requirement
38
+ requirement: &70186167887320 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,7 +43,7 @@ dependencies:
43
43
  version: '0'
44
44
  type: :development
45
45
  prerelease: false
46
- version_requirements: *70321120151160
46
+ version_requirements: *70186167887320
47
47
  description: Allows you to view the local git changelog at the /changelog/ path
48
48
  email:
49
49
  - david@lee.dj