-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
72 lines (50 loc) · 2.77 KB
/
Gemfile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
source 'https://rubygems.org'
#ruby=2.1
#ruby-gemset=brewbit-spree
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.12'
# Use postgresql as the database for Active Record
gem 'pg', '0.17.1'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails', '~> 3.1.0'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
# Gibbon is an API wrapper for MailChimp's API https://github.com/amro/gibbon
gem 'gibbon'
# A ruby web server built for concurrency http://puma.io
gem 'puma', '2.8.1'
# Loads environment variables from `.env`. https://github.com/bkeepers/dotenv
gem 'dotenv-rails'
# Official Sass port of Bootstrap http://getbootstrap.com/css/#sass
gem 'bootstrap-sass', :git => 'https://github.com/brewbit/bootstrap-sass.git', :branch => 'master'
# dygraphs JavaScript Visualization Library packaged for the Rails asset pipeline
gem 'dygraphs-rails', :git => 'https://github.com/brewbit/dygraphs-rails.git', :branch => 'master'
# General ruby templating with json, bson, xml, plist and msgpack support https://github.com/nesquena/rabl
gem 'rabl'
# Manage Procfile-based applications http://ddollar.github.com/foreman
gem 'foreman'
# Cron jobs in Ruby https://github.com/javan/whenever
gem 'whenever', :require => false
# DB backup/restore tool https://github.com/ludicast/yaml_db
gem 'yaml_db', :git => 'https://github.com/jetthoughts/yaml_db', ref: 'fb4b6bd7e12de3cffa93e0a298a1e5253d7e92ba'
gem 'spree', :git => 'https://github.com/spree/spree.git', :branch => '2-2-stable'
gem 'spree_gateway', :git => 'https://github.com/spree/spree_gateway.git', :branch => '2-2-stable'
gem 'spree_active_shipping', :git => "https://github.com/spree/spree_active_shipping", :branch => '2-2-stable'
gem 'spree_auth_devise', :git => 'https://github.com/spree/spree_auth_devise.git', :branch => '2-2-stable'
gem 'spree_bootstrap_frontend', :git => 'https://github.com/brewbit/spree_bootstrap_frontend.git', :branch => '2-2-stable'
gem 'spree_brewbit', :path => 'engines/spree_brewbit'
gem 'spree_tumblr', :path => 'engines/spree_tumblr'
gem 'spree_discourse', :path => 'engines/spree_discourse'
gem 'brewbit_dashboard', :git => 'https://github.com/brewbit/brewbit-dashboard.git', :branch => 'master'
gem 'better_errors', group: :development
gem "binding_of_caller", group: :development