polisher 0.2 → 0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. data/README.rdoc +19 -9
  2. data/Rakefile +2 -2
  3. metadata +2 -2
@@ -1,25 +1,35 @@
1
1
  == Rubygem Polisher
2
2
  Copyright (C) 2010 Red Hat, Inc.
3
+
3
4
  Written by Mohammed Morsi <mmorsi@redhat.com>
4
5
 
5
6
  === Intro
6
- Polisher is a post-publishing processing webapp for rubygems. It allows for
7
- the configuration of events to be run on target gem/version updates. Polisher
8
- makes uses of the gemcutter webhook API in conjunction with the sinatra/rack
9
- web framework to subscribe to gem updates to run any specified/arbitrary event
7
+ Polisher is a webapp utility greated towards processing rubygems after they
8
+ have been published. It allows the end user to configure events to be run when
9
+ specified gems are updated.
10
+
11
+ Polisher uses the gemcutter webhook API in conjunction with the sinatra/rack
12
+ web framework to subscribe to gem updates and run any specified/arbitrary event
10
13
  handler callbacks.
11
14
 
12
15
  === Running
13
- Simply 'gem install polisher'
16
+ To install simply run:
14
17
 
15
- Also checkout the source from github via
18
+ 'gem install polisher'
19
+
20
+ Alternatively checkout the source from github via
16
21
 
17
22
  'git clone git://github.com/movitto/polisher.git'
18
23
 
19
- To run the spec suite simply run
24
+ To run the server, run 'bin/server' in the project root.
20
25
 
21
- 'rake spec'
26
+ To run the spec suite simply run 'rake spec'
22
27
 
28
+ Before running anything make sure to set any neccessary configuration
29
+ in config/polisher.yml (particularily your gem api key)
23
30
 
24
31
  === Using
25
- See the generated API and specs
32
+ See the generated API docs and spec suite for more detailed usage.
33
+
34
+ Polisher is a work in progress, and features are being added / removed as neccessary.
35
+ Comments, bug reports, and patches are all very welcome.
data/Rakefile CHANGED
@@ -14,7 +14,7 @@ env ||= 'development'
14
14
  logger = Logger.new(STDOUT)
15
15
 
16
16
  GEM_NAME='polisher'
17
- PKG_VERSION='0.2'
17
+ PKG_VERSION='0.3'
18
18
 
19
19
  namespace :db do
20
20
  task :migrate do
@@ -80,7 +80,7 @@ SPEC = Gem::Specification.new do |s|
80
80
 
81
81
  s.author = "Mohammed Morsi"
82
82
  s.email = "mmorsi@redhat.com"
83
- s.date = %q{2010-01-13}
83
+ s.date = %q{2010-03-11}
84
84
  s.description = "Ruby gem polisher"
85
85
  s.summary = "Ruby gem polisher"
86
86
  s.homepage = "http://github.com/movitto/polisher"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polisher
3
3
  version: !ruby/object:Gem::Version
4
- version: "0.2"
4
+ version: "0.3"
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mohammed Morsi
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-01-13 00:00:00 -05:00
12
+ date: 2010-03-11 00:00:00 -05:00
13
13
  default_executable:
14
14
  dependencies: []
15
15