Skip to content

Commit

Permalink
other text files markdowned, generator and tests updated
Browse files Browse the repository at this point in the history
  • Loading branch information
will-r committed Aug 15, 2011
1 parent 2196691 commit 9f06e69
Show file tree
Hide file tree
Showing 6 changed files with 856 additions and 3 deletions.
554 changes: 554 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

244 changes: 244 additions & 0 deletions CONTRIBUTORS.md
@@ -0,0 +1,244 @@
# Contributors

The following people have submitted changes which have been applied to the
core:

## Edge

* Jeff Casimir
* Mario Visic
* Mark Reginald James
* Andrew O'Brian
* Dirk Kelly
* Oriol Gual
* Petrik de Heus
* Gert Goet
* Jim Gay
* Josh French
* Andrew vonderLuft
* William Ross
* John Muhl

## 0.9.1 Refraction

* Jim Gay

## 0.9.0 Refraction

* Mario Visic
* Andrew Cates
* Janne Asmala
* Keith Bingman
* Dirk Kelly
* Anna billstrom
* William Ross
* M. Scott Ford
* Josh French
* Travis D. Warlick, Jr.
* Jason Garber
* Chris Ricca
* Jim Gay
* John Muhl
* Ben Morrow
* Sean Cribbs
* Brandon Mathis
* Daniel Beach
* Chris Parrish
* John Long

## 0.8.2 Lustery

* Jim Gay

## 0.8.1 Luster

* John Long
* Sean Cribbs
* Antonio Cangiano
* alexmek
* Jeremy Stephens
* John Muhl
* Alex Wallace
* Justin Blecher
* Kunal Shah
* Jim Gay
* Josh French

## 0.8.0 Asterism

* Michael Kessler
* David Cato
* Kunal Shah
* Brett McHargue
* Jim Gay
* Kunal Shah
* Matt Henry
* Rick DeNatale
* Jason Garber
* Pat Allan
* Josh French
* Brent Kroeker
* Sean Cribbs

## 0.7.2 Engravings

* Andrew vonderLuft

## 0.7.1 Engraving

* John Muhl
* Sean Cribbs

## 0.7.0 Intaglio

* Paul du Coudray
* Nikolay Karev
* August Lilleas
* Brandan Lennox
* Jeroen Janssen
* Erik Ostrom
* Nathaniel Talbott
* Yevgeny Smirnoff
* Sytse Sijbrandij
* Brian Landau
* Adam Williams
* Mark Imbriaco
* Rick DeNatale
* Clinton Nixon
* John Muhl
* Andrew O'Brien
* Joe Van Dyk
* Pat Allan
* Matt Henry
* Keith Bennett
* Thomas Ingram
* Josh French
* Jason Garber
* Mislav Marohnić
* Jim Gay
* Sean Cribbs

## 0.6.9 Etch

* Mark A. Yoon
* Jim Gay
* Sean Cribbs

## 0.6.8 Incise

* Andrew Neil
* Glenn Murray
* Tim Gossett
* John Muhl
* Josh French
* Jim Gay
* Alex Wayne
* Nick Plante
* Loren Johnson
* Sean Cribbs
* Thomas Watson Steen

## 0.6.7 Mordant

* John Long
* Josh French
* Sean Cribbs

## 0.6.6 Chiseled

* Josh French
* Sean Cribbs

## 0.6.5 Chisel

* Adam Keyes
* Marty Haught
* xtoddx
* skrat
* Michael Klett
* Matthew Elder
* Nick Plante
* ben
* jonleighton
* Josh French
* abstractioneer
* andreas
* Keeran Hawoldar
* Loren Johnson
* Benny Degezelle
* John Long
* Andrew O'Brien
* Bjørn Arild Mæland
* Mislav Marohnić
* Daniel Sheppard
* Sean Cribbs

## 0.6.4 Gem Shaper

* Andrew Neil
* zilkey
* Mark Gallop
* Bjørn Arild Mæland
* ana
* Bodhi Philpot
* jay@jay.fm
* Brian Skahan
* Mislav Marohnić
* Daniel Sheppard
* John Long
* Peter Berkenbosch
* Sean Cribbs

## 0.6.3 Rock Grinder

* oli
* Daniel Sheppard
* vitali
* tolbrino
* Sean Cribbs
* Earl Chew
* John Long

