Sha256: ba3af31c41943c59fd23dcad299636185180b48b4ed01cdfb63bb075d448d8b8

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

# Pictorama

[![Build Status](https://travis-ci.org/aboyon/pictorama.png?branch=master)](https://travis-ci.org/aboyon/pictorama)
[![Code Climate](https://codeclimate.com/github/aboyon/pictorama.png)](https://codeclimate.com/github/aboyon/pictorama)
[![Coverage Status](https://coveralls.io/repos/aboyon/pictorama/badge.png)](https://coveralls.io/r/aboyon/pictorama)


Welcome to *Pictorama*. An easy picture gallery based on directory and files

### How to install

Just clone the github repo..

```ruby
git clone git@github.com:aboyon/pictorama.git
```
### Configure your settings...

Copy the config.sample.yml to config.yml (into the config/ file)

```ruby
cd config/
cp config.sample.yml config.yml
```
and then proceed to adjust the settings

```yaml
picturama:
  album_source: '/home/user/Pictures/some_folder/'
  allowed_formats: ['jpg','png','jpeg']
  thumbnail_prefix: thumb_
  thumnail_default_size: "200x200"
```

generate your thumbnails quickly, by using the rake task created for that
```
rake thumbnail:generate["/some/folder"] #you can specify a different folder...
```
and then you'll get an answer like this:
```
Generating 30 thumbnails for folder /some/folder/ ...
Size: 200x200
Thumbnail generated from source 1.JPG. Target destination thumb_1.JPG
Thumbnail generated from source 2.JPG. Target destination thumb_2.JPG
```
# License

Please [see licence file](https://github.com/aboyon/pictorama/blob/master/LICENCE) for further reading.

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
picturama-1.0.1 README.md
picturama-1.0.0beta README.md
picturama-0.0.6 README.md
picturama-0.0.5 README.md
picturama-0.0.3 README.md
picturama-0.0.2 README.md