sidekiq 2.3.2 → 2.3.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq might be problematic. Click here for more details.

data/Changes.md CHANGED
@@ -1,3 +1,9 @@
1
+ 2.3.3
2
+ -----------
3
+
4
+ - Remove option to disable Rails hooks. [#401]
5
+ - Allow delay of any module class method
6
+
1
7
  2.3.2
2
8
  -----------
3
9
 
data/LICENSE CHANGED
@@ -1,22 +1,8 @@
1
1
  Copyright (c) Mike Perham
2
2
 
3
- You may choose to license Sidekiq in one of two ways:
3
+ Sidekiq is an Open Source project licensed under the terms of
4
+ the LGPLv3 license. Please see <http://www.gnu.org/licenses/lgpl-3.0.html>
5
+ for license text.
4
6
 
5
- - Open Source under the LGPLv3
6
-
7
- Please see <http://www.gnu.org/licenses/lgpl-3.0.html> for license text.
8
-
9
- - Commercial License
10
-
11
- The Sencha commercial software license in COMM-LICENSE. You must pledge
12
- $50 to my Pledgie fund at http://www.pledgie.com/campaigns/16623 to use
13
- this license.
14
-
15
- The commercial license is just meant to help support my OSS work. If
16
- you do buy the commercial licensing option, thank you for your support!
17
-
18
- The commercial license is meant to be per-site. Consulting shops must buy
19
- one license per client engagement which uses Sidekiq. For instance,
20
- GitHub could license Sidekiq for $50 for their own internal use but they
21
- must pay $50 per GitHub::FI install because FI is a separate installation
22
- from the GitHub website managed by the FI customer.
7
+ A commercial license is available to those who buy Sidekiq Pro.
8
+ Please see http://sidekiq.org/pro/ for more detail.
data/lib/sidekiq.rb CHANGED
@@ -23,7 +23,6 @@ module Sidekiq
23
23
  :require => '.',
24
24
  :environment => nil,
25
25
  :timeout => 8,
26
- :enable_rails_extensions => true,
27
26
  }
28
27
 
29
28
  def self.options
data/lib/sidekiq/cli.rb CHANGED
@@ -18,7 +18,11 @@ end
18
18
  trap 'TTIN' do
19
19
  Thread.list.each do |thread|
20
20
  Sidekiq.logger.info "Thread TID-#{thread.object_id.to_s(36)} #{thread['label']}"
21
- Sidekiq.logger.info thread.backtrace.join("\n")
21
+ if thread.backtrace
22
+ Sidekiq.logger.info thread.backtrace.join("\n")
23
+ else
24
+ Sidekiq.logger.info "<no backtrace available>"
25
+ end
22
26
  end
23
27
  end
24
28
 
@@ -30,4 +30,4 @@ module Sidekiq
30
30
  end
31
31
  end
32
32
 
33
- Class.send(:include, Sidekiq::Extensions::Klass)
33
+ Module.send(:include, Sidekiq::Extensions::Klass)
data/lib/sidekiq/rails.rb CHANGED
@@ -1,12 +1,11 @@
1
1
  module Sidekiq
2
2
  def self.hook_rails!
3
- return unless Sidekiq.options[:enable_rails_extensions]
4
- if defined?(ActiveRecord)
5
- ActiveRecord::Base.send(:include, Sidekiq::Extensions::ActiveRecord)
3
+ if defined?(::ActiveRecord)
4
+ ::ActiveRecord::Base.send(:include, Sidekiq::Extensions::ActiveRecord)
6
5
  end
7
6
 
8
- if defined?(ActionMailer)
9
- ActionMailer::Base.extend(Sidekiq::Extensions::ActionMailer)
7
+ if defined?(::ActionMailer)
8
+ ::ActionMailer::Base.extend(Sidekiq::Extensions::ActionMailer)
10
9
  end
11
10
  end
12
11
 
@@ -1,3 +1,3 @@
1
1
  module Sidekiq
2
- VERSION = "2.3.2"
2
+ VERSION = "2.3.3"
3
3
  end
@@ -63,28 +63,14 @@ class TestExtensions < MiniTest::Unit::TestCase
63
63
  it 'allows delay of any ole class method' do
