Join GitHub today
GitHub is home to over 20 million developers working together to host and review code, manage projects, and build software together.
JavaScript
Ruby

Cannot retrieve the latest commit at this time.
Failed to load latest commit information. | |||
![]() |
.bundle | ||
![]() |
app | ||
![]() |
autotest | ||
![]() |
config | ||
![]() |
db | ||
![]() |
doc | ||
![]() |
examples/simple-kanban | ||
![]() |
lib/tasks | ||
![]() |
public | ||
![]() |
script | ||
![]() |
spec | ||
![]() |
test | ||
![]() |
vendor/plugins | ||
![]() |
.gitignore | ||
![]() |
.rspec | ||
![]() |
Gemfile | ||
![]() |
Gemfile.lock | ||
![]() |
README | ||
![]() |
Rakefile | ||
![]() |
config.ru | ||
![]() |
ruby.exe.stackdump |
README
Current Release: just about ready to integrate into radtrack ... jKanban is a jQuery plugin that will drop a Kanban board anywhere in a web page. All you need to do is supply a RESTful JSON web service to supply card data. To See The Kanban Board in action, with dummy JSON data, simply open up the file examples/simple-kanban/simple-kanban.html in a browser. -- This is all well tested javascript code. See for yourself. -- To run the specs: 1. In a console window: "rake jasmine" 2. Open http://localhost:8888/ in a browser to run the tests To package up and distribute just the jKanban javascript as a package to use in other applications, use: rake dist and then you'll have a dist/jkanban.tgz in the dist/ directory that you can distribute. ActiveRecord::Base.include_root_in_json = false ======= -- Rails -- To start up the back end Rails JSON server you will need to execute these commands: >>>>>>> 697d14e2894d877f9d599b2e8be462be7258a70e gem install bundler bundle install rake db:create:all