peteshow 0.7.5
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 +15 -0
- data/.gitignore +8 -0
- data/Gemfile +3 -0
- data/Gruntfile.js +96 -0
- data/README.md +28 -0
- data/dist/peteshow.css +1 -0
- data/dist/peteshow.js +1289 -0
- data/dist/peteshow.min.js +7 -0
- data/lib/assets/javascripts/peteshow.js +1289 -0
- data/lib/assets/javascripts/peteshow.min.js +7 -0
- data/lib/assets/stylesheets/peteshow.css +1 -0
- data/lib/peteshow/config.rb +9 -0
- data/lib/peteshow/engine.rb +4 -0
- data/lib/peteshow/helpers.rb +17 -0
- data/lib/peteshow/railtie.rb +18 -0
- data/lib/peteshow.rb +16 -0
- data/license.txt +20 -0
- data/package.json +43 -0
- data/peteshow.gemspec +17 -0
- data/src/css/peteshow.css +147 -0
- data/src/peteshow-core.js +240 -0
- data/src/peteshow-helpers.js +60 -0
- data/src/peteshow.js +29 -0
- data/tests/index.html +58 -0
- data/tests/suite/core.js +49 -0
- data/tests/suite/helpers.js +18 -0
- data/tests/suite/keybindings.js +13 -0
- data/vendor/faker.js +731 -0
- data/vendor/jquery.formatdatetime.js +225 -0
- data/vendor/peteshow.plugin.js +33 -0
- data/vendor/qunit/jquery.js +4 -0
- data/vendor/qunit/qunit.css +237 -0
- data/vendor/qunit/qunit.js +2288 -0
- metadata +74 -0
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: peteshow
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.7.5
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Pete Brousalis
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-07-08 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Javascript plugin for filling out forms with fake data for testing purposes
|
14
|
+
email: brousapg@gmail.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- .gitignore
|
20
|
+
- Gemfile
|
21
|
+
- Gruntfile.js
|
22
|
+
- README.md
|
23
|
+
- dist/peteshow.css
|
24
|
+
- dist/peteshow.js
|
25
|
+
- dist/peteshow.min.js
|
26
|
+
- lib/assets/javascripts/peteshow.js
|
27
|
+
- lib/assets/javascripts/peteshow.min.js
|
28
|
+
- lib/assets/stylesheets/peteshow.css
|
29
|
+
- lib/peteshow.rb
|
30
|
+
- lib/peteshow/config.rb
|
31
|
+
- lib/peteshow/engine.rb
|
32
|
+
- lib/peteshow/helpers.rb
|
33
|
+
- lib/peteshow/railtie.rb
|
34
|
+
- license.txt
|
35
|
+
- package.json
|
36
|
+
- peteshow.gemspec
|
37
|
+
- src/css/peteshow.css
|
38
|
+
- src/peteshow-core.js
|
39
|
+
- src/peteshow-helpers.js
|
40
|
+
- src/peteshow.js
|
41
|
+
- tests/index.html
|
42
|
+
- tests/suite/core.js
|
43
|
+
- tests/suite/helpers.js
|
44
|
+
- tests/suite/keybindings.js
|
45
|
+
- vendor/faker.js
|
46
|
+
- vendor/jquery.formatdatetime.js
|
47
|
+
- vendor/peteshow.plugin.js
|
48
|
+
- vendor/qunit/jquery.js
|
49
|
+
- vendor/qunit/qunit.css
|
50
|
+
- vendor/qunit/qunit.js
|
51
|
+
homepage: http://github.com/brousalis/peteshow
|
52
|
+
licenses: []
|
53
|
+
metadata: {}
|
54
|
+
post_install_message:
|
55
|
+
rdoc_options: []
|
56
|
+
require_paths:
|
57
|
+
- lib
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ! '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
|
+
requirements:
|
65
|
+
- - ! '>='
|
66
|
+
- !ruby/object:Gem::Version
|
67
|
+
version: '0'
|
68
|
+
requirements: []
|
69
|
+
rubyforge_project:
|
70
|
+
rubygems_version: 2.2.2
|
71
|
+
signing_key:
|
72
|
+
specification_version: 4
|
73
|
+
summary: Javascript plugin for filling out forms with fake data
|
74
|
+
test_files: []
|