social_stream 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. data/.gitignore +3 -0
  2. data/Rakefile +2 -0
  3. data/app/controllers/contacts_controller.rb +28 -0
  4. data/app/controllers/groups_controller.rb +11 -0
  5. data/app/controllers/users_controller.rb +11 -0
  6. data/app/helpers/contacts_helper.rb +2 -0
  7. data/app/models/group.rb +21 -2
  8. data/app/models/profile.rb +26 -0
  9. data/app/views/contacts/index.html.erb +2 -0
  10. data/app/views/groups/_index.html.erb +2 -4
  11. data/app/views/groups/_middle_index.html.erb +74 -0
  12. data/app/views/groups/_new.html.erb +22 -3
  13. data/app/views/groups/_right_index.html.erb +19 -0
  14. data/app/views/groups/_right_show.html.erb +3 -3
  15. data/app/views/groups/index.html.erb +15 -51
  16. data/app/views/groups/index.js.erb +1 -0
  17. data/app/views/home/_options.html.erb +1 -1
  18. data/app/views/layouts/application.html.erb +5 -10
  19. data/app/views/users/_index.html.erb +2 -4
  20. data/app/views/users/_middle_index.html.erb +6 -0
  21. data/app/views/users/_profile.html.erb +60 -10
  22. data/app/views/users/_right_index.html.erb +19 -0
  23. data/app/views/users/edit.html.erb +19 -14
  24. data/app/views/users/index.html.erb +14 -33
  25. data/app/views/users/index.js.erb +1 -0
  26. data/app/views/users/update.js.erb +32 -10
  27. data/config/locales/en.yml +7 -1
  28. data/config/routes.rb +1 -1
  29. data/lib/generators/social_stream/templates/migration.rb +1 -0
  30. data/lib/generators/social_stream/templates/public/images/btn/search.png +0 -0
  31. data/lib/generators/social_stream/templates/public/images/fcbkcomplete/close.gif +0 -0
  32. data/lib/generators/social_stream/templates/public/images/loader.gif +0 -0
  33. data/lib/generators/social_stream/templates/public/javascripts/ajax.paginate.js +53 -0
  34. data/lib/generators/social_stream/templates/public/javascripts/jqcloud-0.1.3.min.js +11 -0
  35. data/lib/generators/social_stream/templates/public/javascripts/jquery.ba-url.js +1091 -0
  36. data/lib/generators/social_stream/templates/public/javascripts/jquery.fcbkcomplete.min.js +77 -0
  37. data/lib/generators/social_stream/templates/public/javascripts/jquery.js +640 -344
  38. data/lib/generators/social_stream/templates/public/javascripts/jquery.min.js +16 -0
  39. data/lib/generators/social_stream/templates/public/javascripts/jquery.validate.js +31 -19
  40. data/lib/generators/social_stream/templates/public/javascripts/rails.js +157 -146
  41. data/lib/generators/social_stream/templates/public/stylesheets/edit_user.css +14 -3
  42. data/lib/generators/social_stream/templates/public/stylesheets/fcbkComplete.css +36 -0
  43. data/lib/generators/social_stream/templates/public/stylesheets/jqcloud.css +62 -0
  44. data/lib/generators/social_stream/templates/public/stylesheets/social_stream.css +3 -0
  45. data/lib/generators/social_stream/templates/public/stylesheets/users.css +22 -0
  46. data/lib/social_stream/models/subject.rb +2 -1
  47. data/lib/social_stream/version.rb +1 -1
  48. data/social_stream.gemspec +2 -1
  49. data/spec/controllers/contacts_controller_spec.rb +12 -0
  50. metadata +40 -7
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_stream
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 3
10
- version: 0.3.3
9
+ - 4
10
+ version: 0.3.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - GING - DIT - UPM
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-02-09 00:00:00 +01:00
19
+ date: 2011-02-28 00:00:00 +01:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -75,12 +75,12 @@ dependencies:
75
75
  requirements:
76
76
  - - ~>
77
77
  - !ruby/object:Gem::Version
78
- hash: 21
78
+ hash: 29
79
79
  segments:
80
80
  - 1
81
81
  - 1
82
- - 3
83
- version: 1.1.3
82
+ - 7
83
+ version: 1.1.7
84
84
  type: :runtime
85
85
  version_requirements: *id004
86
86
  - !ruby/object:Gem::Dependency
