-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splits fetching data from the web (repositories, identities, contribu…
…tors and so on) in to parallel batches - introducing parallel gem #321
- Loading branch information
1 parent
f492066
commit 7a38885
Showing
9 changed files
with
159 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,26 +29,30 @@ | |
|
||
source 'https://rubygems.org' | ||
|
||
#gem "awestruct", "0.5.7" | ||
gem "awestruct", :path => '../awestruct' | ||
#gem "awestruct", :git => '[email protected]:awestruct/awestruct.git' | ||
#gem 'awestruct', '0.5.7' | ||
gem 'awestruct', :path => '../awestruct' | ||
#gem 'awestruct', :git => '[email protected]:awestruct/awestruct.git' | ||
gem 'git', '1.2.9.1' # newer version incorrectly reads UTF-8 enconded commits (authors for example) | ||
gem 'asciidoctor' | ||
gem 'haml-contrib' | ||
gem 'bootstrap-sass', '< 3.0' | ||
gem "puma" | ||
gem "rest-client", ">= 2.0.0" | ||
gem "hpricot" | ||
gem "RedCloth" | ||
gem "redcarpet" | ||
gem "coffee-script" | ||
gem "uglifier" | ||
gem "htmlcompressor" | ||
gem "compass", "0.12.7" | ||
gem "ri_cal", "0.8.8" | ||
gem "tzinfo", "0.3.33" | ||
gem "therubyracer", "0.11.3" | ||
gem "jruby-openssl", "0.7.7", :platforms => :jruby | ||
gem "rb-inotify", :platforms => [:ruby, :jruby] | ||
gem "versionomy" | ||
gem 'puma' | ||
gem 'rest-client', '>= 2.0.0' | ||
gem 'hpricot' | ||
gem 'RedCloth' | ||
gem 'redcarpet' | ||
gem 'coffee-script' | ||
gem 'uglifier' | ||
|
||
gem 'htmlcompressor' | ||
gem 'compass', '0.12.7' | ||
gem 'ri_cal', '0.8.8' | ||
gem 'tzinfo', '0.3.33' | ||
gem 'therubyracer', '0.11.3' | ||
gem 'jruby-openssl', '0.7.7', :platforms => :jruby | ||
gem 'rb-inotify', :platforms => [:ruby, :jruby] | ||
gem 'versionomy' | ||
gem 'rspec', '>= 2.9' | ||
gem "nokogiri", "1.6.8" | ||
gem 'nokogiri', '1.6.8' | ||
gem 'ruby-progressbar' | ||
gem 'parallel' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.