projekktor-rails 0.0.5 → 0.0.6
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.
- checksums.yaml +6 -14
- data/Changelog.md +3 -0
- data/Rakefile +8 -7
- data/{vendor → app}/assets/projekktor/buffering.gif +0 -0
- data/{vendor → app}/assets/projekktor/jarisplayer.swf +0 -0
- data/{vendor → app}/assets/projekktor/maccaco-load-static.png +0 -0
- data/{vendor → app}/assets/projekktor/maccaco-load.gif +0 -0
- data/{vendor → app}/assets/projekktor/maccaco.png +0 -0
- data/{vendor → app}/assets/projekktor/noise.gif +0 -0
- data/{vendor → app}/assets/projekktor/projekktor.css.erb +0 -0
- data/{vendor → app}/assets/projekktor/projekktor.js +0 -0
- data/{vendor → app}/assets/projekktor/start.png +0 -0
- data/lib/projekktor-rails/version.rb +1 -1
- metadata +16 -15
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
YzdjZDdkYjY0YzZhYTYyYTA0ZjQxNzIyOGRhNmU5M2E5OTA4OGE4NzZlYzY5
|
|
10
|
-
MjMyYmY1ODExNDY2MGU5MGFkYTkyM2RiYzUwYjJmY2I1NTg2ZjJkY2Y0ZTli
|
|
11
|
-
NDViNmJmNjU5N2Y5YzJhN2IxZjBhODdkZDc2OTJmY2RiMDE0Mzk=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
NGI0YzYxYjEzNDc1YzE1YTY1MDQ0NDg1N2VmZDY0ZTZhYWI3ODEzOTNhM2Nm
|
|
14
|
-
NjhkYTg0MWIyNDQ3NGNhOTAyOTEyMDIzZDdhMTc1ZWVlNTA2YWRhNjA2MzBj
|
|
15
|
-
ZjUxN2FmYTgwYzE0ZjY1ZmQyMjgwZGE3MGMwNDIyZmExZTNiZjc=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: a82554d447f5842a7c43b4b4cf0b100b8c559539
|
|
4
|
+
data.tar.gz: d9d0ff9ccd07a7294544349a75067224e681102b
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 3e6e1b30be173a7c1b57a2486ac366085ab5852f019ed3d59e218d7082ce7bd802c9a5772646bb2b9b409cbce7608ec35485bf17db1455bfcf286f96d9935572
|
|
7
|
+
data.tar.gz: 284645cdc5e985a3b6200c8087cec1f59298e55fd4c01b431b1f71722159c7447b1160fcc089bc571b3e3a87e2d59a7d30132047d715366939a91b1d1d6f7e1b
|
data/Changelog.md
CHANGED
data/Rakefile
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
#!/usr/bin/env rake
|
|
2
2
|
require "bundler/gem_tasks"
|
|
3
3
|
|
|
4
|
+
desc 'Update Projekktor from http://www.projekktor.com/'
|
|
4
5
|
task :update_projekktor do
|
|
5
6
|
rm_rf Dir["/tmp/projekktor", "/tmp/projekktor.zip"]
|
|
6
7
|
sh "curl http://www.projekktorxl.com/api/player/download/format/zip/id/projekktor -o /tmp/projekktor.zip"
|
|
7
8
|
sh "unzip /tmp/projekktor.zip -d /tmp/projekktor"
|
|
8
|
-
rm_rf "
|
|
9
|
-
mkdir_p "
|
|
10
|
-
mv Dir["/tmp/projekktor/projekktor*.js"].first, "
|
|
11
|
-
mv "/tmp/projekktor/jarisplayer.swf", "
|
|
12
|
-
mv Dir["/tmp/projekktor/theme/*.{png,gif}"], "
|
|
9
|
+
rm_rf "app/assets"
|
|
10
|
+
mkdir_p "app/assets/projekktor"
|
|
11
|
+
mv Dir["/tmp/projekktor/projekktor*.js"].first, "app/assets/projekktor/projekktor.js"
|
|
12
|
+
mv "/tmp/projekktor/jarisplayer.swf", "app/assets/projekktor/"
|
|
13
|
+
mv Dir["/tmp/projekktor/theme/maccaco/*.{png,gif}"], "app/assets/projekktor/"
|
|
13
14
|
|
|
14
|
-
css_filepath = '/tmp/projekktor/theme/style.css'
|
|
15
|
-
erb_filepath = '
|
|
15
|
+
css_filepath = '/tmp/projekktor/theme/maccaco/projekktor.style.css'
|
|
16
|
+
erb_filepath = 'app/assets/projekktor/projekktor.css.erb'
|
|
16
17
|
puts "Compiling #{css_filepath} -> #{erb_filepath}"
|
|
17
18
|
text = File.read(css_filepath).gsub(/url\("([^"]*)"\)/, 'url(<%= asset_path "\1" %>)')
|
|
18
19
|
File.open(erb_filepath, "w") { |file| file.puts text }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: projekktor-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Infopark AG
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2014-04-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: projekktor-rails provides the video player projekktor via Rails asset
|
|
14
14
|
pipeline.
|
|
@@ -18,25 +18,25 @@ executables: []
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
-
- .gitignore
|
|
21
|
+
- ".gitignore"
|
|
22
22
|
- Changelog.md
|
|
23
23
|
- Gemfile
|
|
24
24
|
- LICENSE
|
|
25
25
|
- README.md
|
|
26
26
|
- Rakefile
|
|
27
|
+
- app/assets/projekktor/buffering.gif
|
|
28
|
+
- app/assets/projekktor/jarisplayer.swf
|
|
29
|
+
- app/assets/projekktor/maccaco-load-static.png
|
|
30
|
+
- app/assets/projekktor/maccaco-load.gif
|
|
31
|
+
- app/assets/projekktor/maccaco.png
|
|
32
|
+
- app/assets/projekktor/noise.gif
|
|
33
|
+
- app/assets/projekktor/projekktor.css.erb
|
|
34
|
+
- app/assets/projekktor/projekktor.js
|
|
35
|
+
- app/assets/projekktor/start.png
|
|
27
36
|
- lib/projekktor-rails.rb
|
|
28
37
|
- lib/projekktor-rails/engine.rb
|
|
29
38
|
- lib/projekktor-rails/version.rb
|
|
30
39
|
- projekktor-rails.gemspec
|
|
31
|
-
- vendor/assets/projekktor/buffering.gif
|
|
32
|
-
- vendor/assets/projekktor/jarisplayer.swf
|
|
33
|
-
- vendor/assets/projekktor/maccaco-load-static.png
|
|
34
|
-
- vendor/assets/projekktor/maccaco-load.gif
|
|
35
|
-
- vendor/assets/projekktor/maccaco.png
|
|
36
|
-
- vendor/assets/projekktor/noise.gif
|
|
37
|
-
- vendor/assets/projekktor/projekktor.css.erb
|
|
38
|
-
- vendor/assets/projekktor/projekktor.js
|
|
39
|
-
- vendor/assets/projekktor/start.png
|
|
40
40
|
homepage: https://github.com/infopark/projekktor-rails
|
|
41
41
|
licenses: []
|
|
42
42
|
metadata: {}
|
|
@@ -46,18 +46,19 @@ require_paths:
|
|
|
46
46
|
- lib
|
|
47
47
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
48
48
|
requirements:
|
|
49
|
-
- -
|
|
49
|
+
- - ">="
|
|
50
50
|
- !ruby/object:Gem::Version
|
|
51
51
|
version: '0'
|
|
52
52
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
53
|
requirements:
|
|
54
|
-
- -
|
|
54
|
+
- - ">="
|
|
55
55
|
- !ruby/object:Gem::Version
|
|
56
56
|
version: '0'
|
|
57
57
|
requirements: []
|
|
58
58
|
rubyforge_project:
|
|
59
|
-
rubygems_version: 2.
|
|
59
|
+
rubygems_version: 2.2.2
|
|
60
60
|
signing_key:
|
|
61
61
|
specification_version: 4
|
|
62
62
|
summary: projekktor-rails
|
|
63
63
|
test_files: []
|
|
64
|
+
has_rdoc:
|