oojs 0.1.1 → 0.2.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 59207dc3b97e19de05fd0edb03ef5aa32f236354
4
+ data.tar.gz: 198702aba987d2c769e7cb557a80d9406f5c02d7
5
+ SHA512:
6
+ metadata.gz: 6e9e31935822142310e727dcbc8e1b851be8a08fc0412bcd55dad6bfc8a91e98612c64b1419136262fe5da8f155284347d184243e123d6492268f4d28132ab89
7
+ data.tar.gz: aadfd5238f8f0ab6e8780a8fee6b5a4ef50c8608c00c34458f9be302adfa3146c7adc8bab5e75fe0540789049f2ce6667e544bb5ee92309b3702ff8597a238cd
@@ -4,6 +4,3 @@
4
4
  [submodule "resources/jquery-bbq"]
5
5
  path = resources/jquery-bbq
6
6
  url = git://github.com/cowboy/jquery-bbq.git
7
- [submodule "resources/jasmine-jquery"]
8
- path = resources/jasmine-jquery
9
- url = git://github.com/velesin/jasmine-jquery.git
data/README.md CHANGED
@@ -5,15 +5,13 @@ code to be run in browsers covered by tests (or specs) in an easy way.
5
5
 
6
6
  It uses:
7
7
 
8
- - [Jasmine](http://pivotal.github.com/jasmine/) for writing specs;
8
+ - [oojspec](https://github.com/rosenfeld/oojspec) for writing specs;
9
9
  - [jQuery](http://jquery.com/), the excelent DOM manipulation library;
10
10
  - [FakeAjaxServer](https://github.com/rosenfeld/fake-ajax-server) for
11
11
  simulating AJAX requests made with jQuery. It uses
12
12
  [Sinon.js](http://sinonjs.org/) for stubbing _jQuery.ajax()_ calls;
13
13
  - [js-modules](https://github.com/rosenfeld/js-modules) for splitting
14
14
  your spec "classes" in multiple files for better maintainance;
15
- - [Jasmine-jQuery](https://github.com/velesin/jasmine-jquery) for
16
- adding some useful matchers to Jasmine;
17
15
  - [jQuery BBQ](https://github.com/cowboy/jquery-bbq/):
18
16
  don't count on that. Currently it is there only to provide $.deparam,
19
17
  for helping testing params processed by plugins, like
@@ -21,7 +19,7 @@ for helping testing params processed by plugins, like
21
19
  it, just don't include it;
22
20
  - The [Rails Asset Pipeline](http://guides.rubyonrails.org/asset_pipeline.html).
23
21
  Yeah, sorry if you don't use Rails, but
24
- [this can still be helpful](https://github.com/rosenfeld/jasmine_assets_enabler/tree/oojs)
22
+ [this can still be helpful](https://github.com/rosenfeld/oojs_assets_enabler)
25
23
  for non-Rails applications.
26
24
 
27
25
  ## Installation
@@ -59,3 +57,7 @@ And navigate to http://localhost:5000/ to see them passing.
59
57
  3. Commit your changes (`git commit -am 'Add some feature'`)
60
58
  4. Push to the branch (`git push origin my-new-feature`)
61
59
  5. Create new Pull Request
60
+
61
+
62
+ [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/rosenfeld/oojs/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
63
+
@@ -7,5 +7,6 @@ require 'sinon-rails'
7
7
  module Oojs
8
8
  class Engine < Rails::Engine
9
9
  config.sandbox_assets.template ||= 'oojspec/runner'
10
+ config.sandbox_assets.iframe_template ||= 'oojspec/iframe'
10
11
  end
11
12
  end
@@ -1,3 +1,3 @@
1
1
  module Oojs
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  end
@@ -17,6 +17,6 @@ Gem::Specification.new do |gem|
17
17
  gem.require_paths = ["lib"]
18
18
  gem.version = Oojs::VERSION
19
19
 
20
- gem.add_dependency 'oojspec'
20
+ gem.add_dependency 'oojspec', '>= 0.1.0'
21
21
  gem.add_dependency 'fake-ajax-server', '>= 0.0.2'
22
22
  end
metadata CHANGED
@@ -1,51 +1,47 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oojs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
5
- prerelease:
4
+ version: 0.2.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Rodrigo Rosenfeld Rosas
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-07-31 00:00:00.000000000 Z
11
+ date: 2014-01-29 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: oojspec
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - '>='
20
18
  - !ruby/object:Gem::Version
21
- version: '0'
19
+ version: 0.1.0
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - '>='
28
25
  - !ruby/object:Gem::Version
29
- version: '0'
26
+ version: 0.1.0
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: fake-ajax-server
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - '>='
36
32
  - !ruby/object:Gem::Version
37
33
  version: 0.0.2
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - '>='
44
39
  - !ruby/object:Gem::Version
45
40
  version: 0.0.2
46
- description: ! "This is a bundle of tools for helping you\n to create well organized
47
- client-side\n code to be run in browsers covered by tests (or specs) in an easy
48
- way."
41
+ description: |-
42
+ This is a bundle of tools for helping you
43
+ to create well organized client-side
44
+ code to be run in browsers covered by tests (or specs) in an easy way.
49
45
  email:
50
46
  - rr.rosas@gmail.com
51
47
  executables: []
@@ -76,32 +72,25 @@ files:
76
72
  - vendor/assets/javascripts/modules.js.coffee
77
73
  homepage: http://github.com/rosenfeld/oojs
78
74
  licenses: []
75
+ metadata: {}
79
76
  post_install_message:
80
77
  rdoc_options: []
81
78
  require_paths:
82
79
  - lib
83
80
  required_ruby_version: !ruby/object:Gem::Requirement
84
- none: false
85
81
  requirements:
86
- - - ! '>='
82
+ - - '>='
87
83
  - !ruby/object:Gem::Version
88
84
  version: '0'
89
- segments:
90
- - 0
91
- hash: -3866576131421689330
92
85
  required_rubygems_version: !ruby/object:Gem::Requirement
93
- none: false
94
86
  requirements:
95
- - - ! '>='
87
+ - - '>='
96
88
  - !ruby/object:Gem::Version
97
89
  version: '0'
98
- segments:
99
- - 0
100
- hash: -3866576131421689330
101
90
  requirements: []
102
91
  rubyforge_project:
103
- rubygems_version: 1.8.24
92
+ rubygems_version: 2.0.14
104
93
  signing_key:
105
- specification_version: 3
94
+ specification_version: 4
106
95
  summary: Object-oriented JavaScript (or CoffeeScript) for Rails
107
96
  test_files: []