sinatra_more 0.3.12 → 0.3.13
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.13
|
@@ -5,7 +5,7 @@ module SinatraMore
|
|
5
5
|
# require_dependencies 'mocha', 'bacon', :env => :testing
|
6
6
|
def require_dependencies(*gem_names)
|
7
7
|
options = gem_names.extract_options!
|
8
|
-
gem_names.each { |lib| insert_into_gemfile(lib, options) }
|
8
|
+
gem_names.reverse.each { |lib| insert_into_gemfile(lib, options) }
|
9
9
|
end
|
10
10
|
|
11
11
|
# Inserts a required gem into the Gemfile to add the bundler dependency
|
data/sinatra_more.gemspec
CHANGED