@@ -289,6 +289,22 @@ dependencies:
289
289
  version: 0.3.6
290
290
  type: :development
291
291
  version_requirements: *id017
292
+ - !ruby/object:Gem::Dependency
293
+ name: ci_reporter
294
+ prerelease: false
295
+ requirement: &id018 !ruby/object:Gem::Requirement
296
+ none: false
297
+ requirements:
298
+ - - ~>
299
+ - !ruby/object:Gem::Version
300
+ hash: 7
301
+ segments:
302
+ - 1
303
+ - 6
304
+ - 4
305
+ version: 1.6.4
306
+ type: :development
307
+ version_requirements: *id018
292
308
  description: Ruby on Rails engine supporting social networking features and activity streams.
293
309
  email:
294
310
  executables: []
@@ -307,6 +323,7 @@ files:
307
323
  - Rakefile
308
324
  - app/controllers/activities_controller.rb
309
325
  - app/controllers/comments_controller.rb
326
+ - app/controllers/contacts_controller.rb
310
327
  - app/controllers/frontpage_controller.rb
311
328
  - app/controllers/groups_controller.rb
312
329
  - app/controllers/home_controller.rb
@@ -317,6 +334,7 @@ files:
317
334
  - app/controllers/ties_controller.rb
318
335
  - app/controllers/users_controller.rb
319
336
  - app/helpers/activities_helper.rb
337
+ - app/helpers/contacts_helper.rb
320
338
  - app/helpers/groups_helper.rb
321
339
  - app/helpers/ties_helper.rb
322
340
  - app/helpers/users_helper.rb
@@ -351,6 +369,7 @@ files:
351
369
  - app/views/comments/_new.html.erb
352
370
  - app/views/comments/create.js.erb
353
371
  - app/views/comments/destroy.js.erb
372
+ - app/views/contacts/index.html.erb
354
373
  - app/views/devise/registrations/new.html.erb
355
374
  - app/views/frontpage/_header.html.erb
356
375
  - app/views/frontpage/_sponsor.html.erb
@@ -366,6 +385,7 @@ files:
366
385
  - app/views/groups/_right_show.html.erb
367
386
  - app/views/groups/_tabs.html.erb
368
387
  - app/views/groups/index.html.erb
388
+ - app/views/groups/index.js.erb
369
389
  - app/views/groups/new.html.erb
370
390
  - app/views/groups/show.html.erb
371
391
  - app/views/home/_groups.html.erb
@@ -418,6 +438,7 @@ files:
418
438
  - app/views/users/_right_show.html.erb
419
439
  - app/views/users/edit.html.erb
420
440
  - app/views/users/index.html.erb
441
+ - app/views/users/index.js.erb
421
442
  - app/views/users/show.html.erb
422
443
  - app/views/users/update.js.erb
423
444
  - bin/social_stream
@@ -497,6 +518,7 @@ files:
497
518
  - lib/generators/social_stream/templates/public/images/btn/pixel.png
498
519
  - lib/generators/social_stream/templates/public/images/btn/point_blue.png
499
520
  - lib/generators/social_stream/templates/public/images/btn/point_gray.png
521
+ - lib/generators/social_stream/templates/public/images/btn/search.png
500
522
  - lib/generators/social_stream/templates/public/images/btn/share.png
501
523
  - lib/generators/social_stream/templates/public/images/btn/subtime.png
502
524
  - lib/generators/social_stream/templates/public/images/btn/tag_cloud.png
@@ -504,6 +526,7 @@ files:
504
526
  - lib/generators/social_stream/templates/public/images/btn/uno.png
505
527
  - lib/generators/social_stream/templates/public/images/btn/viewer.png
506
528
  - lib/generators/social_stream/templates/public/images/favicon.ico
529
+ - lib/generators/social_stream/templates/public/images/fcbkcomplete/close.gif
507
530
  - lib/generators/social_stream/templates/public/images/frontpage/collaborate.gif
508
531
  - lib/generators/social_stream/templates/public/images/frontpage/collaborate.png
509
532
  - lib/generators/social_stream/templates/public/images/frontpage/comments.png
@@ -526,6 +549,7 @@ files:
526
549
  - lib/generators/social_stream/templates/public/images/frontpage/yellow_sq.png
527
550
  - lib/generators/social_stream/templates/public/images/header-logo.png
