forked from cboettig/labnotebook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
39 lines (24 loc) · 703 Bytes
/
Gemfile
File metadata and controls
39 lines (24 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# -*- ruby -*-
source "https://rubygems.org/"
ruby '1.9.3'
# The Jekyll gem
gem "jekyll"
# Github API (octokit plugin)
gem "octokit"
# HTML / XML parser
gem "nokogiri"
# RSS parser (mendeley_feed, github_feed parsing)
gem "feedzirra"
# Natural language time parser (e.g. "Today", "Last Tuesday")
gem "chronic"
# Basic time parser
gem "time"
# Twitter API, for the twitter.rb plugin
gem "twitter"
# Google Analytics API, for google_analytics.rb plugin
gem "garb", :git => 'git@github.com:Sija/garb.git', ">=0.9.7"
# JSON parser (probably not needed, garb and others import multi_json already)
gem "json"
# Ruby Wrapper for the Pandoc markdown parser
gem "pandoc-ruby"
# vim: syntax=ruby