pinball_wizard 0.0.1.pre → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,25 @@
1
+ allTestFiles = []
2
+ TEST_REGEXP = /(spec|test)\.js$/i
3
+ pathToModule = (path) ->
4
+ path.replace(/^\/base\//, "").replace /\.js$/, ""
5
+
6
+ Object.keys(window.__karma__.files).forEach (file) ->
7
+
8
+ # Normalize paths to RequireJS module names.
9
+ allTestFiles.push pathToModule(file) if TEST_REGEXP.test(file)
10
+ return
11
+
12
+ require.config
13
+ # Karma serves files under /base, which is the basePath from your config file
14
+ baseUrl: '/base'
15
+
16
+ # example of using shim, to load non AMD libraries (such as underscore and jquery)
17
+ paths:
18
+ 'css_tagger': 'dist/css_tagger'
19
+ 'pinball_wizard': 'dist/pinball_wizard'
20
+
21
+ # dynamically load all test files
22
+ deps: allTestFiles
23
+
24
+ # we have to kickoff jasmine, as it is asynchronous
25
+ callback: window.__karma__.start
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pinball_wizard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.pre
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Caleb Wright
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-06-23 00:00:00.000000000 Z
13
+ date: 2015-01-14 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: Build flippable features.
16
16
  email:
@@ -19,9 +19,44 @@ email:
19
19
  executables: []
20
20
  extensions: []
21
21
  extra_rdoc_files: []
22
- files: []
22
+ files:
23
+ - ".gitignore"
24
+ - CHANGELOG.md
25
+ - Gemfile
26
+ - Gemfile.lock
27
+ - LICENSE
28
+ - README.md
29
+ - Rakefile
30
+ - bower.json
31
+ - dist/css_tagger.js
32
+ - dist/css_tagger.min.js
33
+ - dist/pinball_wizard.js
34
+ - gulpfile.js
35
+ - karma.conf.js
36
+ - lib/pinball_wizard.rb
37
+ - lib/pinball_wizard/configuration.rb
38
+ - lib/pinball_wizard/dsl.rb
39
+ - lib/pinball_wizard/feature.rb
40
+ - lib/pinball_wizard/helpers/hash.rb
41
+ - lib/pinball_wizard/null_feature.rb
42
+ - lib/pinball_wizard/railtie.rb
43
+ - lib/pinball_wizard/registry.rb
44
+ - lib/pinball_wizard/version.rb
45
+ - lib/pinball_wizard/view_helpers/rails.rb
46
+ - lib/pinball_wizard/view_helpers/sinatra/slim.rb
47
+ - package.json
48
+ - pinball_wizard.gemspec
49
+ - spec/pinball_wizard/dsl_spec.rb
50
+ - spec/pinball_wizard/feature_spec.rb
51
+ - spec/pinball_wizard/registry_spec.rb
52
+ - src/css_tagger.coffee
53
+ - src/pinball_wizard.coffee
54
+ - test/spec/css_tagger_spec.coffee
55
+ - test/spec/pinball_wizard_spec.coffee
56
+ - test/test-main.coffee
23
57
  homepage: https://github.com/primedia/pinball_wizard
24
- licenses: []
58
+ licenses:
59
+ - MIT
25
60
  metadata: {}
26
61
  post_install_message:
27
62
  rdoc_options: []
@@ -29,19 +64,21 @@ require_paths:
29
64
  - lib
30
65
  required_ruby_version: !ruby/object:Gem::Requirement
31
66
  requirements:
32
- - - ! '>='
67
+ - - ">="
33
68
  - !ruby/object:Gem::Version
34
69
  version: '1.9'
35
70
  required_rubygems_version: !ruby/object:Gem::Requirement
36
71
  requirements:
37
- - - ! '>'
72
+ - - ">="
38
73
  - !ruby/object:Gem::Version
39
- version: 1.3.1
74
+ version: '0'
40
75
  requirements: []
41
76
  rubyforge_project:
42
- rubygems_version: 2.3.0
77
+ rubygems_version: 2.4.2
43
78
  signing_key:
44
79
  specification_version: 4
45
80
  summary: Lib to build flippable features.
46
- test_files: []
47
- has_rdoc:
81
+ test_files:
82
+ - test/spec/css_tagger_spec.coffee
83
+ - test/spec/pinball_wizard_spec.coffee
84
+ - test/test-main.coffee