fuel 0.3.26 → 0.3.27

Sign up to get free protection for your applications and to get access to all the features.
@@ -17,5 +17,8 @@
17
17
  </main>
18
18
  <%= javascript_include_tag "fuel/application" %>
19
19
  <%= javascript_include_tag "application" %>
20
+
21
+ <%= render 'fuel/admin/posts/editor' %>
22
+
20
23
  </body>
21
24
  </html>
data/lib/fuel.rb CHANGED
@@ -11,12 +11,21 @@ require "paperclip"
11
11
  require "bourbon"
12
12
  require "neat"
13
13
  require "pickadate-rails"
14
- require "wysiwyg-rails"
14
+ require "aws-sdk"
15
+ require "jquery-fileupload-rails"
16
+ require "fuel/aws"
15
17
 
16
18
  module Fuel
17
19
 
18
20
  def self.configure(&block)
19
21
  block.call(configuration)
22
+ configure_aws
23
+ Rails.application.config.assets.precompile += %w( fuel/wysihtml.css )
24
+ end
25
+
26
+ def self.configure_aws
27
+ AWS.config( access_key_id: configuration.aws_access_key,
28
+ secret_access_key: configuration.aws_secret_access_key )
20
29
  end
21
30
 
22
31
  def self.configuration
data/lib/fuel/aws.rb ADDED
File without changes
@@ -3,7 +3,7 @@ module Fuel
3
3
 
4
4
  # What kind of comments do you want to add to your blog ? (:active_record, :disqus or :no)
5
5
  attr_accessor :layout, :blog_title, :disqus_name, :twitter, :username, :password, :helpers, :paginates_per,
6
- :featured_image_settings, :avatar_settings, :facebook_app_id, :site_name, :blog_description, :tags, :logo
6
+ :featured_image_settings, :avatar_settings, :facebook_app_id, :site_name, :blog_description, :tags, :logo, :aws_bucket, :aws_access_key, :aws_secret_access_key, :paperclip_defaults
7
7
 
8
8
  def initialize
9
9
  @layout = "application"
@@ -29,7 +29,11 @@ module Fuel
29
29
  @site_name = nil
30
30
  @tags = ["Customize", "These", "Options", "In", "config/initializers/fuel.rb"]
31
31
  @logo = "fuel/logo.svg"
32
+ @aws_bucket = nil
33
+ @aws_access_key = nil
34
+ @aws_secret_access_key = nil
32
35
  end
33
36
 
37
+
34
38
  end
35
39
  end
data/lib/fuel/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Fuel
2
- VERSION = "0.3.26"
2
+ VERSION = "0.3.27"
3
3
  end
@@ -54,4 +54,9 @@ Fuel.configure do |config|
54
54
  # Add Twitter
55
55
  #config.twitter = true
56
56
 
57
+ # AWS S3 SETTINGS
58
+ config.aws_bucket = ENV['AWS_BUCKET']
59
+ config.aws_access_key = ENV["AWS_ACCESS_KEY"]
60
+ config.aws_secret_access_key = ENV["AWS_SECRET_ACCESS_KEY"]
61
+
57
62
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fuel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.26
4
+ version: 0.3.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Francis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-06-17 00:00:00.000000000 Z
11
+ date: 2015-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -179,7 +179,7 @@ dependencies:
179
179
  - !ruby/object:Gem::Version
180
180
  version: '0'
181
181
  - !ruby/object:Gem::Dependency
182
- name: wysiwyg-rails
182
+ name: jquery-fileupload-rails
183
183
  requirement: !ruby/object:Gem::Requirement
184
184
  requirements:
185
185
  - - ">="
@@ -307,12 +307,13 @@ files:
307
307
  - app/assets/images/fuel/icons/navigation-icons.svg
308
308
  - app/assets/images/fuel/logo.svg
309
309
  - app/assets/javascripts/fuel/admin.js.erb
310
+ - app/assets/javascripts/fuel/advanced_and_extended.js
310
311
  - app/assets/javascripts/fuel/application.js
311
312
  - app/assets/javascripts/fuel/datepicker.js
312
313
  - app/assets/javascripts/fuel/facebook.js
313
314
  - app/assets/javascripts/fuel/posts.js.erb
314
- - app/assets/javascripts/fuel/rich-text.js
315
315
  - app/assets/javascripts/fuel/sliding-panel.js
316
+ - app/assets/javascripts/fuel/wysihtml5x-toolbar.min.js
316
317
  - app/assets/stylesheets/fuel/_page-layout.scss
317
318
  - app/assets/stylesheets/fuel/_post-editor.scss
318
319
  - app/assets/stylesheets/fuel/_post-list.scss
@@ -326,6 +327,7 @@ files:
326
327
  - app/assets/stylesheets/fuel/components/_buttons.scss
327
328
  - app/assets/stylesheets/fuel/components/_card.scss
328
329
  - app/assets/stylesheets/fuel/components/_components.scss
330
+ - app/assets/stylesheets/fuel/components/_editor.scss
329
331
  - app/assets/stylesheets/fuel/components/_forms.scss
330
332
  - app/assets/stylesheets/fuel/components/_navbar.scss
331
333
  - app/assets/stylesheets/fuel/components/_navigation-icons.scss
@@ -341,6 +343,7 @@ files:
341
343
  - app/assets/stylesheets/fuel/settings/variables/_buttons.scss
342
344
  - app/assets/stylesheets/fuel/settings/variables/_colors.scss
343
345
  - app/assets/stylesheets/fuel/settings/variables/_typography.scss
346
+ - app/assets/stylesheets/fuel/wysihtml.css
344
347
  - app/controllers/fuel/admin/admin_controller.rb
345
348
  - app/controllers/fuel/admin/authors_controller.rb
346
349
  - app/controllers/fuel/admin/posts_controller.rb
@@ -358,6 +361,7 @@ files:
358
361
  - app/views/fuel/admin/authors/index.html.erb
359
362
  - app/views/fuel/admin/authors/new.html.erb
360
363
  - app/views/fuel/admin/posts/_content.html.erb
364
+ - app/views/fuel/admin/posts/_editor.html.erb
361
365
  - app/views/fuel/admin/posts/_form.html.erb
362
366
  - app/views/fuel/admin/posts/_post_preview.html.erb
363
367
  - app/views/fuel/admin/posts/_posts.html.erb
@@ -389,6 +393,7 @@ files:
389
393
  - lib/blog_importer.rb
390
394
  - lib/example_author.rb
391
395
  - lib/fuel.rb
396
+ - lib/fuel/aws.rb
392
397
  - lib/fuel/configuration.rb
393
398
  - lib/fuel/engine.rb
394
399
  - lib/fuel/version.rb
@@ -1,9 +0,0 @@
1
- $(function() {
2
- $body = $("body");
3
-
4
- if ($("body").hasClass("posts-controller")){
5
- $('#fuel_post_content').editable({
6
- inlineMode: false, theme: 'gray', height: '500'
7
- })
8
- };
9
- });