-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (42 loc) · 1.53 KB
/
Gemfile
File metadata and controls
46 lines (42 loc) · 1.53 KB
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
# -*- mode: ruby; coding: utf-8 -*-
# This file is part of OpenRubyRMK.
#
# Copyright © 2012 OpenRubyRMK Team
#
# OpenRubyRMK is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenRubyRMK is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with OpenRubyRMK. If not, see <http://www.gnu.org/licenses/>.
# This is the gemfile used by bundler to determine
# which gems should be installed.
# For a normal *nix user you have to run
# $ bundle install --without development
# to make your Ruby ready to run the OpenRubyRMK server.
# For those who want to develop OpenRubyRMK or just
# want the very latest OpenRubyRMK freshly checked out
# from the git sources, do
# $ bundle install
# The source where we download gems from
source "https://rubygems.org"
# Common stuff
gem "nokogiri"
gem "eventmachine"
gem "minitar"
gem "ruby-tmx"
# Things only needed for development and testing
group :development do
gem "openrubyrmk-common", :git => "http://git.pegasus-alpha.eu/openrubyrmk/common.git",
:require => "open_ruby_rmk/common"
gem "paint"
gem "turn"
gem "rake"
gem "kramdown"
end