-
- Downloads
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
parent
b9d989dc
No related branches found
No related tags found
Showing
- Gemfile 7 additions, 0 deletionsGemfile
- Gemfile.lock 21 additions, 0 deletionsGemfile.lock
- app/assets/javascripts/application.js 2 additions, 0 deletionsapp/assets/javascripts/application.js
- app/assets/javascripts/stat_graph.js.coffee 6 additions, 0 deletionsapp/assets/javascripts/stat_graph.js.coffee
- app/assets/javascripts/stat_graph_contributors.js.coffee 61 additions, 0 deletionsapp/assets/javascripts/stat_graph_contributors.js.coffee
- app/assets/javascripts/stat_graph_contributors_graph.js.coffee 166 additions, 0 deletions...ssets/javascripts/stat_graph_contributors_graph.js.coffee
- app/assets/javascripts/stat_graph_contributors_util.js.coffee 91 additions, 0 deletions...assets/javascripts/stat_graph_contributors_util.js.coffee
- app/assets/stylesheets/application.scss 1 addition, 0 deletionsapp/assets/stylesheets/application.scss
- app/assets/stylesheets/sections/stat_graph.scss 56 additions, 0 deletionsapp/assets/stylesheets/sections/stat_graph.scss
- app/controllers/stat_graph_controller.rb 14 additions, 0 deletionsapp/controllers/stat_graph_controller.rb
- app/views/layouts/nav/_project.html.haml 2 additions, 0 deletionsapp/views/layouts/nav/_project.html.haml
- app/views/stat_graph/show.html.haml 29 additions, 0 deletionsapp/views/stat_graph/show.html.haml
- config/routes.rb 1 addition, 0 deletionsconfig/routes.rb
- lib/gitlab/git_stats.rb 20 additions, 0 deletionslib/gitlab/git_stats.rb
- lib/gitlab/git_stats_log_parser.rb 32 additions, 0 deletionslib/gitlab/git_stats_log_parser.rb
- spec/javascripts/helpers/.gitkeep 0 additions, 0 deletionsspec/javascripts/helpers/.gitkeep
- spec/javascripts/stat_graph_contributors_graph_spec.js 125 additions, 0 deletionsspec/javascripts/stat_graph_contributors_graph_spec.js
- spec/javascripts/stat_graph_contributors_util_spec.js 200 additions, 0 deletionsspec/javascripts/stat_graph_contributors_util_spec.js
- spec/javascripts/stat_graph_spec.js 17 additions, 0 deletionsspec/javascripts/stat_graph_spec.js
- spec/javascripts/support/jasmine.yml 76 additions, 0 deletionsspec/javascripts/support/jasmine.yml
Loading
| Loading
| @@ -107,6 +107,12 @@ gem 'tinder', '~> 1.9.2' |
# HipChat integration | ||
gem "hipchat", "~> 0.9.0" | ||
# d3 | ||
gem "d3_rails", "~> 3.1.4" | ||
# underscore-rails | ||
gem "underscore-rails", "~> 1.4.4" | ||
group :assets do | ||
gem "sass-rails" | ||
gem "coffee-rails" | ||
Loading
| Loading
| @@ -177,6 +183,7 @@ group :development, :test do |
gem 'poltergeist', '~> 1.3.0' | ||
gem 'spork', '~> 1.0rc' | ||
gem 'jasmine' | ||
end | ||
group :test do | ||
Loading
| Loading
|
app/assets/javascripts/stat_graph.js.coffee
0 → 100644
app/controllers/stat_graph_controller.rb
0 → 100644
app/views/stat_graph/show.html.haml
0 → 100644
lib/gitlab/git_stats.rb
0 → 100644
lib/gitlab/git_stats_log_parser.rb
0 → 100644
spec/javascripts/helpers/.gitkeep
0 → 100644
spec/javascripts/stat_graph_spec.js
0 → 100644
spec/javascripts/support/jasmine.yml
0 → 100644
Please register or sign in to comment