gitstats 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ GITSTATS
2
+ ========
3
+
4
+ Generate statistics using git blame tool.
5
+
6
+ INSTALL
7
+ =======
8
+
9
+ Insert `gem "gitstats"` in your Gemfile and run `bundle install`. Goto `/gitstats` to see statistics.
@@ -20,5 +20,5 @@ Gem::Specification.new do |s|
20
20
 
21
21
  # specify any dependencies here; for example:
22
22
  # s.add_development_dependency "rspec"
23
- # s.add_runtime_dependency "rest-client"
23
+ s.add_runtime_dependency "json"
24
24
  end
@@ -57,9 +57,9 @@ module Gitstats
57
57
 
58
58
  <body>
59
59
  <!--Div that will hold the pie chart-->
60
- <div id="chart_div" styles="margin:auto"></div>
61
- <br />
62
60
  <div id="table_div"></div>
61
+ <br />
62
+ <div id="chart_div" styles="margin:auto"></div>
63
63
  </body>
64
64
  </html>
65
65
  EOB
@@ -1,3 +1,3 @@
1
1
  module Gitstats
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andrey Koleshko
@@ -16,8 +16,19 @@ cert_chain: []
16
16
 
17
17
  date: 2011-10-09 00:00:00 +03:00
18
18
  default_executable:
19
- dependencies: []
20
-
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: json
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ requirements:
25
+ - - ">="
26
+ - !ruby/object:Gem::Version
27
+ segments:
28
+ - 0
29
+ version: "0"
30
+ type: :runtime
31
+ version_requirements: *id001
21
32
  description: Show git statistics using blame. More metrics are coming.
22
33
  email:
23
34
  - ka8725@gmail.com
@@ -30,7 +41,7 @@ extra_rdoc_files: []
30
41
  files:
31
42
  - .gitignore
32
43
  - Gemfile
33
- - README
44
+ - README.markdown
34
45
  - Rakefile
35
46
  - config/routes.rb
36
47
  - gitstats.gemspec
data/README DELETED
@@ -1,4 +0,0 @@
1
- GITSTATS
2
- ========
3
-
4
- Generate statistics using git blame tool.