├── .gitignore ├── .rvmrc ├── .travis.yml ├── Gemfile ├── History.rdoc ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── app └── assets │ └── stylesheets │ └── calendar_styles │ ├── blue.css │ ├── grey.css │ └── red.css ├── calendar_helper.gemspec ├── init.rb ├── lib └── calendar_helper.rb └── test └── test_calendar_helper.rb /.gitignore: -------------------------------------------------------------------------------- 1 | test/output/ 2 | tmp/* 3 | pkg/* 4 | Gemfile.lock 5 | /html/ 6 | *.sublime-* 7 | 8 | -------------------------------------------------------------------------------- /.rvmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/.rvmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/Gemfile -------------------------------------------------------------------------------- /History.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/History.rdoc -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/stylesheets/calendar_styles/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/app/assets/stylesheets/calendar_styles/blue.css -------------------------------------------------------------------------------- /app/assets/stylesheets/calendar_styles/grey.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/app/assets/stylesheets/calendar_styles/grey.css -------------------------------------------------------------------------------- /app/assets/stylesheets/calendar_styles/red.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/app/assets/stylesheets/calendar_styles/red.css -------------------------------------------------------------------------------- /calendar_helper.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/calendar_helper.gemspec -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- 1 | ActionView::Base.send :include, CalendarHelper 2 | -------------------------------------------------------------------------------- /lib/calendar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/lib/calendar_helper.rb -------------------------------------------------------------------------------- /test/test_calendar_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topfunky/calendar_helper/HEAD/test/test_calendar_helper.rb --------------------------------------------------------------------------------