mirror of
https://github.com/localForage/localForage.git
synced 2026-01-25 14:44:26 +00:00
It would still be cool to add JS Fiddle examples, but this provides good API docs for the localStorage part of the API. Soon to come: localForage's extended API. * Close #34 * Close #113
28 lines
639 B
Ruby
Executable File
28 lines
639 B
Ruby
Executable File
# If you have OpenSSL installed, we recommend updating
|
|
# the following line to use "https"
|
|
source 'http://rubygems.org'
|
|
|
|
gem "middleman", "~>3.2.0"
|
|
|
|
# For syntax highlighting
|
|
gem "middleman-syntax"
|
|
|
|
# Plugin for middleman to generate Github pages
|
|
gem 'middleman-gh-pages'
|
|
|
|
# Live-reloading plugin
|
|
gem "middleman-livereload", "~> 3.3.0"
|
|
|
|
gem 'redcarpet', '~> 3.1.1'
|
|
|
|
# For faster file watcher updates on Windows:
|
|
gem "wdm", "~> 0.1.0", :platforms => [:mswin, :mingw]
|
|
|
|
# Cross-templating language block fix for Ruby 1.8
|
|
platforms :mri_18 do
|
|
gem "ruby18_source_location"
|
|
end
|
|
|
|
gem "rake", "~> 10.2.0"
|
|
|
|
gem 'therubyracer', :platforms => :ruby |