64
64
  SomeClass.delay.doit(Date.today)
65
65
  end
66
- end
67
-
68
- describe 'sidekiq rails extensions configuration' do
69
- before do
70
- @options = Sidekiq.options
71
- end
72
-
73
- after do
74
- Sidekiq.options = @options
75
- end
76
-
77
- it 'should set enable_rails_extensions option to true by default' do
78
- assert Sidekiq.options[:enable_rails_extensions]
79
- end
80
66
 
81
- it 'should extend ActiveRecord and ActiveMailer if enable_rails_extensions is true' do
82
- assert Sidekiq.hook_rails!
67
+ module SomeModule
68
+ def self.doit(arg)
69
+ end
83
70
  end
84
71
 
85
- it 'should not extend ActiveRecord and ActiveMailer if enable_rails_extensions is false' do
86
- Sidekiq.options = { :enable_rails_extensions => false }
87
- refute Sidekiq.hook_rails!
72
+ it 'allows delay of any module class method' do
73
+ SomeModule.delay.doit(Date.today)
88
74
  end
89
75
  end
90
76
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.2
4
+ version: 2.3.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-09-20 00:00:00.000000000 Z
12
+ date: 2012-10-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: redis
16
- requirement: !ruby/object:Gem::Requirement
16
+ requirement: &70336704844540 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,15 +21,10 @@ dependencies:
21
21
  version: '3'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ~>
28
- - !ruby/object:Gem::Version
29
- version: '3'
24
+ version_requirements: *70336704844540
30
25
  - !ruby/object:Gem::Dependency
31
26
  name: redis-namespace
32
- requirement: !ruby/object:Gem::Requirement
27
+ requirement: &70336704844000 !ruby/object:Gem::Requirement
33
28
  none: false
34
29
  requirements:
35
30
  - - ! '>='
@@ -37,15 +32,10 @@ dependencies:
37
32
  version: '0'
38
33
  type: :runtime
39
34
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
44
- - !ruby/object:Gem::Version
45
- version: '0'
35
+ version_requirements: *70336704844000
46
36
  - !ruby/object:Gem::Dependency
47
37
  name: connection_pool
48
- requirement: !ruby/object:Gem::Requirement
38
+ requirement: &70336704843460 !ruby/object:Gem::Requirement
49
39
  none: false
50
40
  requirements:
51
41
  - - ~>
@@ -53,15 +43,10 @@ dependencies:
53
43
  version: 0.9.2
54
44
  type: :runtime
55
45
  prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
- requirements:
59
- - - ~>
60
- - !ruby/object:Gem::Version
61
- version: 0.9.2
46
+ version_requirements: *70336704843460
62
47
  - !ruby/object:Gem::Dependency
63
48
  name: celluloid
64
- requirement: !ruby/object:Gem::Requirement
49
+ requirement: &70336704842820 !ruby/object:Gem::Requirement
65
50
  none: false
66
51
  requirements:
67
52
  - - ~>
@@ -69,15 +54,10 @@ dependencies:
69
54
  version: 0.12.0
70
55
  type: :runtime
71
56
  prerelease: false
72
- version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
- requirements:
75
- - - ~>
76
- - !ruby/object:Gem::Version
77
- version: 0.12.0
57
+ version_requirements: *70336704842820
78
58
  - !ruby/object:Gem::Dependency
79
59
  name: multi_json
80
- requirement: !ruby/object:Gem::Requirement
60
+ requirement: &70336704842140 !ruby/object:Gem::Requirement
81
61
  none: false
82
62
  requirements:
83
63
  - - ~>
@@ -85,15 +65,10 @@ dependencies:
85
65
  version: '1'
86
66
  type: :runtime
87
67
  prerelease: false
88
- version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
- requirements:
91
- - - ~>
92
- - !ruby/object:Gem::Version
93
- version: '1'
68
+ version_requirements: *70336704842140
94
69
  - !ruby/object:Gem::Dependency
95
70
  name: minitest
96
- requirement: !ruby/object:Gem::Requirement
71
+ requirement: &70336704841420 !ruby/object:Gem::Requirement
97
72
  none: false
98
73
  requirements:
