muck-services 0.1.33 → 0.1.34
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.
- data/VERSION +1 -1
- data/app/controllers/muck/aggregations_controller.rb +5 -4
- data/app/controllers/muck/topics_controller.rb +16 -17
- data/muck-services.gemspec +2 -2
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.34
|
@@ -18,10 +18,11 @@ class Muck::AggregationsController < ApplicationController
|
|
18
18
|
else
|
19
19
|
@aggregations = Aggregation.newest
|
20
20
|
end
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
21
|
+
render(:template => 'aggregations/index')
|
22
|
+
# respond_to do |format|
|
23
|
+
# format.html { render(:template => 'aggregations/index') }
|
24
|
+
# format.iphone { render(:template => 'aggregations/index') }
|
25
|
+
# end
|
25
26
|
end
|
26
27
|
|
27
28
|
def rss_discovery
|
@@ -1,7 +1,7 @@
|
|
1
1
|
class Muck::TopicsController < ApplicationController
|
2
2
|
unloadable
|
3
3
|
|
4
|
-
before_filter :adjust_format_for_iphone
|
4
|
+
#before_filter :adjust_format_for_iphone
|
5
5
|
before_filter :check_terms, :except => [:new]
|
6
6
|
before_filter :build_tag_feeds, :only => [:show, :rss_discovery]
|
7
7
|
before_filter :configure_feed_loading, :only => [:show, :rss_discovery]
|
@@ -19,7 +19,7 @@ class Muck::TopicsController < ApplicationController
|
|
19
19
|
render :template => 'topics/show'
|
20
20
|
end
|
21
21
|
format.opml { render :template => 'topics/show' }
|
22
|
-
format.iphone { render :template => 'topics/show' }
|
22
|
+
#format.iphone { render :template => 'topics/show' }
|
23
23
|
end
|
24
24
|
end
|
25
25
|
|
@@ -32,12 +32,11 @@ class Muck::TopicsController < ApplicationController
|
|
32
32
|
@page_title = @title = @terms.titleize
|
33
33
|
@photo_feeds = Service.build_photo_feeds(@terms, current_user, params[:service_ids])
|
34
34
|
@number_of_images = 36
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
end
|
35
|
+
render :template => 'topics/photos'
|
36
|
+
# respond_to do |format|
|
37
|
+
# format.html { render :template => 'topics/photos' }
|
38
|
+
# format.iphone { render :template => 'topics/photos' }
|
39
|
+
# end
|
41
40
|
end
|
42
41
|
|
43
42
|
def videos
|
@@ -45,20 +44,20 @@ class Muck::TopicsController < ApplicationController
|
|
45
44
|
@page_title = @title = @terms.titleize
|
46
45
|
@videos_feeds = Service.build_video_feeds(@terms, current_user, params[:service_ids])
|
47
46
|
@number_of_videos = 36
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
end
|
47
|
+
render :template => 'topics/videos'
|
48
|
+
# respond_to do |format|
|
49
|
+
# format.html { render :template => 'topics/videos' }
|
50
|
+
# format.iphone { render :template => 'topics/videos' }
|
51
|
+
# end
|
54
52
|
end
|
55
53
|
|
56
54
|
def new
|
57
55
|
@page_title = I18n.t('muck.services.new_topic_title')
|
58
56
|
@service_categories = ServiceCategory.sorted.find(:all, :include => [:tag_services])
|
59
|
-
|
60
|
-
|
61
|
-
|
57
|
+
render :template => 'topics/new'
|
58
|
+
# respond_to do |format|
|
59
|
+
# format.html { render :template => 'topics/new' }
|
60
|
+
# end
|
62
61
|
end
|
63
62
|
|
64
63
|
def create
|
data/muck-services.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{muck-services}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.34"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Joel Duffin", "Justin Ball"]
|
12
|
-
s.date = %q{2010-01-
|
12
|
+
s.date = %q{2010-01-25}
|
13
13
|
s.description = %q{This gem contains the rails specific code for dealing with feeds, aggregations and recommendations. It is meant to work with the muck-raker gem.}
|
14
14
|
s.email = %q{justin@tatemae.com}
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-services
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.34
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joel Duffin
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2010-01-
|
13
|
+
date: 2010-01-25 00:00:00 -07:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|