├── .gitignore ├── .rvmrc ├── Gemfile ├── Gemfile.lock ├── README.markdown ├── config.ru ├── jquery-graphie.rb ├── public ├── images │ └── jq_bg.png └── javascript │ ├── demo.js │ ├── jquery.graphie.js │ └── lib │ └── raphael.js └── views ├── index.haml └── stylesheets ├── application.sass └── reset.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- 1 | rvm_gemset_create_on_use_flag=1 2 | rvm use 1.8.7@jquery-graphie 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gem 'haml' 4 | gem 'sass' 5 | gem 'hassle' 6 | gem 'sinatra' 7 | gem 'rdiscount' 8 | 9 | group :development do 10 | gem 'heroku' 11 | gem 'sinatra-reloader' 12 | end 13 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: http://rubygems.org/ 3 | specs: 4 | backports (2.2.1) 5 | configuration (1.3.1) 6 | haml (3.1.2) 7 | hassle (0.0.1) 8 | haml 9 | rack 10 | heroku (2.3.3) 11 | launchy (>= 0.3.2) 12 | rest-client (~> 1.6.1) 13 | term-ansicolor (~> 1.0.5) 14 | launchy (0.4.0) 15 | configuration (>= 0.0.5) 16 | rake (>= 0.8.1) 17 | mime-types (1.16) 18 | monkey-lib (0.5.4) 19 | backports 20 | rack (1.3.0) 21 | rake (0.9.2) 22 | rdiscount (1.6.8) 23 | rest-client (1.6.3) 24 | mime-types (>= 1.16) 25 | sass (3.1.3) 26 | sinatra (1.2.6) 27 | rack (~> 1.1) 28 | tilt (>= 1.2.2, < 2.0) 29 | sinatra-advanced-routes (0.5.1) 30 | monkey-lib (~> 0.5.0) 31 | sinatra (~> 1.0) 32 | sinatra-sugar (~> 0.5.0) 33 | sinatra-reloader (0.5.0) 34 | sinatra (~> 1.0) 35 | sinatra-advanced-routes (~> 0.5.0) 36 | sinatra-sugar (0.5.1) 37 | monkey-lib (~> 0.5.0) 38 | sinatra (~> 1.0) 39 | term-ansicolor (1.0.5) 40 | tilt (1.3.2) 41 | 42 | PLATFORMS 43 | ruby 44 | 45 | DEPENDENCIES 46 | haml 47 | hassle 48 | heroku 49 | rdiscount 50 | sass 51 | sinatra 52 | sinatra-reloader 53 | -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- 1 | # Graphie 2 | 3 | A cute little graphing library with an adorably minimal amount of functionality. 4 | 5 | Visit [http://jquery-graphie.heroku.com]() for examples. 6 | 7 | ## Using graphie 8 | 9 | - Include [Raphael](http://raphaeljs.com/) and [the plugin](https://github.com/camerond/jquery-graphie/blob/master/public/javascript/jquery.graphie.js). 10 | - Call `$.graphie()` on any `
`, `