novector 0.2.0
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +52 -0
- data/Rakefile +34 -0
- data/app/assets/javascripts/novector/application.js.coffee +0 -0
- data/app/assets/stylesheets/novector/application.css +13 -0
- data/app/controllers/novector/application_controller.rb +27 -0
- data/app/controllers/novector/vector_fallback_controller.rb +79 -0
- data/app/helpers/novector/application_helper.rb +27 -0
- data/app/views/layouts/novector/application.html.erb +14 -0
- data/config/routes.rb +26 -0
- data/lib/novector/engine.rb +28 -0
- data/lib/novector/railtie.rb +32 -0
- data/lib/novector/vector_tag_helper.rb +32 -0
- data/lib/novector/version.rb +26 -0
- data/lib/novector.rb +29 -0
- data/lib/tasks/novector_tasks.rake +0 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/images/test.svg +18 -0
- data/test/dummy/app/assets/javascripts/application.js.coffee +25 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +28 -0
- data/test/dummy/app/controllers/novector_js_test_controller.rb +27 -0
- data/test/dummy/app/helpers/application_helper.rb +25 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/novector_js_test/test_fallback.html.erb +1 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +46 -0
- data/test/dummy/config/boot.rb +28 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +28 -0
- data/test/dummy/config/environments/development.rb +52 -0
- data/test/dummy/config/environments/production.rb +103 -0
- data/test/dummy/config/environments/test.rb +59 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +22 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +24 -0
- data/test/dummy/config/initializers/inflections.rb +22 -0
- data/test/dummy/config/initializers/mime_types.rb +22 -0
- data/test/dummy/config/initializers/secret_token.rb +24 -0
- data/test/dummy/config/initializers/session_store.rb +25 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +26 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +28 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +4390 -0
- data/test/dummy/log/test.log +28 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/index.html +5 -0
- data/test/dummy/tmp/cache/8B3/9F1/%23%7Bsource%7D_%23%7Basset_mtime%7D_%23%7Bwidth%7D_%23%7Bheight%7D_%23%7Bformat%7D +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d3881005b0646df783d5c24683d34f5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1a6846f0a837ae2524e2f9ec89e6ef43 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3e0125f4f13be82bc5a02281674477ed +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4f718aff2230953fe8be999580618732 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/86e145a39f85cceeaffdff91ebb61449 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b63b013eb2c61daded11152bb299bc21 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c97695b571e457e7a757b449f8a1e4db +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dca8a548218e0f8da42d69a1e8564bf4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/de6a4845f72245338bbbcd74eb42dbc5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eff8385ae06988716d71bc33ba55546a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f1460ae88a741d099a1375a9ffd77e1d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c97695b571e457e7a757b449f8a1e4db +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/dca8a548218e0f8da42d69a1e8564bf4 +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/novector_test.rb +35 -0
- data/test/test_helper.rb +38 -0
- data/vendor/assets/javascripts/novector.js.coffee +33 -0
- metadata +279 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
2
|
+
-----------------------------------------
|
|
3
|
+
VectorFallbackControllerTest: test_render
|
|
4
|
+
-----------------------------------------
|
|
5
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
6
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
7
|
+
-----------------------------------------
|
|
8
|
+
VectorFallbackControllerTest: test_render
|
|
9
|
+
-----------------------------------------
|
|
10
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
11
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
12
|
+
-----------------------------------------
|
|
13
|
+
VectorFallbackControllerTest: test_render
|
|
14
|
+
-----------------------------------------
|
|
15
|
+
Processing by Novector::VectorFallbackController#render_fallback as PNG
|
|
16
|
+
Parameters: {"src"=>"test.svg", "width"=>"1024", "height"=>"1024"}
|
|
17
|
+
Completed 500 Internal Server Error in 3ms
|
|
18
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
19
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
20
|
+
-----------------------------------------
|
|
21
|
+
VectorFallbackControllerTest: test_render
|
|
22
|
+
-----------------------------------------
|
|
23
|
+
Processing by Novector::VectorFallbackController#render_fallback as PNG
|
|
24
|
+
Parameters: {"src"=>"test.svg", "width"=>"1024", "height"=>"1024"}
|
|
25
|
+
Rendered text template (0.0ms)
|
|
26
|
+
Sent data (30.5ms)
|
|
27
|
+
Completed 200 OK in 388ms (Views: 30.2ms | ActiveRecord: 0.0ms)
|
|
28
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/404.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
|
54
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
|
55
|
+
</div>
|
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
57
|
+
</body>
|
|
58
|
+
</html>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>The change you wanted was rejected (422)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/422.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>The change you wanted was rejected.</h1>
|
|
54
|
+
<p>Maybe you tried to change something you didn't have access to.</p>
|
|
55
|
+
</div>
|
|
56
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
57
|
+
</body>
|
|
58
|
+
</html>
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>We're sorry, but something went wrong (500)</title>
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
background-color: #EFEFEF;
|
|
8
|
+
color: #2E2F30;
|
|
9
|
+
text-align: center;
|
|
10
|
+
font-family: arial, sans-serif;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
div.dialog {
|
|
14
|
+
width: 25em;
|
|
15
|
+
margin: 4em auto 0 auto;
|
|
16
|
+
border: 1px solid #CCC;
|
|
17
|
+
border-right-color: #999;
|
|
18
|
+
border-left-color: #999;
|
|
19
|
+
border-bottom-color: #BBB;
|
|
20
|
+
border-top: #B00100 solid 4px;
|
|
21
|
+
border-top-left-radius: 9px;
|
|
22
|
+
border-top-right-radius: 9px;
|
|
23
|
+
background-color: white;
|
|
24
|
+
padding: 7px 4em 0 4em;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
h1 {
|
|
28
|
+
font-size: 100%;
|
|
29
|
+
color: #730E15;
|
|
30
|
+
line-height: 1.5em;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
body > p {
|
|
34
|
+
width: 33em;
|
|
35
|
+
margin: 0 auto 1em;
|
|
36
|
+
padding: 1em 0;
|
|
37
|
+
background-color: #F7F7F7;
|
|
38
|
+
border: 1px solid #CCC;
|
|
39
|
+
border-right-color: #999;
|
|
40
|
+
border-bottom-color: #999;
|
|
41
|
+
border-bottom-left-radius: 4px;
|
|
42
|
+
border-bottom-right-radius: 4px;
|
|
43
|
+
border-top-color: #DADADA;
|
|
44
|
+
color: #666;
|
|
45
|
+
box-shadow:0 3px 8px rgba(50, 50, 50, 0.17);
|
|
46
|
+
}
|
|
47
|
+
</style>
|
|
48
|
+
</head>
|
|
49
|
+
|
|
50
|
+
<body>
|
|
51
|
+
<!-- This file lives in public/500.html -->
|
|
52
|
+
<div class="dialog">
|
|
53
|
+
<h1>We're sorry, but something went wrong.</h1>
|
|
54
|
+
</div>
|
|
55
|
+
<p>If you are the application owner check the logs for more information.</p>
|
|
56
|
+
</body>
|
|
57
|
+
</html>
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright 2013 (c) John Colanduoni
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#
|
|
23
|
+
|
|
24
|
+
require 'test_helper'
|
|
25
|
+
|
|
26
|
+
class VectorFallbackControllerTest < ActionController::TestCase
|
|
27
|
+
def setup
|
|
28
|
+
@controller = Novector::VectorFallbackController.new
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def test_render
|
|
32
|
+
get :render_fallback, { :src => 'test.svg', :format => 'png', :width => '1024', :height => '1024', :use_route => :novector}
|
|
33
|
+
assert_response :success
|
|
34
|
+
end
|
|
35
|
+
end
|
data/test/test_helper.rb
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright 2013 (c) John Colanduoni
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#
|
|
23
|
+
|
|
24
|
+
# Configure Rails Environment
|
|
25
|
+
ENV["RAILS_ENV"] = "test"
|
|
26
|
+
|
|
27
|
+
require File.expand_path("../dummy/config/environment.rb", __FILE__)
|
|
28
|
+
require "rails/test_help"
|
|
29
|
+
|
|
30
|
+
Rails.backtrace_cleaner.remove_silencers!
|
|
31
|
+
|
|
32
|
+
# Load support files
|
|
33
|
+
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
|
|
34
|
+
|
|
35
|
+
# Load fixtures from the engine
|
|
36
|
+
if ActiveSupport::TestCase.method_defined?(:fixture_path=)
|
|
37
|
+
ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
|
|
38
|
+
end
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
#
|
|
2
|
+
# Copyright 2013 (c) John Colanduoni
|
|
3
|
+
#
|
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
|
5
|
+
# a copy of this software and associated documentation files (the
|
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
|
10
|
+
# the following conditions:
|
|
11
|
+
#
|
|
12
|
+
# The above copyright notice and this permission notice shall be
|
|
13
|
+
# included in all copies or substantial portions of the Software.
|
|
14
|
+
#
|
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
16
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
17
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
#
|
|
23
|
+
|
|
24
|
+
$(document).ready( ->
|
|
25
|
+
if !document.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure", "1.1")
|
|
26
|
+
$("img[src$='.svg']").load( ->
|
|
27
|
+
width = this.width
|
|
28
|
+
height = this.height
|
|
29
|
+
asset_source = $(this).attr("data-novector-source")
|
|
30
|
+
if asset_source != undefined
|
|
31
|
+
$(this).attr("src", "/novector/fallback.png?src="+encodeURIComponent(asset_source)+"&width="+encodeURIComponent(width)+"&height="+encodeURIComponent(height))
|
|
32
|
+
)
|
|
33
|
+
)
|
metadata
ADDED
|
@@ -0,0 +1,279 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: novector
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.2.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- John Colanduoni
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-09-12 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 4.0.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 4.0.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rmagick
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ~>
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 2.13.2
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ~>
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 2.13.2
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jquery-rails
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - '>='
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - '>='
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: coffee-rails
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - '>='
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - '>='
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: sqlite3
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - '>='
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :development
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - '>='
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: jquery-rails
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - '>='
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '0'
|
|
90
|
+
type: :development
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - '>='
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: coffee-rails
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - '>='
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
type: :development
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - '>='
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '0'
|
|
111
|
+
description: NoVector automatically generates fallback bitmaps for vector images (e.g.
|
|
112
|
+
SVG) when a client does not support them.
|
|
113
|
+
email:
|
|
114
|
+
- john.colanduoni@gmail.com
|
|
115
|
+
executables: []
|
|
116
|
+
extensions: []
|
|
117
|
+
extra_rdoc_files: []
|
|
118
|
+
files:
|
|
119
|
+
- app/assets/javascripts/novector/application.js.coffee
|
|
120
|
+
- app/assets/stylesheets/novector/application.css
|
|
121
|
+
- app/controllers/novector/application_controller.rb
|
|
122
|
+
- app/controllers/novector/vector_fallback_controller.rb
|
|
123
|
+
- app/helpers/novector/application_helper.rb
|
|
124
|
+
- app/views/layouts/novector/application.html.erb
|
|
125
|
+
- config/routes.rb
|
|
126
|
+
- lib/novector/engine.rb
|
|
127
|
+
- lib/novector/railtie.rb
|
|
128
|
+
- lib/novector/vector_tag_helper.rb
|
|
129
|
+
- lib/novector/version.rb
|
|
130
|
+
- lib/novector.rb
|
|
131
|
+
- lib/tasks/novector_tasks.rake
|
|
132
|
+
- vendor/assets/javascripts/novector.js.coffee
|
|
133
|
+
- MIT-LICENSE
|
|
134
|
+
- Rakefile
|
|
135
|
+
- README.md
|
|
136
|
+
- test/dummy/app/assets/images/test.svg
|
|
137
|
+
- test/dummy/app/assets/javascripts/application.js.coffee
|
|
138
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
139
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
140
|
+
- test/dummy/app/controllers/novector_js_test_controller.rb
|
|
141
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
142
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
143
|
+
- test/dummy/app/views/novector_js_test/test_fallback.html.erb
|
|
144
|
+
- test/dummy/bin/bundle
|
|
145
|
+
- test/dummy/bin/rails
|
|
146
|
+
- test/dummy/bin/rake
|
|
147
|
+
- test/dummy/config/application.rb
|
|
148
|
+
- test/dummy/config/boot.rb
|
|
149
|
+
- test/dummy/config/database.yml
|
|
150
|
+
- test/dummy/config/environment.rb
|
|
151
|
+
- test/dummy/config/environments/development.rb
|
|
152
|
+
- test/dummy/config/environments/production.rb
|
|
153
|
+
- test/dummy/config/environments/test.rb
|
|
154
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
155
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
156
|
+
- test/dummy/config/initializers/inflections.rb
|
|
157
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
158
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
159
|
+
- test/dummy/config/initializers/session_store.rb
|
|
160
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
161
|
+
- test/dummy/config/locales/en.yml
|
|
162
|
+
- test/dummy/config/routes.rb
|
|
163
|
+
- test/dummy/config.ru
|
|
164
|
+
- test/dummy/db/development.sqlite3
|
|
165
|
+
- test/dummy/db/test.sqlite3
|
|
166
|
+
- test/dummy/log/development.log
|
|
167
|
+
- test/dummy/log/test.log
|
|
168
|
+
- test/dummy/public/404.html
|
|
169
|
+
- test/dummy/public/422.html
|
|
170
|
+
- test/dummy/public/500.html
|
|
171
|
+
- test/dummy/public/favicon.ico
|
|
172
|
+
- test/dummy/public/index.html
|
|
173
|
+
- test/dummy/Rakefile
|
|
174
|
+
- test/dummy/README.rdoc
|
|
175
|
+
- test/dummy/tmp/cache/8B3/9F1/%23%7Bsource%7D_%23%7Basset_mtime%7D_%23%7Bwidth%7D_%23%7Bheight%7D_%23%7Bformat%7D
|
|
176
|
+
- test/dummy/tmp/cache/assets/development/sprockets/0d3881005b0646df783d5c24683d34f5
|
|
177
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
|
178
|
+
- test/dummy/tmp/cache/assets/development/sprockets/1a6846f0a837ae2524e2f9ec89e6ef43
|
|
179
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
|
180
|
+
- test/dummy/tmp/cache/assets/development/sprockets/3e0125f4f13be82bc5a02281674477ed
|
|
181
|
+
- test/dummy/tmp/cache/assets/development/sprockets/4f718aff2230953fe8be999580618732
|
|
182
|
+
- test/dummy/tmp/cache/assets/development/sprockets/86e145a39f85cceeaffdff91ebb61449
|
|
183
|
+
- test/dummy/tmp/cache/assets/development/sprockets/b63b013eb2c61daded11152bb299bc21
|
|
184
|
+
- test/dummy/tmp/cache/assets/development/sprockets/c97695b571e457e7a757b449f8a1e4db
|
|
185
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
|
186
|
+
- test/dummy/tmp/cache/assets/development/sprockets/dca8a548218e0f8da42d69a1e8564bf4
|
|
187
|
+
- test/dummy/tmp/cache/assets/development/sprockets/de6a4845f72245338bbbcd74eb42dbc5
|
|
188
|
+
- test/dummy/tmp/cache/assets/development/sprockets/eff8385ae06988716d71bc33ba55546a
|
|
189
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f1460ae88a741d099a1375a9ffd77e1d
|
|
190
|
+
- test/dummy/tmp/cache/assets/test/sprockets/c97695b571e457e7a757b449f8a1e4db
|
|
191
|
+
- test/dummy/tmp/cache/assets/test/sprockets/dca8a548218e0f8da42d69a1e8564bf4
|
|
192
|
+
- test/integration/navigation_test.rb
|
|
193
|
+
- test/novector_test.rb
|
|
194
|
+
- test/test_helper.rb
|
|
195
|
+
homepage: http://hevylight.com/open/novector
|
|
196
|
+
licenses:
|
|
197
|
+
- MIT
|
|
198
|
+
metadata: {}
|
|
199
|
+
post_install_message:
|
|
200
|
+
rdoc_options: []
|
|
201
|
+
require_paths:
|
|
202
|
+
- lib
|
|
203
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
204
|
+
requirements:
|
|
205
|
+
- - '>='
|
|
206
|
+
- !ruby/object:Gem::Version
|
|
207
|
+
version: '0'
|
|
208
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
209
|
+
requirements:
|
|
210
|
+
- - '>='
|
|
211
|
+
- !ruby/object:Gem::Version
|
|
212
|
+
version: '0'
|
|
213
|
+
requirements:
|
|
214
|
+
- librsvg with binaries (librsvg2-bin on Ubuntu), version 2.36.1 or later
|
|
215
|
+
rubyforge_project:
|
|
216
|
+
rubygems_version: 2.0.3
|
|
217
|
+
signing_key:
|
|
218
|
+
specification_version: 4
|
|
219
|
+
summary: Automatic vector image fallback generator
|
|
220
|
+
test_files:
|
|
221
|
+
- test/dummy/app/assets/images/test.svg
|
|
222
|
+
- test/dummy/app/assets/javascripts/application.js.coffee
|
|
223
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
224
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
225
|
+
- test/dummy/app/controllers/novector_js_test_controller.rb
|
|
226
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
227
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
228
|
+
- test/dummy/app/views/novector_js_test/test_fallback.html.erb
|
|
229
|
+
- test/dummy/bin/bundle
|
|
230
|
+
- test/dummy/bin/rails
|
|
231
|
+
- test/dummy/bin/rake
|
|
232
|
+
- test/dummy/config/application.rb
|
|
233
|
+
- test/dummy/config/boot.rb
|
|
234
|
+
- test/dummy/config/database.yml
|
|
235
|
+
- test/dummy/config/environment.rb
|
|
236
|
+
- test/dummy/config/environments/development.rb
|
|
237
|
+
- test/dummy/config/environments/production.rb
|
|
238
|
+
- test/dummy/config/environments/test.rb
|
|
239
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
240
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
241
|
+
- test/dummy/config/initializers/inflections.rb
|
|
242
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
243
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
244
|
+
- test/dummy/config/initializers/session_store.rb
|
|
245
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
246
|
+
- test/dummy/config/locales/en.yml
|
|
247
|
+
- test/dummy/config/routes.rb
|
|
248
|
+
- test/dummy/config.ru
|
|
249
|
+
- test/dummy/db/development.sqlite3
|
|
250
|
+
- test/dummy/db/test.sqlite3
|
|
251
|
+
- test/dummy/log/development.log
|
|
252
|
+
- test/dummy/log/test.log
|
|
253
|
+
- test/dummy/public/404.html
|
|
254
|
+
- test/dummy/public/422.html
|
|
255
|
+
- test/dummy/public/500.html
|
|
256
|
+
- test/dummy/public/favicon.ico
|
|
257
|
+
- test/dummy/public/index.html
|
|
258
|
+
- test/dummy/Rakefile
|
|
259
|
+
- test/dummy/README.rdoc
|
|
260
|
+
- test/dummy/tmp/cache/8B3/9F1/%23%7Bsource%7D_%23%7Basset_mtime%7D_%23%7Bwidth%7D_%23%7Bheight%7D_%23%7Bformat%7D
|
|
261
|
+
- test/dummy/tmp/cache/assets/development/sprockets/0d3881005b0646df783d5c24683d34f5
|
|
262
|
+
- test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705
|
|
263
|
+
- test/dummy/tmp/cache/assets/development/sprockets/1a6846f0a837ae2524e2f9ec89e6ef43
|
|
264
|
+
- test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953
|
|
265
|
+
- test/dummy/tmp/cache/assets/development/sprockets/3e0125f4f13be82bc5a02281674477ed
|
|
266
|
+
- test/dummy/tmp/cache/assets/development/sprockets/4f718aff2230953fe8be999580618732
|
|
267
|
+
- test/dummy/tmp/cache/assets/development/sprockets/86e145a39f85cceeaffdff91ebb61449
|
|
268
|
+
- test/dummy/tmp/cache/assets/development/sprockets/b63b013eb2c61daded11152bb299bc21
|
|
269
|
+
- test/dummy/tmp/cache/assets/development/sprockets/c97695b571e457e7a757b449f8a1e4db
|
|
270
|
+
- test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
|
|
271
|
+
- test/dummy/tmp/cache/assets/development/sprockets/dca8a548218e0f8da42d69a1e8564bf4
|
|
272
|
+
- test/dummy/tmp/cache/assets/development/sprockets/de6a4845f72245338bbbcd74eb42dbc5
|
|
273
|
+
- test/dummy/tmp/cache/assets/development/sprockets/eff8385ae06988716d71bc33ba55546a
|
|
274
|
+
- test/dummy/tmp/cache/assets/development/sprockets/f1460ae88a741d099a1375a9ffd77e1d
|
|
275
|
+
- test/dummy/tmp/cache/assets/test/sprockets/c97695b571e457e7a757b449f8a1e4db
|
|
276
|
+
- test/dummy/tmp/cache/assets/test/sprockets/dca8a548218e0f8da42d69a1e8564bf4
|
|
277
|
+
- test/integration/navigation_test.rb
|
|
278
|
+
- test/novector_test.rb
|
|
279
|
+
- test/test_helper.rb
|