This repository has been archived by the owner on Aug 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
69 lines (57 loc) · 1.48 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
#Gemfile
source 'https://rubygems.org'
#ruby=jruby-1.7.10
# ruby "2.0.0"
gem 'rack'
gem 'sinatra'
gem 'kramdown' # for markdown
gem 'haml'
gem 'i18n' #Internationalization
gem 'rack-contrib' #for Rack::Locale, etc.
gem 'bundler'
#CoffeeScript & Javascript Engine
gem 'coffee-script'
gem 'therubyracer', :platforms => :ruby
gem 'therubyrhino', :platforms => :jruby
# For Models:
gem 'sqlite3', :platforms => :ruby
gem 'jdbc-sqlite3', :platforms => :jruby
# gem 'activerecord-jdbc-adapter', :platforms => :jruby
# gem 'activerecord'
# gem 'sinatra-activerecord'
#Server
gem 'puma'
#Model
gem 'mongoid'
#Optional Stuff not implemented yet
# gem 'sinatra-simple-navigation', require: false #for breadcrumbs
gem 'gon-sinatra', :require => false #for gon (moves @variables to javascript)
# gem 'fastimage', :require => false #for getting image sizes
group :development do
# gem 'rvm-capistrano', require: false
gem 'pry', require: false
gem 'shotgun', require: false
gem 'localeapp', require: false
end
group :deploy do
platforms :jruby do
gem 'warbler', '~> 1.4.0'
# gem 'net-ssh', :require => "net/ssh"
# gem 'net-scp', :require => "net/scp"
# gem 'torquebox-remote-deployer'
end
end
group :production do
end
group :test do
gem 'rspec'
gem 'capybara'
gem 'rack-test'
# gem 'selenium-webdriver'
# gem 'capybara-webkit'
end
group :development, :test do
# gem 'cucumber'
# gem 'cucumber-sinatra'
# gem 'rake'
end