blob: 331c3e49d3b144b39691e94063dd35862659d0ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
Clips
=====
An Instapaper-ish web application that allows you to collect URLs to check later. Collect URLs using the included bookmarlet, which saves the URL of the current page.
# Running the application
Clips is written in [Camping](http://camping.io). Start by `bundle install`-ing gems. Then start the server.
$ bundle install
$ rackup
Use [Shotgun](https://github.com/rtomayko/shotgun) to auto-restart the server when the filesystem changes:
$ shotgun config.ru
A great shell you can use is [Racksh](https://github.com/sickill/racksh). Start it and you can inspect the `Clip` model.
$ racksh
$ Clip::Models::Clip.all
# License
Clips is licensed under the MIT License. See the included LICENSE file.
|