99
74
  - - ~>
@@ -101,15 +76,10 @@ dependencies:
101
76
  version: '3'
102
77
  type: :development
103
78
  prerelease: false
104
- version_requirements: !ruby/object:Gem::Requirement
105
- none: false
106
- requirements:
107
- - - ~>
108
- - !ruby/object:Gem::Version
109
- version: '3'
79
+ version_requirements: *70336704841420
110
80
  - !ruby/object:Gem::Dependency
111
81
  name: sinatra
112
- requirement: !ruby/object:Gem::Requirement
82
+ requirement: &70336704840840 !ruby/object:Gem::Requirement
113
83
  none: false
114
84
  requirements:
115
85
  - - ! '>='
@@ -117,15 +87,10 @@ dependencies:
117
87
  version: '0'
118
88
  type: :development
119
89
  prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- none: false
122
- requirements:
123
- - - ! '>='
124
- - !ruby/object:Gem::Version
125
- version: '0'
90
+ version_requirements: *70336704840840
126
91
  - !ruby/object:Gem::Dependency
127
92
  name: slim
128
- requirement: !ruby/object:Gem::Requirement
93
+ requirement: &70336704840180 !ruby/object:Gem::Requirement
129
94
  none: false
130
95
  requirements:
131
96
  - - ! '>='
@@ -133,15 +98,10 @@ dependencies:
133
98
  version: '0'
134
99
  type: :development
135
100
  prerelease: false
136
- version_requirements: !ruby/object:Gem::Requirement
137
- none: false
138
- requirements:
139
- - - ! '>='
140
- - !ruby/object:Gem::Version
141
- version: '0'
101
+ version_requirements: *70336704840180
142
102
  - !ruby/object:Gem::Dependency
143
103
  name: rake
144
- requirement: !ruby/object:Gem::Requirement
104
+ requirement: &70336704839540 !ruby/object:Gem::Requirement
145
105
  none: false
146
106
  requirements:
147
107
  - - ! '>='
@@ -149,15 +109,10 @@ dependencies:
149
109
  version: '0'
150
110
  type: :development
151
111
  prerelease: false
152
- version_requirements: !ruby/object:Gem::Requirement
153
- none: false
154
- requirements:
155
- - - ! '>='
156
- - !ruby/object:Gem::Version
157
- version: '0'
112
+ version_requirements: *70336704839540
158
113
  - !ruby/object:Gem::Dependency
159
114
  name: actionmailer
160
- requirement: !ruby/object:Gem::Requirement
115
+ requirement: &70336704855400 !ruby/object:Gem::Requirement
161
116
  none: false
162
117
  requirements:
163
118
  - - ~>
@@ -165,15 +120,10 @@ dependencies:
165
120
  version: '3'
166
121
  type: :development
167
122
  prerelease: false
168
- version_requirements: !ruby/object:Gem::Requirement
169
- none: false
170
- requirements:
171
- - - ~>
172
- - !ruby/object:Gem::Version
173
- version: '3'
123
+ version_requirements: *70336704855400
174
124
  - !ruby/object:Gem::Dependency
175
125
  name: activerecord
176
- requirement: !ruby/object:Gem::Requirement
126
+ requirement: &70336704854900 !ruby/object:Gem::Requirement
177
127
  none: false
178
128
  requirements:
179
129
  - - ~>
@@ -181,15 +131,10 @@ dependencies:
181
131
  version: '3'
182
132
  type: :development
183
133
  prerelease: false
184
- version_requirements: !ruby/object:Gem::Requirement
185
- none: false
186
- requirements:
187
- - - ~>
188
- - !ruby/object:Gem::Version
189
- version: '3'
134
+ version_requirements: *70336704854900
190
135
  - !ruby/object:Gem::Dependency
191
136
  name: pry
192
- requirement: !ruby/object:Gem::Requirement
137
+ requirement: &70336704854520 !ruby/object:Gem::Requirement
193
138
  none: false
194
139
  requirements:
195
140
  - - ! '>='
@@ -197,12 +142,7 @@ dependencies:
197
142
  version: '0'
198
143
  type: :development
199
144
  prerelease: false
