fuel 0.3.0 → 0.3.1
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.
- checksums.yaml +4 -4
- data/app/helpers/fuel/application_helper.rb +3 -1
- data/lib/fuel/configuration.rb +2 -1
- data/lib/fuel/version.rb +1 -1
- data/lib/generators/templates/fuel.rb +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b67615cb427e46945de0762ec3ae9735da0f67d1
|
|
4
|
+
data.tar.gz: 9a9cc063605530dc7751ab22caef0843cf6b5da2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7cf3f785993028ecb86a906c635edc6a1745c5881b707a6521539305cdc5d0dfa8552d8637c898a6c01dbb88ee42da0d2d6a9791479bf5742fac1662885cd770
|
|
7
|
+
data.tar.gz: 97d7fb294adbe1458038d6f47513f6c3d1d3a043cffa55630fd69898378869437368a7009e920faf5032ee0bffd85ff5a753bf17200d12068d14277cb52bae0c
|
data/lib/fuel/configuration.rb
CHANGED
|
@@ -2,7 +2,7 @@ module Fuel
|
|
|
2
2
|
class Configuration
|
|
3
3
|
|
|
4
4
|
# What kind of comments do you want to add to your blog ? (:active_record, :disqus or :no)
|
|
5
|
-
attr_accessor :layout, :blog_title, :disqus_name, :twitter, :username, :password
|
|
5
|
+
attr_accessor :layout, :blog_title, :disqus_name, :twitter, :username, :password, :helpers
|
|
6
6
|
|
|
7
7
|
def initialize
|
|
8
8
|
@layout = "application"
|
|
@@ -11,6 +11,7 @@ module Fuel
|
|
|
11
11
|
@twitter = false
|
|
12
12
|
@username = "admin"
|
|
13
13
|
@password = "password"
|
|
14
|
+
@helpers = ["ApplicationHelper"]
|
|
14
15
|
end
|
|
15
16
|
|
|
16
17
|
end
|
data/lib/fuel/version.rb
CHANGED