sinatra_more 0.3.12 → 0.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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