## 0.6.2 Jewel Carver

* Sean Cribbs
* Daniel Sheppard
* Keita

## 0.6.1 Stone Cutter

* Sean Cribbs
* Daniel Sheppard

## 0.6.0 Lapidary

* Alexander Horn
* Adam Williams
* Sean Santry
* Sean Cribbs
* Brian Gernhardt
* Bodhi Philpot
* Andrew Barnett
* Jesse Newland
* Josh Ferguson
* Daniel Sheppard
* Matte Edens
* Jacob Burkhart
* Chris Parrish

## 0.5.1 Gemdust

* Daniel Sheppard
* Paul Smith
* Bodhi Philpot

## 0.5.0 Grindstone

* Matt McCray
* Paul Smith
* Scott Walter
* Sven Lauer
* Tristan Boniver
* Chris Corriveau
* Ryan Platte
* Luis Lavena
34 changes: 34 additions & 0 deletions INSTALL.md
@@ -0,0 +1,34 @@
# Installation and Setup

Once you have extracted the files into the directory where you would like to
install Radiant:

1. Create the MySQL/PostgreSQL/SQLite/SQL Server/DB2 databases for your Web
site. You only need to create the "production" database, but you may also
want to create the "development" and "test" databases if you are developing
extensions or running tests.

2. Edit config/database.yml to taste. There are example files available for
various databases in the config directory.

3. Run the database bootstrap rake task:

% rake production db:bootstrap

(If you would like bootstrap your development database run `rake
development db:bootstrap`.)

If you get the error "no such file to load -- spec/rake/spectask" please
install Rspec (gem install rspec).

4. Start it like a normal Rails application. To test execute:

% script/server -e production

And open your Web browser on port 3000 (http://localhost:3000). The
administrative interface is available at /admin/. By default the bootstrap
rake task creates a user called "admin" with a password of "radiant".

When using Radiant on a production system you may also need to set permissions
on the public and cache directories so that your Web server can access those
directories with the user that it runs under.
21 changes: 21 additions & 0 deletions LICENSE.md
@@ -0,0 +1,21 @@
# MIT License

Copyright (c) 2006-2009, John W. Long and Sean D. Cribbs.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 2 additions & 2 deletions lib/generators/instance/instance_generator.rb
Expand Up @@ -40,7 +40,7 @@ def manifest


# Standard files and directories # Standard files and directories
base_dirs = %w(config config/environments config/initializers db log script public vendor/plugins vendor/extensions) base_dirs = %w(config config/environments config/initializers db log script public vendor/plugins vendor/extensions)
text_files = %w(CHANGELOG CONTRIBUTORS LICENSE INSTALL README) text_files = %w(CHANGELOG.md CONTRIBUTORS.md LICENSE.md INSTALL.md README.md)
environments = Dir["#{root}/config/environments/*.rb"] environments = Dir["#{root}/config/environments/*.rb"]
# initializers are now run from RADIANT_ROOT before the instance, so those are no longer copied across # initializers are now run from RADIANT_ROOT before the instance, so those are no longer copied across
scripts = Dir["#{root}/script/**/*"].reject { |f| f =~ /(destroy|generate|plugin)$/ } scripts = Dir["#{root}/script/**/*"].reject { |f| f =~ /(destroy|generate|plugin)$/ }
Expand Down Expand Up @@ -85,7 +85,7 @@ def manifest
m.file "instance_radiant_config.rb", "config/initializers/radiant_config.rb" m.file "instance_radiant_config.rb", "config/initializers/radiant_config.rb"


# Install Readme # Install Readme
m.readme radiant_root("INSTALL") m.readme radiant_root("INSTALL.md")
end end
end end


Expand Down
2 changes: 1 addition & 1 deletion spec/generators/instance_generator_spec.rb
Expand Up @@ -11,7 +11,7 @@
end end


# Check for files # Check for files
%w(CHANGELOG CONTRIBUTORS LICENSE INSTALL README Rakefile).each do |file| %w(CHANGELOG.md CONTRIBUTORS.md LICENSE.md INSTALL.md README.md Rakefile).each do |file|
it "should have a #{file}" do it "should have a #{file}" do
''.should have_generated_file(file) ''.should have_generated_file(file)
end end
Expand Down

0 comments on commit 9f06e69

Please sign in to comment.