200
- version_requirements: !ruby/object:Gem::Requirement
201
- none: false
202
- requirements:
203
- - - ! '>='
204
- - !ruby/object:Gem::Version
205
- version: '0'
145
+ version_requirements: *70336704854520
206
146
  description: Simple, efficient message processing for Ruby
207
147
  email:
208
148
  - mperham@gmail.com
@@ -215,7 +155,6 @@ files:
215
155
  - .gitignore
216
156
  - .rvmrc
217
157
  - .travis.yml
218
- - COMM-LICENSE
219
158
  - Changes.md
220
159
  - Gemfile
221
160
  - LICENSE
@@ -327,7 +266,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
327
266
  version: '0'
328
267
  requirements: []
329
268
  rubyforge_project:
330
- rubygems_version: 1.8.24
269
+ rubygems_version: 1.8.15
331
270
  signing_key:
332
271
  specification_version: 3
333
272
  summary: Simple, efficient message processing for Ruby
data/COMM-LICENSE DELETED
@@ -1,83 +0,0 @@
1
- THIS LICENSE AGREEMENT DESCRIBES YOUR RIGHTS WITH RESPECT TO THE SOFTWARE AND ITS COMPONENTS.
2
-
3
- 1. OWNERSHIP, LICENSE GRANT
4
-
5
- This is a license agreement and not an agreement for sale. We reserve ownership of all intellectual property rights inherent in or relating to the Software, which include, but are not limited to, all copyright, patent rights, all rights in relation to registered and unregistered trademarks (including service marks), confidential information (including trade secrets and know-how) and all rights other than those expressly granted by this License Agreement.
6
-
7
- Subject to the payment of the fee required and subject to the terms and conditions of this License Agreement, We grant to You a revocable, non- transferable and non-exclusive license (i) for Designated User(s) (as defined below) within Your organization to install and use the Software on any workstations used exclusively by such Designated User and (ii) for You to install and use the Software in connection with unlimited domains and sub-domains on unlimited servers, solely in connection with distribution of the Software in accordance with sections 3 and 4 below. This license is not sublicensable except as explicitly set forth herein. “Designated User(s)” shall mean Your employee(s) acting within the scope of their employment or Your consultant(s) or contractor(s) acting within the scope of the services they provide for You or on Your behalf for whom You have purchased a license to use the Software.
8
-
9
- In addition to the other terms contained herein, We grant to You a revocable, non- transferable and non-exclusive license to install and use the Software on a single computer (the “Trial License”) strictly for Your internal evaluation and review purposes and not for production purposes. This Trial License applies only if You have registered with Us for a Trial License of the Software and shall be effective for forty-five (45) consecutive days following the date of registration (“the Trial Period”). You may only register for a Trial License once in any eighteen month period. You agree not to use a Trial License for any purpose other than determining whether to purchase a license to the Software. You are explicitly not permitted to distribute the Software to any user outside the Organization on whose behalf you have undertaken this license. Your rights to use the Trial License will immediately terminate upon the earlier of (i) the expiration of the Trial Period, or (ii) such time that You purchase a license to the Software. We reserve the right to terminate Your Trial License at any time in Our absolute and sole discretion.
10
-
11
- 2. PERMITTED USES, SOURCE CODE, MODIFICATIONS
12
-
13
- We provide You with source code so that You can create Modifications of the original Software, where Modification means: a) any addition to or deletion from the contents of a file included in the original Software or previous Modifications created by You, or b) any new file that contains any part of the original Software or previous Modifications. While You retain all rights to any original work authored by You as part of the Modifications, We continue to own all copyright and other intellectual property rights in the Software.
14
-
15
- 3. DISTRIBUTION
16
-
17
- You may distribute the Software in any applications, frameworks, or elements (collectively referred to as an “Application” or “Applications”) that you develop using the Software in accordance with this License Agreement, provided that such distribution does not violate the restrictions set forth in section 4 of this License Agreement. You must not remove, obscure or interfere with any copyright, acknowledgment, attribution, trademark, warning or disclaimer statement affixed to, incorporated in or otherwise applied in connection with the Software.
18
-
19
- You are required to ensure that the Software is not reused by or with any applications other than those with which You distribute it as permitted herein. For example, if You install the Software on a customer’s server, that customer is not permitted to use the Software independently of Your application, and must be informed as such.
20
-
21
- You will not owe Us any royalties for Your distribution of the Software in accordance with this License Agreement.
22
-
23
- 4. PROHIBITED USES
24
-
25
- You may not, without Our prior written consent, redistribute the Software or Modifications other than by including the Software or a portion thereof within Your own product, which must have substantially different functionality than the Software or Modifications and must not allow any third party to use the Software or Modifications, or any portions thereof, for software development or application development purposes. You are explicitly not allowed to redistribute the Software or Modifications as part of any product that can be described as a development toolkit or library, an application builder, a website builder or any product that is intended for use by software, application, or website developers or designers. You are not allowed to redistribute any part of the Software documentation. You may not change or remove the copyright notice from any of the files included in the Software or Modifications.
26
-
27
- UNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE FOR A PRODUCT THAT IS INTENDED FOR SOFTWARE OR APPLICATION DEVELOPMENT PURPOSES.
28
-
29
- The Open Source version of the Software (“LGPL Version”) is licensed
30
- under the terms of the GNU Lesser General Public License versions 3.0
31
- (“LGPL”) and not under this License Agreement. If You, or another third
32
- party, has, at any time, developed all (or any portions of) the
33
- Application(s) using the LGPL Version, You may not combine such
34
- development work with the Software and must license such Application(s)
35
- (or any portions derived there from) under the terms of the GNU Lesser
36
- General Public License version 3, a copy of which is located at
37
- http://www.gnu.org/copyleft/lgpl.html.
38
-
39
- 5. TERMINATION
40
-
41
- This License Agreement and Your right to use the Software and Modifications will terminate immediately without notice if You fail to comply with the terms and conditions of this License Agreement. Upon termination, You agree to immediately cease using and destroy the Software or Modifications, including all accompanying documents. The provisions of sections 4, 5, 6, 7, 8, 9, 10 and 12 will survive any termination of this License Agreement.
42
-
43
- 6. DISCLAIMER OF WARRANTIES
44
-
45
- TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, WE AND OUR SUPPLIERS DISCLAIM ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT, WITH REGARD TO THE SOFTWARE. WE DO NOT GUARANTEE THAT THE OPERATION OF THE SOFTWARE WILL BE UNINTERRUPTED OR ERROR-FREE, AND YOU ACKNOWLEDGE THAT IT IS NOT TECHNICALLY PRACTICABLE FOR US TO DO SO.
46
-
47
- 7. LIMITATION OF LIABILITIES
48
-
49
- TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL WE OR OUR SUPPLIERS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF BUSINESS PROFITS, BUSINESS INTERRUPTION, LOSS OF BUSINESS INFORMATION OR ANY OTHER PECUNIARY LAW) ARISING OUT OF THE USE OF OR INABILITY TO USE THE SOFTWARE, EVEN IF WE HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. IN ANY CASE, OUR ENTIRE LIABILITY UNDER ANY PROVISION OF THIS LICENSE AGREEMENT SHALL BE LIMITED TO THE AMOUNT ACTUALLY PAID BY YOU FOR THE SOFTWARE.
50
-
51
- 8. VERIFICATION
52
-
53
- We or a certified auditor acting on Our behalf, may, upon its reasonable request and at its expense, audit You with respect to the use of the Software. Such audit may be conducted by mail, electronic means or through an in-person visit to Your place of business. Any such in-person audit shall be conducted during regular business hours at Your facilities and shall not unreasonably interfere with Your business activities. We shall not remove, copy, or redistribute any electronic material during the course of an audit. If an audit reveals that You are using the Software in a way that is in material violation of the terms of the License Agreement, then You shall pay Our reasonable costs of conducting the audit. In the case of a material violation, You agree to pay Us any amounts owing that are attributable to the unauthorized use. In the alternative, We reserve the right, at Our sole option, to terminate the licenses for the Software.
54
-
55
- 9. THIRD PARTY SOFTWARE
56
-
57
- Examples included in Software may provide links to third party libraries or code (collectively “Third Party Software”) to implement various functions. Third Party Software does not comprise part of the Software. In some cases, access to Third Party Software may be included along with the Software delivery as a convenience for demonstration purposes. Such source code and libraries may be included in the “…/examples” source tree delivered with the Software and do not comprise the Software. Licensee acknowledges (1) that some part of Third Party Software may require additional licensing of copyright and patents from the owners of such, and (2) that distribution of any of the Software referencing or including any portion of a Third Party Software may require appropriate licensing from such third parties.
58
-
59
- 10. PAYMENT AND TAXES
60
-
61
- If credit has been extended to You by Us, all payments under this License Agreement are due within thirty (30) days of the date We mail an invoice to You. If We have not extended credit to You, You shall be required to make payment concurrent with the delivery of the Software by Us. All amounts payable are gross amounts but exclusive of any value added tax, use tax, sales tax or similar tax. You shall be entitled to withhold from payments any applicable withholding taxes and comply with all applicable tax and employment legislation. Each party shall pay all taxes (including, but not limited to, taxes based upon its income) or levies imposed on it under applicable laws, regulations and tax treaties as a result of this Agreement and any payments made hereunder (including those required to be withheld or deducted from payments). Each party shall furnish evidence of such paid taxes as is sufficient to enable the other party to obtain any credits available to it, including original withholding tax certificates.
62
-
63
- 11. MISCELLANEOUS
64
-
65
- The license granted herein applies only to the version of the Software available when purchased in connection with the terms of this License Agreement. Any previous or subsequent license granted to You for use of the Software shall be governed by the terms and conditions of the agreement entered in connection with purchase of that version of the Software. You agree that you will comply with all applicable laws and regulations with respect to the Software, including without limitation all export and re-export control laws and regulations.
66
-
67
- While redistributing the Software or Modifications thereof, You may choose to offer acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License Agreement. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on our behalf. You agree to indemnify, defend, and hold Us harmless from and against any liability incurred by, or claims asserted against, Us (i) by reason of Your accepting any such support, warranty, indemnity or additional liability; or (ii) arising out of the use, reproduction or distribution of Your Application, except to the extent such claim is solely based on the inclusion of the Software therein.
68
-
69
- You agree to be identified as a customer of ours and You agree that We may refer to You by name, trade name and trademark, if applicable, and may briefly describe Your business in our marketing materials and web site.
70
-
71
- You may not assign this License Agreement without Our prior written consent, which will not be unreasonably withheld. This License Agreement will inure to the benefit of Our successors and assigns.
72
-
73
- You acknowledge that this License Agreement is complete and is the exclusive representation of our agreement. No oral or written information given by Us or on our behalf shall create a warranty or collateral contract, or in any way increase the scope of this License Agreement in any way, and You may not rely on any such oral or written information. No term or condition contained in any purchase order shall apply unless expressly accepted by Us in writing,
74
-
75
- There are no implied licenses or other implied rights granted under this License Agreement, and all rights, save for those expressly granted hereunder, shall remain with Us and our licensors. In addition, no licenses or immunities are granted to the combination of the Software and/or Modifications, as applicable, with any other software or hardware not delivered by Us to You under this License Agreement.
76
-
77
- If any provision in this License Agreement shall be determined to be invalid, such provision shall be deemed omitted; the remainder of this License Agreement shall continue in full force and effect. If any remedy provided is determined to have failed for its essential purpose, all limitations of liability and exclusions of damages set forth in this License Agreement shall remain in effect.
78
-
79
- This License Agreement may be modified only by a written instrument signed by an authorized representative of each party.
80
-
81
- This License Agreement is governed by the law of the State of Oregon, United States (notwithstanding conflicts of laws provisions), and all parties irrevocably submit to the jurisdiction of the courts of the State of Oregon and further agree to commence any litigation which may arise hereunder in the state or federal courts located in the judicial district of Multnomah County, Oregon, US.
82
-
83
- If the Software or any related documentation is licensed to the U.S. government or any agency thereof, it will be deemed to be “commercial computer software” or “commercial computer software documentation,” pursuant to DFAR Section 227.7202 and FAR Section 12.212. Any use of the Software or related documentation by the U.S. government will be governed solely by the terms of this License Agreement.