528
551
  - lib/generators/social_stream/templates/public/images/left.png
552
+ - lib/generators/social_stream/templates/public/images/loader.gif
529
553
  - lib/generators/social_stream/templates/public/images/logo.png
530
554
  - lib/generators/social_stream/templates/public/images/logos/actor/group.png
531
555
  - lib/generators/social_stream/templates/public/images/logos/actor/user.png
@@ -537,12 +561,17 @@ files:
537
561
  - lib/generators/social_stream/templates/public/images/logos/tie/user.png
538
562
  - lib/generators/social_stream/templates/public/images/right.png
539
563
  - lib/generators/social_stream/templates/public/images/title_background.png
564
+ - lib/generators/social_stream/templates/public/javascripts/ajax.paginate.js
540
565
  - lib/generators/social_stream/templates/public/javascripts/hoverIntent.js
566
+ - lib/generators/social_stream/templates/public/javascripts/jqcloud-0.1.3.min.js
541
567
  - lib/generators/social_stream/templates/public/javascripts/jquery-ui-1.8.4.custom.min.js
542
568
  - lib/generators/social_stream/templates/public/javascripts/jquery-ui.min.js
569
+ - lib/generators/social_stream/templates/public/javascripts/jquery.ba-url.js
543
570
  - lib/generators/social_stream/templates/public/javascripts/jquery.boxy.js
571
+ - lib/generators/social_stream/templates/public/javascripts/jquery.fcbkcomplete.min.js
544
572
  - lib/generators/social_stream/templates/public/javascripts/jquery.js
545
573
  - lib/generators/social_stream/templates/public/javascripts/jquery.livequery.js
574
+ - lib/generators/social_stream/templates/public/javascripts/jquery.min.js
546
575
  - lib/generators/social_stream/templates/public/javascripts/jquery.validate.js
547
576
  - lib/generators/social_stream/templates/public/javascripts/menu.js
548
577
  - lib/generators/social_stream/templates/public/javascripts/rails.js
@@ -553,6 +582,7 @@ files:
553
582
  - lib/generators/social_stream/templates/public/stylesheets/browse.css
554
583
  - lib/generators/social_stream/templates/public/stylesheets/carousel.css
555
584
  - lib/generators/social_stream/templates/public/stylesheets/edit_user.css
585
+ - lib/generators/social_stream/templates/public/stylesheets/fcbkComplete.css
556
586
  - lib/generators/social_stream/templates/public/stylesheets/frontpage.css
557
587
  - lib/generators/social_stream/templates/public/stylesheets/header.css
558
588
  - lib/generators/social_stream/templates/public/stylesheets/home.css
@@ -570,6 +600,7 @@ files:
570
600
  - lib/generators/social_stream/templates/public/stylesheets/images/ui-icons_888888_256x240.png
571
601
  - lib/generators/social_stream/templates/public/stylesheets/images/ui-icons_cd0a0a_256x240.png
572
602
  - lib/generators/social_stream/templates/public/stylesheets/index.css
603
+ - lib/generators/social_stream/templates/public/stylesheets/jqcloud.css
573
604
  - lib/generators/social_stream/templates/public/stylesheets/jquery-ui.css
574
605
  - lib/generators/social_stream/templates/public/stylesheets/menu.css
575
606
  - lib/generators/social_stream/templates/public/stylesheets/message.css
@@ -592,6 +623,7 @@ files:
592
623
  - lib/generators/social_stream/templates/public/stylesheets/smoothness/jquery-ui-1.8.4.custom.css
593
624
  - lib/generators/social_stream/templates/public/stylesheets/social_stream.css
594
625
  - lib/generators/social_stream/templates/public/stylesheets/ui.dropdownchecklist.css
626
+ - lib/generators/social_stream/templates/public/stylesheets/users.css
595
627
  - lib/generators/social_stream/templates/relations.yml
596
628
  - lib/paperclip/social_stream.rb
597
629
  - lib/social_stream.rb
@@ -606,6 +638,7 @@ files:
606
638
  - lib/social_stream/version.rb
607
639
  - lib/tasks/db/populate.rake
608
640
  - social_stream.gemspec
641
+ - spec/controllers/contacts_controller_spec.rb
609
642
  - spec/controllers/frontpage_controller_spec.rb
610
643
  - spec/controllers/groups_controller_spec.rb
611
644
  - spec/controllers/home_controller_spec.rb