stunt 0.0.1.pre

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.
Files changed (2) hide show
  1. data/lib/stunt.rb +10 -0
  2. metadata +47 -0
@@ -0,0 +1,10 @@
1
+ #% cat lib/stunt.rb
2
+ module Stunt
3
+ module JavaScript
4
+ def self.map!(*classes)
5
+ classes.flatten.each do |klass|
6
+ puts "Not yet implemented. Will map #{klass} to enable Ruby-style addressing of corresponding JavaScript class."
7
+ end
8
+ end
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: stunt
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Christopher Kula
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-03-30 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Tool to maps Ruby RSpec tests into a native Javascript application in
15
+ order to be able to drive multiple (sequential or parallel) builds using a heavily-overlapping
16
+ test suite.
17
+ email: cjkula@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - lib/stunt.rb
23
+ homepage: http://rubygems.org/gems/stunt
24
+ licenses: []
25
+ post_install_message:
26
+ rdoc_options: []
27
+ require_paths:
28
+ - lib
29
+ required_ruby_version: !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ required_rubygems_version: !ruby/object:Gem::Requirement
36
+ none: false
37
+ requirements:
38
+ - - ! '>'
39
+ - !ruby/object:Gem::Version
40
+ version: 1.3.1
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 1.8.21
44
+ signing_key:
45
+ specification_version: 3
46
+ summary: Drive JavaScript development using existing Ruby specs.
47
+ test_files: []