jpeg_camera 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 64570f77a25c5034e335b4e59440007d56ceb361
4
- data.tar.gz: 793cce21b60946b0f6b9e7d56d180ef900de62f1
3
+ metadata.gz: 05bc1164940b3d79859cd0c4654a3bfad8c5605b
4
+ data.tar.gz: 9261c1d24e3243fc9b91f51ea071c2778236c646
5
5
  SHA512:
6
- metadata.gz: 6b0d9f6c6d15429d8c0dae0faf16d9850912f658cd26ffe6dfd54a4f927afc8821aaf0f33e6f628fee0851c7f93ef0f3e7da4ec33413efc7f371d5637bda69ff
7
- data.tar.gz: 955210d1bd55c3697eb8801e2e2b131ba068e8acb7b732e380117c312ddc31006a8013ac0bad7cba1a3feaabd912d3d0be0e2a6c6bbe5d0bbbc7588f63db73a5
6
+ metadata.gz: f7597ee77da4f1f48b7b08377257c7687c23ca1ecbb18c6c159cc76a444f2a11c387ccac8bb02696840713c5af910c291149e7e0dd561d96e9fcca89496e1758
7
+ data.tar.gz: e1c30491363130897e80e04ab3a4cb1a9bef23e8a9c6b0f9b798772cfc801533e5d9a2d403241e5615a964c46dae61e1e79623577a3d89440dc72be48c71f009
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  JpegCamera is a JavaScript library that allows you display a camera stream on
4
4
  a web page and then capture, show and upload JPEG snapshots to the server. It
5
5
  uses HTML5 in Chrome, Firefox and Opera and falls back to Flash in less capable
6
- browsers. The video stream is placed without any UI in a container of your
6
+ browsers. The video stream is placed without any UI in a container of your
7
7
  choice and you control it through JavaScript API and your own UI elements.
8
8
 
9
9
  The idea is based on a similar
data/lib/jpeg_camera.rb CHANGED
@@ -1,5 +1,3 @@
1
- require 'jpeg_camera/version'
2
-
3
1
  module JpegCamera
4
2
  class Engine < ::Rails::Engine
5
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jpeg_camera
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Wróbel
@@ -24,14 +24,19 @@ dependencies:
24
24
  - - '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.1'
27
- description: This gem provides assets required to use JpegCamera in your Rails 3 application
27
+ description: |2
28
+ JpegCamera is a JavaScript library that allows you display a camera stream
29
+ on a web page and then capture, show and upload JPEG snapshots to the
30
+ server. It uses HTML5 in Chrome, Firefox and Opera and falls back to Flash
31
+ in less capable browsers. The video stream is placed without any UI in a
32
+ container of your choice and you control it through JavaScript API and your
33
+ own UI elements.
28
34
  email:
29
35
  - adam@adamwrobel.com
30
36
  executables: []
31
37
  extensions: []
32
38
  extra_rdoc_files: []
33
39
  files:
34
- - lib/jpeg_camera/version.rb
35
40
  - lib/jpeg_camera.rb
36
41
  - vendor/assets/audios/jpeg_camera/shutter.mp3
37
42
  - vendor/assets/images/jpeg_camera/jpeg_camera.swf
@@ -1,8 +0,0 @@
1
- require "json"
2
-
3
- module JpegCamera
4
- package_file = File.expand_path '../../../package.json', __FILE__
5
- package_info = JSON.parse File.read(package_file)
6
- VERSION = package_info["version"]
7
- HOMEPAGE = package_info["homepage"]
8
- end