Skip to content
This repository has been archived by the owner on Mar 15, 2023. It is now read-only.

Commit

Permalink
Updated the MANIFEST and default config file.
Browse files Browse the repository at this point in the history
Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
  • Loading branch information
Yorick Peterse committed Feb 3, 2013
1 parent 553932b commit f59f947
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
33 changes: 33 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.gitignore
.yardopts
Gemfile
LICENSE
MANIFEST
README.md
Rakefile
bin/gem-mirror
doc/.gitkeep
doc/Contributing.md
doc/DCO.md
doc/css/.gitkeep
doc/css/common.css
gem-mirror.gemspec
lib/gem-mirror.rb
lib/gem-mirror/cli.rb
lib/gem-mirror/cli/checksum.rb
lib/gem-mirror/cli/index.rb
lib/gem-mirror/cli/init.rb
lib/gem-mirror/cli/update.rb
lib/gem-mirror/configuration.rb
lib/gem-mirror/gem.rb
lib/gem-mirror/gems_fetcher.rb
lib/gem-mirror/mirror_directory.rb
lib/gem-mirror/mirror_file.rb
lib/gem-mirror/source.rb
lib/gem-mirror/version.rb
lib/gem-mirror/versions_fetcher.rb
lib/gem-mirror/versions_file.rb
task/manifest.rake
template/config.rb
template/public/checksums/.gitkeep
template/public/gems/.gitkeep
10 changes: 6 additions & 4 deletions template/config.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This is the main configuration file for your RubyGems mirror. Here you can
# change settings such as the location to store Gem files in, what Gems to
# ignore, what sources to mirror and so on.
# change settings such as the location to store Gem files in and what sources
# and Gems you'd like to mirror.
GemMirror.configuration.configure do
# The directory to store indexing information as well as the Gem files in.
destination File.expand_path('../public', __FILE__)
Expand All @@ -11,8 +11,10 @@
# When set to `true` development dependencies of Gems will also be mirrored.
development false

# By default everything is logged.
# logger.level = Logger::ERROR
# If you're mirroring a lot of Gems you'll probably want to switch the
# logging level to Logger::ERROR or Logger::INFO to reduce the amount of
# noise.
logger.level = Logger::DEBUG

# A source is a remote location that you want to mirror. The first parameter
# of this method is the human readable name, the second one the URL. The
Expand Down

0 comments on commit f59f947

Please sign in to comment.