README.md in compact_index-0.9.0 vs README.md in compact_index-0.9.1
- old
+ new
@@ -1,10 +1,10 @@
[![Build Status](https://travis-ci.org/bundler/compact_index.svg)](https://travis-ci.org/bundler/compact_index)
# CompactIndex
-Backend for bundler compact index. Used by rubygems.org and bundler-api
+This gem implements the response logic for the compact index format and to manage the versions file. The compact index format has three endpoints: `/names`, `/versions` and `/info/gem_name`. The versions file is a file which hold the versions in a cache-friendly way. You can see the body response formats on [this blog post](http://andre.arko.net/2014/03/28/the-new-rubygems-index-format/) from @indirect.
## Installation
Add this line to your application's Gemfile:
@@ -14,13 +14,103 @@
And then execute:
$ bundle
-Or install it yourself as:
+## Usage
- $ gem install compact_index
+### `/names`
-## Usage
+To render the body for this call, all you have to do is generate a list of gems available in alfabetical order and use call `CompactIndex.names`.
-TODO: Write usage instructions here
+```ruby
+gem 'compact_index'
+CompactIndex.names(%W(a_test b_test c_test))
+```
+### `/versions`
+
+The body of this endpoint can be rendered calling the `CompactIndex.versions` method. It receives two paremeters: a `CompactIndex::VersionsFile` object and a set of extra gems that aren't in the file yet. The gems lists should be ordered consistently by the user.
+
+```ruby
+gem 'compact_index'
+# Create the object
+versions_file = CompactIndex::VersionsFile.new("/path/to/versions/file")
+
+# Get last updated date. This is used to discover what gems aren't in the file yet
+from_date = @versions_file.updated_at
+
+# Query the extra gems using the from date. Format should be as follows
+extra_gems = [
+ {
+ name: "gem1",
+ versions: [
+ {
+ number: "0.9.8"
+ platform: "ruby"
+ checksum: "abc123" #sha256 checksum available on rubygems.org
+ },
+ {
+ number: "0.9.9"
+ platform: "java"
+ checksum: "abc123"
+ }
+ ]
+ },
+ {
+ name: "gem2",
+ versions: [
+ {
+ number: "0.9.8"
+ platform: "ruby"
+ checksum: "abc123" #sha256 checksum available on rubygems.org
+ },
+ {
+ number: "0.9.9"
+ platform: "java"
+ checksum: "abc123"
+ }
+ ]
+ }
+]
+
+
+# Render the body for the versions response
+CompactIndex.versions(@versions_file, extra_gems)
+```
+
+### `/info/gem_name`
+
+Much like `/versions`, the `/info/gem_name` expects a pre-defined structure to render the text on the screen. The lists also should be ordered by the user. This is the expected format:
+
+```ruby
+gem 'compact_index'
+
+# Expected versions format
+versions = [
+ {
+ number: '1.0.1',
+ checksum: "abc123",
+ dependencies: [
+ {
+ gem: 'foo',
+ version: '=1.0.1',
+ checksum: 'abc123'
+ }
+ ]
+ }
+]
+CompactIndex.info(versions)
+```
+
+### Updating the versions file
+
+The versions file creation and update are different. When created, all versions are at the side of the gem name, which appears only on one line. When updated, the file appends the new information on the end of the file, to avoid file changes.
+
+```ruby
+gem 'compact_index'
+
+versions_file = CompactIndex::VersionsFile.new(file_path)
+last_update = versions_file.updated_at
+gems = ... # Query your database, same format from `/versions` expected
+versions_file.update_with(gems)
+```