OSDN Git Service

Contributors graphs feature for GitLab
authorKarlo Soriano <dev+karlo@aelogica.com>
Thu, 9 May 2013 05:00:56 +0000 (13:00 +0800)
committerkarlo57 <karlo.karlo.karlo@gmail.com>
Wed, 5 Jun 2013 08:51:48 +0000 (16:51 +0800)
commit71d67e6557acb1ce3beeec2c2c6deb35015bd8bb
treec8e23f80ee62359d8db8574056ea69ac70eb4406
parentb9d989dc056a2a2b9316ff9aa06b57c736426871
Contributors graphs feature for GitLab

Created tests and refactored some code along the way

Added stat graph util spec, refactored code

finsihed up tests and refactors

finsihed up tests and refactors
23 files changed:
Gemfile
Gemfile.lock
app/assets/javascripts/application.js
app/assets/javascripts/stat_graph.js.coffee [new file with mode: 0644]
app/assets/javascripts/stat_graph_contributors.js.coffee [new file with mode: 0644]
app/assets/javascripts/stat_graph_contributors_graph.js.coffee [new file with mode: 0644]
app/assets/javascripts/stat_graph_contributors_util.js.coffee [new file with mode: 0644]
app/assets/stylesheets/application.scss
app/assets/stylesheets/sections/stat_graph.scss [new file with mode: 0644]
app/controllers/stat_graph_controller.rb [new file with mode: 0644]
app/views/layouts/nav/_project.html.haml
app/views/stat_graph/show.html.haml [new file with mode: 0644]
config/routes.rb
lib/gitlab/git_stats.rb [new file with mode: 0644]
lib/gitlab/git_stats_log_parser.rb [new file with mode: 0644]
spec/javascripts/helpers/.gitkeep [new file with mode: 0644]
spec/javascripts/stat_graph_contributors_graph_spec.js [new file with mode: 0644]
spec/javascripts/stat_graph_contributors_util_spec.js [new file with mode: 0644]
spec/javascripts/stat_graph_spec.js [new file with mode: 0644]
spec/javascripts/support/jasmine.yml [new file with mode: 0644]
spec/javascripts/support/jasmine_helper.rb [new file with mode: 0644]
spec/lib/gitlab/git_stats_log_parser_spec.rb [new file with mode: 0644]
spec/lib/gitlab/git_stats_spec.rb [new file with mode: 0644]