Advertisement
Guest User

Untitled

a guest
May 1st, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. This file is a Bundler dependency descriptor file. Its purpose is to list all of
  2. # the dependencies you are using to build your site. It is highly recommended you use
  3. # this to keep your dependencies up to date and not cause conflicts with other gems
  4. # already on your system.
  5. #
  6. # If you do not already have Bundler installed on your computer, run:
  7. #
  8. # gem install bundler
  9. #
  10. # To use this dependecy file simply run:
  11. #
  12. # bundle install
  13. #
  14. # We do recommend that you install the gems into another directory however, to ensure
  15. # your awestruct site is pristine and isn't using versions of gems from other programs.
  16. # To do this execute:
  17. #
  18. # bundle install --path .bundle
  19. #
  20. # More information about Bundler and its other commands can be found at http://gembundler.com/.
  21. # To add other dependencies for your awestruct site simply follow the same pattern as you'll
  22. # find below. To make use of dependecies listed here, simply remove the '#' from the start of
  23. # the line to uncomment the dependency. We hope you enjoy using Awestruct!
  24.  
  25. source 'https://rubygems.org' # This tells Bundler where to look for gems
  26.  
  27. gem 'awestruct', '~> 0.5.3' # Goes without saying
  28. gem 'webrick', '~> 1.3.1' # The rack webserver to use in dev mode
  29.  
  30. # FIXME
  31. # gem 'rake', '>= 0.9.2' # Needed for the Rakefile to work
  32. # gem 'coffee-script', '>= 2.2.0' # If using coffee-script or to remove the warning
  33. # gem 'rb-fsevent', '~> 0.9', :require => false # to remove warning about pulling, Mac OSX
  34. # gem 'rb-inotify', '>= 0.9.0', :require => false # to remove warning about pulling, Linux
  35. # gem 'wdm', :platforms => [:mswin, :mingw], :require => false # to remove warning about pulling, Windows (ruby 1.9+)
  36. # gem 'rb-fchange', '~> 0.0.6', :require => false # to remove warning about pulling, Windows (ruby 1.8.7)
  37. # gem 'therubyracer', '0.10.0', :platforms => :ruby # Javascript runtime on mri (needed for LESS and coffee-scrip$
  38. # gem 'therubyrhino', '~> 2.0.2', :platforms => :jruby # Javascript runtime on jruby (needed for LESS and coffee-scr$
  39. # gem 'less', '>= 2.2.2' # If using LESS instead of sass
  40. # gem 'org-ruby', '>= 0.8' # If using Org-Mode
  41. # gem 'RedCloth', '>= 4.2.9' # If using Textile
  42. # gem 'asciidoctor', '>= 0.1.1' # If using AsciiDoc syntax, need 0.1.1 for Header support
  43. # gem 'slim', '>= 1.3.6' # If using slim instead of haml
  44. # gem 'kramdown', '>= 0.14.2' # If using Markdown
  45. # gem 'uglifier', '>= 1.3.0' # If using the minify transformer
  46. # gem 'htmlcompressor', '>= 0.0.3' # If using the minify transformer
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement