Skip to content

Commit

Permalink
update from master
Browse files Browse the repository at this point in the history
  • Loading branch information
orendon committed Oct 13, 2012
2 parents 6d39e00 + 8c15edf commit c5dfd99
Show file tree
Hide file tree
Showing 34 changed files with 364 additions and 11,929 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Expand Up @@ -13,3 +13,7 @@
# Ignore all logfiles and tempfiles.
/log/*.log
/tmp

# Test stuff
/coverage
/spec/rspec_report.html
3 changes: 3 additions & 0 deletions .rspec
@@ -0,0 +1,3 @@
--colour
--format progress
--format html -o "spec/rspec_report.html"
2 changes: 1 addition & 1 deletion .rvmrc
@@ -1 +1 @@
rvm use --create ruby-1.9.3-p194@contrib-hub
rvm use --create 1.9.3@contrib-hub
13 changes: 13 additions & 0 deletions .travis.yml
@@ -0,0 +1,13 @@
language: ruby
rvm:
- 1.9.2
- 1.9.3
before_install:
- gem update --system
- gem --version
env:
- RAILS=3.2.8
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate
- bundle exec rake db:test:prepare
- bundle exec rspec spec/
4 changes: 4 additions & 0 deletions Gemfile
Expand Up @@ -32,6 +32,10 @@ end

group :development, :test do
gem 'sqlite3'

gem "rspec-rails", "~> 2.11.0"
gem "factory_girl_rails", "~> 4.1.0"
gem 'simplecov', :require => false
end

group :production do
Expand Down
28 changes: 27 additions & 1 deletion Gemfile.lock
Expand Up @@ -37,9 +37,15 @@ GEM
coffee-script-source
execjs
coffee-script-source (1.3.3)
diff-lcs (1.1.3)
erubis (2.7.0)
execjs (1.4.0)
multi_json (~> 1.0)
factory_girl (4.1.0)
activesupport (>= 3.0.0)
factory_girl_rails (4.1.0)
factory_girl (~> 4.1.0)
railties (>= 3.0.0)
faraday (0.8.4)
multipart-post (~> 1.1)
geocoder (1.1.4)
Expand Down Expand Up @@ -117,19 +123,36 @@ GEM
rake (0.9.2.2)
rdoc (3.12)
json (~> 1.4)
rspec (2.11.0)
rspec-core (~> 2.11.0)
rspec-expectations (~> 2.11.0)
rspec-mocks (~> 2.11.0)
rspec-core (2.11.1)
rspec-expectations (2.11.3)
diff-lcs (~> 1.1.3)
rspec-mocks (2.11.3)
rspec-rails (2.11.0)
actionpack (>= 3.0)
activesupport (>= 3.0)
railties (>= 3.0)
rspec (~> 2.11.0)
sass (3.2.1)
sass-rails (3.2.5)
railties (~> 3.2.0)
sass (>= 3.1.10)
tilt (~> 1.3)
simplecov (0.7.1)
multi_json (~> 1.0)
simplecov-html (~> 0.7.1)
simplecov-html (0.7.1)
sprockets (2.1.3)
hike (~> 1.2)
rack (~> 1.0)
tilt (~> 1.1, != 1.3.0)
sqlite3 (1.3.6)
thor (0.16.0)
tilt (1.3.3)
treetop (1.4.10)
treetop (1.4.11)
polyglot
polyglot (>= 0.3.1)
tzinfo (0.3.33)
Expand All @@ -142,6 +165,7 @@ PLATFORMS

DEPENDENCIES
coffee-rails (~> 3.2.1)
factory_girl_rails (~> 4.1.0)
geocoder
github_api
jquery-rails
Expand All @@ -150,6 +174,8 @@ DEPENDENCIES
omniauth-github
pg
rails (= 3.2.8)
rspec-rails (~> 2.11.0)
sass-rails (~> 3.2.3)
simplecov
sqlite3
uglifier (>= 1.0.3)
Binary file added app/assets/images/github-admin.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/off.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/on.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/repo-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions app/assets/javascripts/contribhub.js
@@ -0,0 +1,13 @@
$(function() {
$('.repo-user-description').hide();

$('.expand-description').click(function() {
$(this).parents('li').find(".repo-user-description").toggle('fast')
})

$('.help-button').click(function(e) {
var repoName = $(this).attr('data-repo')
$.post("/repos/toggle_help", {repo: repoName});
e.preventDefault();
});
})
16 changes: 0 additions & 16 deletions app/assets/stylesheets/bootstrap.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 0 additions & 9 deletions app/assets/stylesheets/bootstrap.minOLD.css

This file was deleted.

0 comments on commit c5dfd99

Please sign in to comment.