Questions tagged [monologue]

Monologue is a basic mountable blogging engine.

Description

Monologue is a basic mountable blogging engine in Rails built to be easily mounted in an already existing Rails app, but it can also be used alone.

External links

15 questions
4
votes
1 answer

Symfony2 not logging in prod

I am using Symfony 2. I have gone through all of the installation with configuring parameters.yml and running composer install and following the guide on http://symfony.com/doc/current/cookbook/deployment-tools.html I have only a blank page when I…
Piddien
  • 1,436
  • 4
  • 18
  • 38
1
vote
1 answer

Cannot change monologue views in rails

I am using the monologue gem and monologue generated views. I am trying to edit the views but nothing I write in any of the view files actually shows on the browser. Here is the line in my routes file: mount Monologue::Engine, at: '/blog' and…
Philip7899
  • 4,599
  • 4
  • 55
  • 114
1
vote
1 answer

monologue gem with media plugin in tinemce

I am using monologue gem to mount a blog in existing rails application. It is working fine. But i need to embed audio and video content in tineMCE. For that we need to add media plugin as mentioned here. Initailly monologue only having "fullscreen"…
Raji
  • 845
  • 1
  • 14
  • 22
0
votes
1 answer

Using Rails autoload_path, Unable to autoload constant expected incorrect subfolder

I am using the Monologue Gem and Devise Gem. I am using config autoload_paths to load my subdirectories which include some presentation models. Rails 4: organize rails models in sub path without namespacing…
MicFin
  • 2,431
  • 4
  • 32
  • 59
0
votes
1 answer

Overwriting named routes from a mounted engine packaged in a gem

Haven't been able to find any workable solutions to this issue. I'm using the monologue gem to add basic blog functionality to my app, however I'd really like to rename the default '/monologue' route as provided by the gem. The engine's routes…
0
votes
1 answer

How to create a new controller in monologue blog engine in rails

I'm trying to create a description page for blog post authors. I've created a route: mount Monologue::Engine, at: '/blog' #create routes for monologue Monologue::Engine.routes.draw do get 'p/:name', to: 'authors#show', as: :author end And I've…
Philip7899
  • 4,599
  • 4
  • 55
  • 114
0
votes
0 answers

How to add routes with the monologue gem

I am using the monologue gem and trying to create an email list signup form on one of the monologue pages. Here is the code: <%= form_for EmailList.new, url: email_lists_path, remote: true, class: 'form-horizontal' do |f| %> <%= f.text_field…
Philip7899
  • 4,599
  • 4
  • 55
  • 114
0
votes
1 answer

Rails belongs_to has_many relationship, main app and engine

I am using a rails blogging engine called Monologue. I would like one of the engines's models to have a belongs_to and has_many relationship with my main apps model. A user (author) can have many posts, and a post belongs to an author (User…
0
votes
2 answers

Undefined method `year' for nil:NilClass

I'm using monologue engine to creata a blog. I follow the readme file at https://github.com/jipiboily/monologue to config my app and database. When i try to create a new article using monologue interface i get this error: undefined method 'year' for…
Marco Bompani
  • 11
  • 1
  • 7
0
votes
2 answers

Alter views of a mounted engine [Monologue]

I want to alter the views of a mounted engine called Monologue I've found this in the docs: Monologue.layout = "layouts/monologue/application" # set the layout you want to use if you want to use your main_app layout Which adds the…
AME
  • 2,262
  • 6
  • 19
  • 39
0
votes
1 answer

Rails Monologue Filter Tags Button

Hi I am trying to create a button that filters monologue blog posts. I know that you can create links of tags that then filters the blog and just shows blog posts with the following tag. This is my code is HAML: .btn-group - = link_to…
Macgill4444
  • 244
  • 1
  • 12
0
votes
1 answer

How to use where.not with Monologue gem's tagging reference

I'm using the Monologue gem for blogging on my rails 4.0.4 app. I need to find all the posts that don't have a specific tag. The following attempts at trying to do this are not…
NomNomCameron
  • 419
  • 5
  • 14
0
votes
1 answer

How to use Monologue gem in native app (getting posts from Monologue into root app)

I'm using the Monologue gem (rails engine for blogging) and mounting it in my app at /blog, I want to get the posts with a certain tag and display those posts on the home page of my app ('/'). From rails c I can get a tag OR a post by doing…
0
votes
1 answer

Mass assignment error when creating first user for monologue rails blog engine

I am using the monologue blog engine for an existing rails 4 app. I'm following their instructions via their github page and have encountered a mass assignments error when creating the first user in the rails console. I would typically go into the…
Questifer
  • 1,113
  • 3
  • 18
  • 48
0
votes
1 answer

Monologue Blogging Engine Ruby on Rails 4.0

I am attempting to deploy the Monologue blogging engine on Ruby on Rails. I cannot figure out why the output is not HTML formatted. Also, I can save new posts, but cannot save them as published. I have deployed Monologue before, but not on Rails…