jasmine 2.5.2 → 2.6.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a345bec91c05543c3a67ee58bd7c88e01094e215
4
- data.tar.gz: 36fdc31e1a296f8cc826808d33396043adc47588
3
+ metadata.gz: a6e4feb31d891edcde8c1fc8f2b376dd2702c36d
4
+ data.tar.gz: 4aaf7e86cd765c88ef134656b6c009244a319f5b
5
5
  SHA512:
6
- metadata.gz: e59c0458d5fc45d9a72f9e70721862d285667043eff6d249fdd645d9dfe732c4f9f0cbdba743a0febc3a8292d3661ab46fac455f78a661e9ac82de06ccd45601
7
- data.tar.gz: 155046c8f8674c0035f51416a5505ea317025f6db80777a69e96bcdd2ed9e59a119d3472f5fe0f1c5e79e3cb4e02a5e5f9a4a85125f4b389eda65301acb80f98
6
+ metadata.gz: 0704ccd63ed7ceea4fcb83271fb3985264a955e88c17297ab211c787c18b937351a9f3f3859c5a22d0cecd3cbe457953d3b3bbac467a82595ccc8500e93d740e
7
+ data.tar.gz: 014f79dc012747bb22e6ff6141dee04f6333f3466d10fba0f76f0ff612f0b05163a6617e4615eeea15b7818c98cc1aafb23f81e01e34e75f98fe5157c52de9da
@@ -3,12 +3,12 @@ language: ruby
3
3
  rvm:
4
4
  - "1.9.3"
5
5
  - "2.0.0"
6
- - "2.3.0"
6
+ - "2.3.1"
7
7
 
8
8
  env:
9
- - "RAILS_VERSION=rails3"
10
- - "RAILS_VERSION=rails4"
11
- - "RAILS_VERSION=pojs"
9
+ - "RAILS_VERSION=rails3"
10
+ - "RAILS_VERSION=rails4"
11
+ - "RAILS_VERSION=pojs"
12
12
 
13
13
  sudo: false
14
14
 
@@ -20,11 +20,11 @@ install:
20
20
  matrix:
21
21
  fast_finish: true
22
22
  include:
23
- - rvm: "2.3.0"
23
+ - rvm: "2.3.1"
24
24
  env:
25
25
  - "PERFORMANCE_SPECS=true"
26
26
  - "RAILS_VERSION=rails5"
27
- - rvm: "2.3.0"
27
+ - rvm: "2.3.1"
28
28
  env: "RAILS_VERSION=rails5"
29
29
  allow_failures:
30
30
  - rvm: "jruby-9.1.5.0"
@@ -18,7 +18,7 @@ Gem::Specification.new do |s|
18
18
  s.version = Jasmine::VERSION
19
19
  s.platform = Gem::Platform::RUBY
20
20
 
21
- s.authors = ["Rajan Agaskar", "Christian Williams", "Davis Frank"]
21
+ s.authors = ["Gregg Van Hove"]
22
22
  s.summary = %q{JavaScript BDD framework}
23
23
  s.description = %q{Test your JavaScript without any framework dependencies, in any environment, and with a nice descriptive syntax.}
24
24
  s.email = %q{jasmine-js@googlegroups.com}
@@ -51,7 +51,7 @@ Gem::Specification.new do |s|
51
51
  s.add_development_dependency 'nokogiri'
52
52
  end
53
53
 
54
- s.add_dependency 'jasmine-core', '>= 2.5.1', '< 3.0.0'
54
+ s.add_dependency 'jasmine-core', '>= 2.6.0', '< 3.0.0'
55
55
  s.add_dependency 'rack', '>= 1.2.1'
56
56
  s.add_dependency 'rake'
57
57
  s.add_dependency 'phantomjs'
@@ -58,14 +58,14 @@ module Jasmine
58
58
  })
59
59
  # In order to have asset helpers like asset_path and image_path, we need to require 'action_view/base'. This
60
60
  # triggers run_load_hooks on action_view which, in turn, causes sprockets/railtie to load the Sprockets asset
61
- # helpers. Alternatively, you can include the helpers yourself without loading action_view/base:
61
+ # helpers and set some configuration options.
62
62
  Rails.application.assets.context_class.instance_eval do
63
63
  if Jasmine::Dependencies.rails3?
64
64
  include ::Sprockets::Helpers::IsolatedHelper
65
65
  include ::Sprockets::Helpers::RailsHelper
66
66
  end
67
67
  if Jasmine::Dependencies.rails4?
68
- include ::Sprockets::Rails::Helper
68
+ require 'action_view/base'
69
69
  Rails.application.assets.context_class.assets_prefix = Rails.application.config.assets.prefix
70
70
  end
71
71
  end
@@ -1,3 +1,3 @@
1
1
  module Jasmine
2
- VERSION = "2.5.2"
2
+ VERSION = "2.6.0"
3
3
  end
@@ -0,0 +1,17 @@
1
+ # Jasmine Gem 2.6.0 Release Notes
2
+
3
+ ## Summary
4
+
5
+ This release updated the jasmine-core dependency to 2.6.0. See the
6
+ [jasmine-core release notes](https://github.com/jasmine/jasmine/blob/master/release_notes/2.6.0.md)
7
+ for more information
8
+
9
+ ## Changes
10
+
11
+ * Require action_view/base to trigger hook in sprockets-rails.
12
+ - Merges [#283](https://github.com/jasmine/jasmine-gem/issues/283) from @peret
13
+ - Fixes [#275](https://github.com/jasmine/jasmine-gem/issues/275)
14
+
15
+ ------
16
+
17
+ _Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jasmine
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.2
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
- - Rajan Agaskar
8
- - Christian Williams
9
- - Davis Frank
7
+ - Gregg Van Hove
10
8
  autorequire:
11
9
  bindir: bin
12
10
  cert_chain: []
13
- date: 2017-02-14 00:00:00.000000000 Z
11
+ date: 2017-04-24 00:00:00.000000000 Z
14
12
  dependencies:
15
13
  - !ruby/object:Gem::Dependency
16
14
  name: rails
@@ -88,7 +86,7 @@ dependencies:
88
86
  requirements:
89
87
  - - ">="
90
88
  - !ruby/object:Gem::Version
91
- version: 2.5.1
89
+ version: 2.6.0
92
90
  - - "<"
93
91
  - !ruby/object:Gem::Version
94
92
  version: 3.0.0
@@ -98,7 +96,7 @@ dependencies:
98
96
  requirements:
99
97
  - - ">="
100
98
  - !ruby/object:Gem::Version
101
- version: 2.5.1
99
+ version: 2.6.0
102
100
  - - "<"
103
101
  - !ruby/object:Gem::Version
104
102
  version: 3.0.0
@@ -220,6 +218,7 @@ files:
220
218
  - release_notes/v2.5.0.md
221
219
  - release_notes/v2.5.1.md
222
220
  - release_notes/v2.5.2.md
221
+ - release_notes/v2.6.0.md
223
222
  - spec/application_integration_spec.rb
224
223
  - spec/application_spec.rb
225
224
  - spec/base_spec.rb