-
Notifications
You must be signed in to change notification settings - Fork 107
/
Gemfile
32 lines (25 loc) · 826 Bytes
/
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
source "http://rubygems.org"
# Declare your gem's dependencies in blogit.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
rails_version = ENV["RAILS_VERSION"] || "default"
rails = case rails_version
when "master"
{ github: "rails/rails" }
when "default"
">= 4.2.9"
else
"~> #{rails_version}"
end
gem "rails", rails
# If we're using Rails 3 - include the
# strong_parameters gem. Otherwise, it should be inluded as part of Rails 4
if rails_version[0] == '3'
gem 'strong_parameters'
end
gem 'rake', '< 11.0'
# Removing this seems to break the Travis-CI flow.
# The rake task "app:acts_as_taggable_on_engine:install:migrations" doesn't work
# without it here
gem 'acts-as-taggable-on', "~> 3.5.0"