sinatra_more 0.3.11 → 0.3.12
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/TODO +1 -1
- data/VERSION +1 -1
- data/generators/base_app/config/boot.rb.tt +1 -1
- data/sinatra_more.gemspec +1 -1
- metadata +1 -1
data/TODO
CHANGED
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
== Generator
|
|
18
18
|
|
|
19
19
|
* Add support for model, routes, migration generator types based on components
|
|
20
|
-
* Add support for bundler (http://github.com/wycats/bundler) to make setting up a generated app easy
|
|
21
20
|
|
|
22
21
|
== MarkupPlugin
|
|
23
22
|
|
|
@@ -32,6 +31,7 @@
|
|
|
32
31
|
|
|
33
32
|
= COMPLETED
|
|
34
33
|
|
|
34
|
+
* Add support for bundler (http://github.com/wycats/bundler) to make setting up a generated app easy
|
|
35
35
|
* Add support for button tag method, mail_to helper
|
|
36
36
|
* Add support for simple fields_for tag helper
|
|
37
37
|
* Add content_for / yield tags similar to rails
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.12
|
|
@@ -32,7 +32,7 @@ class <%= @class_name %> < Sinatra::Application
|
|
|
32
32
|
Bundler.require_env(environment)
|
|
33
33
|
rescue LoadError => e
|
|
34
34
|
puts "Bundler must be run to resolve dependencies!"
|
|
35
|
-
system(
|
|
35
|
+
system("cd #{ROOT_DIR}; gem bundle")
|
|
36
36
|
puts "Retrying with dependencies resolved..."
|
|
37
37
|
retry
|
|
38
38
|
end
|
data/sinatra_more.gemspec
CHANGED