Questions tagged [social-stream]

A framework for building social network websites

Social Stream is an engine for Ruby on Rails. It provides a robust and flexible framework with social networking features and activity streams for building websites (read more).

17 questions
11
votes
4 answers

Rails 3.2.8 Application.js and Application.css are not working as expcted

When i try to include <%= stylesheet_link_tag "application" %> <%= javascript_include_tag "application" %> The content of the files of the application.css is: /* * This is a manifest file that'll be compiled into application.css, which will…
Baran
  • 1,114
  • 1
  • 10
  • 25
2
votes
2 answers

Unable to rails generate social_stream:install

I want to install social_stream on my new rails project i have installed it on 3.1.0.rc5 Rails but i am not able to get it worked. here are the error messages which i am seeing on the console when i run command gem 'social_stream' I will be…
Baran
  • 1,114
  • 1
  • 10
  • 25
1
vote
5 answers

Rails 3: Social Stream Gem. Where is the code?

I've installed social_stream according to the README ( https://github.com/ging/social_stream ) and it works fine, however, I'd like to have the code in my app/ directory and the code isn't there. The same question arises for Devise and other gems.…
donald
  • 23,587
  • 42
  • 142
  • 223
1
vote
2 answers

How to use social stream in rails 4.0

Hello and had problems trying to use this gem would like to know how to fix it add it to my Gemfile gem "social_stream", "~> 2.2.2" When I run "bundle install" I get this error in response, that I can do? I am a little new. Bundler could not find…
1
vote
2 answers

Subject a reserved word in Rails?

I've built a model called "Subject" in my Rails 3.2 application. I used the scaffold command below. rails g scaffold Subject subject singular:boolean gender:integer subject_masculine subject_feminine subject_neuter language:references…
port5432
  • 5,889
  • 10
  • 60
  • 97
1
vote
3 answers

Community Engine v. Social Stream?

Newb here learning rails... any advice/comparison of community engine v. social stream? I'll be writing a dating site, so especially if either lends themselves to that development I'd appreciate the advice.
user1318135
  • 717
  • 2
  • 12
  • 36
0
votes
2 answers

How social_stream register new user works (using devise gem)?

I'm trying social_stream gem (https://github.com/ging/social_stream). It uses devise gem for user registration. When I register a new user on social_stream, it creates new records in several tables. I checked the code in social stream, the…
Jimmy
  • 51
  • 1
  • 9
0
votes
1 answer

My Rails 3 Bundler gem works locally but not on Heroku for serving certain layout files. Any ideas?

I am playing around with the Social Stream gem, a social networking platform built for Rails 3, which seems to pull some of its view layout files from a gem directory, rather than locally within the app file system. This works fine when I serve the…
0
votes
1 answer

Unable to run rails generate social_stream:install

It gives me following error. What should I do? I'm using rails 4.2.5.1 C:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/bundler-1.11.2/lib/bundler/runtime.rb:80:in `rescue in block (2 levels) in require': There was an error while trying to load…
0
votes
2 answers

How to install Social Stream

I'm trying to integrate the Social Stream gem with my Rails application. However, it returns a list of dependencies that I already have and states that they are needed. How do I get the gems to be recognized within the gemfile when running bundle…
metaco57
  • 155
  • 3
  • 15
0
votes
0 answers

Social_stream gem migration error

I have been trying to install the social_stream engine in rails 4.2.3. I'm following the guide from their home page [(http://social-stream.dit.upm.es/started/#rails)][1] Everything works until I try to migrate. I get the following error undefined…
Shadid
  • 4,133
  • 9
  • 30
  • 53
0
votes
1 answer

ActiveModel::ForbiddenAttributes with Rails engine

I am using a Rails engine (Social Stream), that uses the strong_parameters gem in a rails 3 app. When trying to update I get errors but cannot identify where the problem is. I am using a modal ajax form on an update action, with update_attributes. I…
port5432
  • 5,889
  • 10
  • 60
  • 97
0
votes
1 answer

Conflicting module names when using multiple gems (in my case: social_stream and rails3_acts_as_paranoid)

I am using those two gems: social_stream (rails engine) and rails3_acts_as_paranoid (lib). When I try to see the homepage, I get the following error: NameError in Home#index Showing…
0
votes
2 answers

How to customize social_stream gem?

I have successfully implemented social_stream but I am not able to incorporate its features in my app.I am not able to understand what is on github. Anyone who has implemented Social_Stream, plz help me with that. I want to change the look and feel…
0
votes
1 answer

Could not find gem 'jquery-rails (~> 1.1.6) ruby' in the gems available on this machine

I am trying to implement Social-stream with devise. when I am executing this rails generate social_stream:install. I am getting error Bundler could not find compatible versions for gem "devise": In Gemfile: social_stream (>= 0) ruby depends…
1
2