jasminerice 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +18 -0
- data/Gemfile +11 -0
- data/MIT-LICENSE +20 -0
- data/README.md +70 -0
- data/Rakefile +23 -0
- data/app/assets/images/.gitkeep +0 -0
- data/app/assets/javascripts/application.js +11 -0
- data/app/assets/javascripts/jasminerice.js.coffee +18 -0
- data/app/assets/stylesheets/application.css +7 -0
- data/app/controllers/jasminerice/application_controller.rb +4 -0
- data/app/controllers/jasminerice/spec_controller.rb +7 -0
- data/app/helpers/jasminerice/application_helper.rb +4 -0
- data/app/views/jasminerice/spec/index.html.haml +14 -0
- data/app/views/layouts/jasminerice/application.html.erb +14 -0
- data/config/initializers/jasminerice.rb +1 -0
- data/config/routes.rb +3 -0
- data/jasminerice.gemspec +11 -0
- data/lib/jasminerice/engine.rb +5 -0
- data/lib/jasminerice.rb +4 -0
- data/lib/tasks/jasminerice_tasks.rake +4 -0
- data/script/rails +6 -0
- data/vendor/assets/images/jasmine_favicon.png +0 -0
- data/vendor/assets/javascripts/jasmine-html.js +190 -0
- data/vendor/assets/javascripts/jasmine.js +2471 -0
- data/vendor/assets/stylesheets/jasmine_favicon.png +0 -0
- metadata +80 -0
Binary file
|
metadata
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jasminerice
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.1
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Brad Phelan
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-06-24 00:00:00 +02:00
|
14
|
+
default_executable:
|
15
|
+
dependencies: []
|
16
|
+
|
17
|
+
description: Full support for the Rails 3.1 asset pipeline when bdd'ing your coffeescript or javascript using jasmine
|
18
|
+
email:
|
19
|
+
executables: []
|
20
|
+
|
21
|
+
extensions: []
|
22
|
+
|
23
|
+
extra_rdoc_files: []
|
24
|
+
|
25
|
+
files:
|
26
|
+
- .gitignore
|
27
|
+
- Gemfile
|
28
|
+
- MIT-LICENSE
|
29
|
+
- README.md
|
30
|
+
- Rakefile
|
31
|
+
- app/assets/images/.gitkeep
|
32
|
+
- app/assets/javascripts/application.js
|
33
|
+
- app/assets/javascripts/jasminerice.js.coffee
|
34
|
+
- app/assets/stylesheets/application.css
|
35
|
+
- app/controllers/jasminerice/application_controller.rb
|
36
|
+
- app/controllers/jasminerice/spec_controller.rb
|
37
|
+
- app/helpers/jasminerice/application_helper.rb
|
38
|
+
- app/views/jasminerice/spec/index.html.haml
|
39
|
+
- app/views/layouts/jasminerice/application.html.erb
|
40
|
+
- config/initializers/jasminerice.rb
|
41
|
+
- config/routes.rb
|
42
|
+
- jasminerice.gemspec
|
43
|
+
- lib/jasminerice.rb
|
44
|
+
- lib/jasminerice/engine.rb
|
45
|
+
- lib/tasks/jasminerice_tasks.rake
|
46
|
+
- script/rails
|
47
|
+
- vendor/assets/images/jasmine_favicon.png
|
48
|
+
- vendor/assets/javascripts/jasmine-html.js
|
49
|
+
- vendor/assets/javascripts/jasmine.js
|
50
|
+
- vendor/assets/stylesheets/jasmine_favicon.png
|
51
|
+
has_rdoc: true
|
52
|
+
homepage:
|
53
|
+
licenses: []
|
54
|
+
|
55
|
+
post_install_message:
|
56
|
+
rdoc_options: []
|
57
|
+
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
66
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
|
+
none: false
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: "0"
|
72
|
+
requirements: []
|
73
|
+
|
74
|
+
rubyforge_project:
|
75
|
+
rubygems_version: 1.6.2
|
76
|
+
signing_key:
|
77
|
+
specification_version: 3
|
78
|
+
summary: Pain free coffeescript unit testing for Rails 3.1 using jasmine
|
79
|
+
test_files: []
|
80
|
+
|