Skip to content
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Nov 1, 2017. It is now read-only.
github
/
swordfish
Public archive
Notifications
You must be signed in to change notification settings
Fork
75
Star
733
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
swordfish
/
Gemfile
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
37 lines (31 loc) · 624 Bytes
master
Breadcrumbs
swordfish
/
Gemfile
Copy path
Top
File metadata and controls
Code
Blame
37 lines (31 loc) · 624 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails'
gem 'pg'
gem 'net-ssh' # for RSA key fingerprinting
gem 'dotenv', :group => [:test, :development]
gem 'strong_parameters'
group :assets do
gem 'sass-rails'
gem 'compass-rails'
gem 'coffee-rails'
gem 'uglifier'
gem 'hogan_assets'
end
group :development, :test do
gem 'rspec-rails'
gem 'jasminerice'
gem 'guard-jasmine'
end
group :test do
gem 'webmock', :require => false
gem 'poltergeist'
gem 'database_cleaner'
gem 'brakeman', :require => false
gem 'launchy'
gem 'pry'
end
group :guard do
gem 'guard-bundler'
gem 'guard-rspec'
end
You can’t perform that action at this time.