11# Task Lists
22
3- * NOTE: * _ This repository is no longer supported or updated by GitHub. If you wish to continue to develop this code yourself, we recommend you fork it. _ </ code >
3+ [ ![ Build Status ] ( http://img.shields.io/travis/deckar01/task_list.svg )] [ travis ]
44
5-
6- [ ![ Gem Version] ( http://img.shields.io/gem/v/task_list.svg )] [ gem ]
7- [ ![ Build Status] ( http://img.shields.io/travis/github/task_list.svg )] [ travis ]
8- [ ![ Dependency Status] ( http://img.shields.io/gemnasium/github/task_list.svg )] [ gemnasium ]
9- [ ![ Inline docs] ( http://inch-ci.org/github/github/task_list.svg?branch=master )] [ inchpages ]
10-
11- [ gem ] : https://rubygems.org/gems/task_list
12- [ travis ] : https://travis-ci.org/github/task_list
13- [ gemnasium ] : https://gemnasium.com/github/task_list
14- [ inchpages ] : http://inch-ci.org/github/github/task_list
5+ [ travis ] : https://travis-ci.org/deckar01/task_list
156
167This package provides various components necessary for integrating
178[ Task Lists] ( https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments )
18- into your GitHub-flavored- Markdown user content.
9+ into your Markdown user content.
1910
2011## Components
2112
2213The Task List feature is made of several different components:
2314
24- * GitHub-flavored- Markdown Ruby Filter
15+ * Markdown Ruby Filter
2516* Summary Ruby Model: summarizes task list items
2617* JavaScript: frontend task list update behavior
2718* CSS: styles Markdown task list items
@@ -36,7 +27,7 @@ Rendering Task List item checkboxes from source Markdown depends on the `TaskLis
3627
3728``` ruby
3829require ' html/pipeline'
39- require ' task_list/filter'
30+ require ' deckar01- task_list/filter'
4031
4132pipeline = HTML ::Pipeline .new [
4233 HTML ::Pipeline ::MarkdownFilter ,
@@ -80,7 +71,7 @@ NOTE: Updates are not persisted to the server automatically. Persistence is the
8071
8172Read through the documented behaviors and samples [ in the source] [ frontend_behaviors ] for more detail, including documented events.
8273
83- [ frontend_behaviors ] : https://github.com/github /task_list/blob/master/app/assets/javascripts/task_list.coffee
74+ [ frontend_behaviors ] : https://github.com/deckar01 /task_list/blob/master/app/assets/javascripts/task_list.coffee
8475
8576## Installation
8677
@@ -90,23 +81,23 @@ Task Lists are packaged as both a RubyGem with both backend and frontend behavio
9081
9182For the backend Ruby components, add this line to your application's Gemfile:
9283
93- gem 'task_list'
84+ gem 'deckar01- task_list'
9485
9586And then execute:
9687
9788 $ bundle
9889
9990### Frontend: Bower
10091
101- For the frontend components, add ` task_list ` to your Bower dependencies config.
92+ For the frontend components, add ` deckar01- task_list` to your Bower dependencies config.
10293
10394This is the preferred method for including the frontend assets in your application. Alternatively, for Rails methods using ` Sprockets ` , see below.
10495
10596### Frontend: Rails 3+ Railtie method
10697
10798``` ruby
10899# config/application.rb
109- require ' task_list/railtie'
100+ require ' deckar01- task_list/railtie'
110101```
111102
112103### Frontend: Rails 2.3 Manual method
@@ -116,15 +107,15 @@ Wherever you have your Sprockets setup:
116107``` ruby
117108Sprockets ::Environment .new (Rails .root) do |env |
118109 # Load TaskList assets
119- require ' task_list/railtie'
110+ require ' deckar01- task_list/railtie'
120111 TaskList .asset_paths.each do |path |
121112 env.append_path path
122113 end
123114end
124115```
125116
126117If you're not using Sprockets, you're on your own but it's pretty straight
127- forward. ` task_list/railtie ` defines ` TaskList.asset_paths ` which you can use
118+ forward. ` deckar01- task_list/railtie` defines ` TaskList.asset_paths ` which you can use
128119to manage building your asset bundles.
129120
130121### Dependencies
@@ -149,7 +140,3 @@ Navigate to http://localhost:4011/test/functional/test_task_lists_behavior.html
149140## Community Integration
150141- [ Waffle.io] ( http://waffle.io )
151142- [ HuBoard] ( https://huboard.com/ )
152-
153- ## Contributing
154-
155- Read the [ Contributing Guidelines] ( CONTRIBUTING.md ) and open a Pull Request!
0 commit comments