activity_stream_client 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
|
|
1
|
+
if(defined?(Rails))
|
2
|
+
module ActivityStream
|
3
|
+
|
4
|
+
unless defined? HYDRA
|
5
|
+
HYDRA = Typhoeus::Hydra.new
|
6
|
+
end
|
7
|
+
|
8
|
+
HOST = case Rails.env
|
9
|
+
when "production"
|
10
|
+
"padma-activity-stream.heroku.com"
|
11
|
+
when "development"
|
12
|
+
"localhost:3003"
|
13
|
+
when "test"
|
14
|
+
"localhost:3003"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activity_stream_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -54,6 +54,7 @@ files:
|
|
54
54
|
- app/models/activity_stream/merge.rb
|
55
55
|
- lib/activity_stream/railties.rb
|
56
56
|
- lib/activity_stream_client.rb
|
57
|
+
- config/initializers/activity_stream_client.rb
|
57
58
|
homepage: ''
|
58
59
|
licenses: []
|
59
60
|
post_install_message:
|