firehose 1.2.1 → 1.2.2
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/lib/firehose/assets.rb +0 -2
- data/lib/firehose/version.rb +1 -1
- metadata +1 -1
data/lib/firehose/assets.rb
CHANGED
|
@@ -9,7 +9,6 @@ module Firehose
|
|
|
9
9
|
module Sprockets
|
|
10
10
|
# Drop flash and javascript paths to Firehose assets into a sprockets environment.
|
|
11
11
|
def self.configure(env)
|
|
12
|
-
env.append_path Firehose::Assets.path('flash')
|
|
13
12
|
env.append_path Firehose::Assets.path('javascripts')
|
|
14
13
|
env
|
|
15
14
|
end
|
|
@@ -23,7 +22,6 @@ module Firehose
|
|
|
23
22
|
|
|
24
23
|
def self.manifest
|
|
25
24
|
paths = []
|
|
26
|
-
paths << Firehose::Assets.path('/flash/firehose/WebSocketMainInsecure.swf')
|
|
27
25
|
paths << File.basename(Firehose::Assets.path('/javascripts/firehose/firehose.js.coffee'), '.coffee')
|
|
28
26
|
paths
|
|
29
27
|
end
|
data/lib/firehose/version.rb
CHANGED