Sha256: 81550097e6511700fd3f936202f07615f1017eaeceaa5604ba6ede5de5f09f5b

Contents?: true

Size: 1.3 KB

Versions: 3

Compression:

Stored size: 1.3 KB

Contents

= Clipster

Code snippets before they were cool.

An OpenSource Rails engine to add clipboard code sharing to your existing Ruby on Rails applications. Great for internal code sharing.

== Production

Add clipster to your Gemfile and then bundle install

    gem 'clipster'
    bundle install

or if you aren't using Bundler, run 

    gem install 'clipster'

Mount the Clipster Engine in your applcations routes.rb like follows.

    mount Clipster::Engine, :at => '/clipster'

cd to your apps root and run

    rake clipster:install:migrations && rake db:migrate

Restart your application and you should be able to access the engine at http://domain.tld/clipster

== Development

cd into your test application directory's lib folder and run the following

    git clone https://github.com/kwbock/clipster.git

Add the following to your app's Gemfile

    gem 'clipster', :path => './lib/clipster'

Add the following to your app's routes.rb

    mount Clipster::Engine, :at => '/clipster'

cd to your apps root and run

    rake clipster:install:migrations && rake db:migrate

Launch your server and navigate to https://localhost:3000/clipster to confirm the engine was mounted correctly


=== Todos

Look into adding authentication and user role handling, specifically the ability to tie clips to users. (targetting devise first)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
clipster-0.2.0 README.rdoc
clipster-0.1.2 README.rdoc
clipster-0.1.1 README.rdoc