trailblazer 2.0.7 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +1 -0
- data/.rubocop-https---raw-githubusercontent-com-trailblazer-meta-master-rubocop-yml +101 -0
- data/.rubocop.yml +20 -0
- data/.rubocop_todo.yml +556 -0
- data/.travis.yml +6 -10
- data/CHANGES.md +83 -1
- data/COMM-LICENSE +46 -75
- data/CONTRIBUTING.md +179 -0
- data/Gemfile +0 -27
- data/{LICENSE.txt → LICENSE} +4 -4
- data/README.md +39 -138
- data/Rakefile +2 -19
- data/lib/trailblazer.rb +3 -17
- data/lib/trailblazer/version.rb +3 -1
- data/test/test_helper.rb +12 -3
- data/trailblazer.gemspec +10 -14
- metadata +22 -147
- data/doc/Trb-The-Stack.png +0 -0
- data/doc/operation-2017.png +0 -0
- data/doc/trb.jpg +0 -0
- data/lib/trailblazer/dsl.rb +0 -47
- data/lib/trailblazer/operation/auto_inject.rb +0 -47
- data/lib/trailblazer/operation/callback.rb +0 -35
- data/lib/trailblazer/operation/contract.rb +0 -46
- data/lib/trailblazer/operation/guard.rb +0 -18
- data/lib/trailblazer/operation/model.rb +0 -60
- data/lib/trailblazer/operation/module.rb +0 -29
- data/lib/trailblazer/operation/nested.rb +0 -113
- data/lib/trailblazer/operation/persist.rb +0 -10
- data/lib/trailblazer/operation/policy.rb +0 -35
- data/lib/trailblazer/operation/procedural/contract.rb +0 -15
- data/lib/trailblazer/operation/procedural/validate.rb +0 -22
- data/lib/trailblazer/operation/pundit.rb +0 -38
- data/lib/trailblazer/operation/representer.rb +0 -31
- data/lib/trailblazer/operation/rescue.rb +0 -21
- data/lib/trailblazer/operation/test.rb +0 -17
- data/lib/trailblazer/operation/validate.rb +0 -68
- data/lib/trailblazer/operation/wrap.rb +0 -25
- data/test/docs/auto_inject_test.rb +0 -30
- data/test/docs/contract_test.rb +0 -525
- data/test/docs/dry_test.rb +0 -31
- data/test/docs/fast_test.rb +0 -164
- data/test/docs/guard_test.rb +0 -169
- data/test/docs/macro_test.rb +0 -36
- data/test/docs/model_test.rb +0 -75
- data/test/docs/nested_test.rb +0 -334
- data/test/docs/operation_test.rb +0 -408
- data/test/docs/policy_test.rb +0 -2
- data/test/docs/pundit_test.rb +0 -133
- data/test/docs/representer_test.rb +0 -268
- data/test/docs/rescue_test.rb +0 -154
- data/test/docs/wrap_test.rb +0 -183
- data/test/gemfiles/Gemfile.ruby-1.9 +0 -3
- data/test/gemfiles/Gemfile.ruby-2.0 +0 -12
- data/test/gemfiles/Gemfile.ruby-2.3 +0 -12
- data/test/module_test.rb +0 -100
- data/test/operation/callback_test.rb +0 -70
- data/test/operation/contract_test.rb +0 -420
- data/test/operation/dsl/callback_test.rb +0 -106
- data/test/operation/dsl/contract_test.rb +0 -294
- data/test/operation/dsl/representer_test.rb +0 -169
- data/test/operation/model_test.rb +0 -60
- data/test/operation/params_test.rb +0 -36
- data/test/operation/persist_test.rb +0 -44
- data/test/operation/pipedream_test.rb +0 -59
- data/test/operation/pipetree_test.rb +0 -104
- data/test/operation/present_test.rb +0 -24
- data/test/operation/pundit_test.rb +0 -104
- data/test/operation/representer_test.rb +0 -254
- data/test/operation/resolver_test.rb +0 -47
- data/test/operation_test.rb +0 -143
data/.travis.yml
CHANGED
@@ -1,13 +1,9 @@
|
|
1
1
|
language: ruby
|
2
|
+
cache: bundler
|
2
3
|
before_install:
|
4
|
+
- gem update --system
|
3
5
|
- gem install bundler
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
- rvm: 2.1
|
9
|
-
gemfile: Gemfile
|
10
|
-
- rvm: 2.2
|
11
|
-
gemfile: Gemfile
|
12
|
-
- rvm: 2.3.1
|
13
|
-
gemfile: Gemfile
|
6
|
+
rvm:
|
7
|
+
- 2.5.1
|
8
|
+
- 2.4.4
|
9
|
+
- 2.3.7
|
data/CHANGES.md
CHANGED
@@ -1,3 +1,85 @@
|
|
1
|
+
# 2.1
|
2
|
+
|
3
|
+
* Macros now always have to provide an `:id`. This was a bit fuzzy in 2.0.
|
4
|
+
|
5
|
+
* Nested
|
6
|
+
if Nested( Edit ), outputs will automatically be connected, see editor.
|
7
|
+
* Wrap
|
8
|
+
dropped the `pipe` option. This is now `options, flow_options, *`
|
9
|
+
`false` is now automatically connected to End.failure.
|
10
|
+
* remove `Uber::Callable`.
|
11
|
+
|
12
|
+
* `operation.new` step removed.
|
13
|
+
* Undocumented step behavior removed. You can't write to `self` anymore.
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
step :process
|
17
|
+
def process(*)
|
18
|
+
self["x"] = true
|
19
|
+
end
|
20
|
+
```
|
21
|
+
|
22
|
+
Always write to `options`.
|
23
|
+
|
24
|
+
* self[] removed
|
25
|
+
* Fixed `Guard` where procs could receive one argument, only. Guards follow the step interface: `Policy::Guard( ->(options, **) { .. } )
|
26
|
+
* Removed `Operation::Callback` which was a poor idea and luckily no one was using it.
|
27
|
+
|
28
|
+
TODO:
|
29
|
+
document Task API and define step API
|
30
|
+
deprecate step->(options) ?
|
31
|
+
injectable, per-operation step arguments strategy?
|
32
|
+
|
33
|
+
|
34
|
+
# 2.1.0
|
35
|
+
|
36
|
+
* Remove `declarative` dependency.
|
37
|
+
|
38
|
+
# 2.1.0.rc13
|
39
|
+
|
40
|
+
* Use newest `macro` and `macro-context`. They use symbols keys now everywhere.
|
41
|
+
|
42
|
+
# 2.1.0.rc12
|
43
|
+
|
44
|
+
* Update dependencies.
|
45
|
+
|
46
|
+
# 2.1.0.rc11
|
47
|
+
|
48
|
+
* Remove all macros. They're not located in `trailblazer-macro` and `trailblazer-macro-contract`.
|
49
|
+
* Remove DSL
|
50
|
+
|
51
|
+
# 2.1.0.rc1
|
52
|
+
|
53
|
+
* Remove `task` and `input_output`, those are implemented in `activity`.
|
54
|
+
|
55
|
+
# 2.1.0.beta7
|
56
|
+
|
57
|
+
* Use new `activity-0.3.2` where `VariableMapping` is included now.
|
58
|
+
|
59
|
+
# 2.1.0.beta6
|
60
|
+
|
61
|
+
* Use new `activity-0.3.0`.
|
62
|
+
|
63
|
+
# 2.1.0.beta5
|
64
|
+
|
65
|
+
* All macros are now cleanly extracted to `trailblazer-macro` and `trailblazer-macro-contract`.
|
66
|
+
|
67
|
+
# 2.1.0.beta4
|
68
|
+
|
69
|
+
* Simple maintenance release to establish `activity-0.5.0`.
|
70
|
+
|
71
|
+
# 2.1.0.beta3
|
72
|
+
|
73
|
+
* More simplifications because of `activity`.
|
74
|
+
|
75
|
+
# 2.1.0.beta2
|
76
|
+
|
77
|
+
* Simplify `Nested` and several other internals by using the new `Activity` API.
|
78
|
+
|
79
|
+
# 2.1.0.beta1
|
80
|
+
|
81
|
+
* Add `deprecation/call` and `deprecation/context` that help with the new `call` API and symbols for `options` keys.
|
82
|
+
|
1
83
|
# 2.0.7
|
2
84
|
|
3
85
|
* Allow to use any method with the Model macro, e.g.
|
@@ -7,7 +89,7 @@
|
|
7
89
|
```
|
8
90
|
|
9
91
|
will now invoke `Comment[ params[:id] ]`, which makes using Sequel a breeze.
|
10
|
-
|
92
|
+
code: `contract do .. end` etc needs to be moved to a new gem if we want to keep it alive.
|
11
93
|
|
12
94
|
# 2.0.6
|
13
95
|
|
data/COMM-LICENSE
CHANGED
@@ -1,91 +1,62 @@
|
|
1
|
-
|
1
|
+
TRAILBLAZER LICENSE AGREEMENT
|
2
|
+
VERSION 1.1
|
2
3
|
|
3
|
-
------------------------------------------------------------------------------
|
4
4
|
|
5
|
-
IMPORTANT: THIS SOFTWARE
|
5
|
+
IMPORTANT: THIS SOFTWARE LICENSE AGREEMENT IS A LEGAL AGREEMENT (“AGREEMENT”) BETWEEN LICENSEE (“LICENSEE”) AND TRAILBLAZER GMBH. READ IT CAREFULLY BEFORE COMPLETING THE INSTALLATION PROCESS AND USING TRAILBLAZER GEMS (AT GITHUB.COM/TRAILBLAZER), TRAILBLAZER PRO AND RELATED TRAILBLAZER PRO COMPONENTS (SOURCE URL WILL BE PROVIDED AFTER PURCHASE) (“SOFTWARE”). IT PROVIDES A LICENSE TO USE THE SOFTWARE AND CONTAINS WARRANTY INFORMATION AND LIABILITY DISCLAIMERS. IN CONSIDERATION OF LICENSEE’S INSTALLATION AND USE OF THE SOFTWARE, LICENSEE HEREBY CONFIRMS THE ACCEPTANCE OF THE SOFTWARE AND AGREES TO BECOME BOUND BY THE TERMS OF THIS AGREEMENT.
|
6
6
|
|
7
|
-
------------------------------------------------------------------------------
|
8
7
|
|
9
|
-
In order to use the Software under this Agreement,
|
8
|
+
In order to use the Software under this Agreement (“Commercial Version”), Licensee must receive a source URL at the time of purchase, in accordance with the scope of use and other terms specified for each type of Software and as set forth in this Section 1 of this Agreement.
|
10
9
|
|
11
|
-
1. License Grant
|
10
|
+
1. License Grant.
|
11
|
+
1.1 General Use. This Agreement grants Licensee a worldwide, non-exclusive, non-transferable license, valid for the license term, to use the Software, without the right to grant sublicenses, subject to the terms and conditions in this Agreement. The Software is licensed, not sold.
|
12
|
+
1.2 Installations. Licensee may install the Software on an unlimited number of Hosts per project. “Host” means any physical or virtual machine which is controlled by Licensee. A project may involve multiple repositories.
|
13
|
+
1.3 Applications. Licensee may distribute the Software in any applications, frameworks, or elements (collectively referred to as an “Application” or “Applications”) that Licensee develops using the Software in accordance with this Agreement, provided that such distribution does not violate the restrictions set forth in section 3 of this Agreement. Licensee 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. Licensee is required to ensure that the Software is not reused by or with any applications other than those with which Licensee distribute it as permitted herein. For example, if Licensee installs the Software on a customer’s server, that customer is not permitted to use the Software independently of Licensee’s Application. Licensee must inform Trailblazer GmbH of any infringing use of the Software by any of Licensee’s customers. Licensee is liable for compliance by those third parties with the terms and conditions of this Agreement. Licensee shall not owe Trailblazer GmbH any royalties for Licensee’s distribution of the Software in accordance with this Agreement.
|
14
|
+
1.4 Archive Copies. Licensee is entitled to make a reasonable amount of copies of the Software for archival purposes. Each copy must reproduce all copyright and other proprietary rights notices on or in the Software.
|
15
|
+
1.5 Electronic Delivery. All Software and license documentation shall be delivered by electronic means unless otherwise specified on the applicable invoice (“Invoice”) or at the time of purchase. Software shall be deemed delivered when it is made available for download by Licensee (“Delivery”).
|
12
16
|
|
13
|
-
|
14
|
-
|
15
|
-
1.2 Limited Organization License. If you purchased an Organization License (included with the Trailblazer Enterprise Software), you may install the Software on an unlimited number of Hosts. “Host” means any physical or virtual machine which is controlled by you.
|
16
|
-
|
17
|
-
1.3 Appliance License. If you purchased an Appliance License, 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 EULA, provided that such distribution does not violate the restrictions set forth in section 3 of this EULA. 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. 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. You must inform Synergy Software Solutions of your knowledge of any infringing use of the Software by any of your customers. You are liable for compliance by those third parties with the terms and conditions of this EULA. You will not owe Synergy Software Solutions any royalties for your distribution of the Software in accordance with this EULA.
|
18
|
-
|
19
|
-
1.4 Archive Copies. You are entitled to make a reasonable amount of copies of the Software for archival purposes. Each copy must reproduce all copyright and other proprietary rights notices on or in the Software Product.
|
20
|
-
|
21
|
-
1.5 Electronic Delivery. All Software and license documentation shall be delivered by electronic means unless otherwise specified on the applicable invoice (“Invoice”) or at the time of purchase. Software shall be deemed delivered when it is made available for download by you (“Delivery”).
|
22
|
-
|
23
|
-
2. Modifications. Synergy Software Solutions shall provide you with source code so that you can create Modifications of the Software. “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.
|
17
|
+
2. Modifications.
|
18
|
+
Trailblazer GmbH shall provide Licensee with source code so that Licensee can create Modifications of the Software. “Modification” means: (a) any addition to or deletion from the contents of a file included in the original Software or previous Modifications created by Licensee, or (b) any new file that contains any part of the original Software or previous Modifications. While Licensee retains all rights to any original work authored by Licensee as part of the Modifications, Trailblazer GmbH continues to own all copyright and other intellectual property rights in the Software.
|
24
19
|
|
25
20
|
3. Restricted Uses.
|
21
|
+
3.1 Licensee shall not (and shall not allow any third party to): (a) decompile, disassemble, or otherwise reverse engineer the Software or attempt to reconstruct or discover any source code, underlying ideas, algorithms, file formats or programming interfaces of the Software by any means whatsoever (except and only to the extent that applicable law prohibits or restricts reverse engineering restrictions); (b) distribute, sell, sublicense, rent, lease or use the Software for time sharing, hosting, service provider or like purposes, except as expressly permitted under this Agreement; (c) redistribute the Software or Modifications other than by including the Software or a portion thereof within Licensee’s 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; (d) redistribute the Software as part of an "appliance" or "virtual server"; (e) redistribute the Software on any server which is not directly under Licensee’s control; (f) remove any product identification, proprietary, copyright or other notices contained in the Software; (g) modify any part of the Software, create a derivative work of any part of the Software (except as permitted in Section 2), or incorporate the Software, except to the extent expressly authorized in writing by Trailblazer GmbH; (h) publicly disseminate performance information or analysis (including, without limitation, benchmarks) from any source relating to the Software; (i) utilize any equipment, device, software, or other means designed to circumvent or remove any form of Source URL or copy protection used by Trailblazer GmbH in connection with the Software, or use the Software together with any authorization code, Source URL, serial number, or other copy protection device not supplied by Trailblazer GmbH; (j) use the Software to develop a product which is competitive with any Trailblazer GmbH product offerings (unless such development is allowed by applicable law); or (k) use unauthorized Source URLS or keycode(s) or distribute or publish Source URLs or keycode(s), except as may be expressly permitted by Trailblazer GmbH in writing. If Licensee’s unique Source URL is ever published, Trailblazer GmbH reserves the right to terminate Licensee’s access without notice.
|
22
|
+
3.2 UNDER NO CIRCUMSTANCES MAY LICENSEE USE THE SOFTWARE AS PART OF A PRODUCT OR SERVICE THAT PROVIDES SIMILAR FUNCTIONALITY AS THE SOFTWARE ITSELF.
|
26
23
|
|
27
|
-
|
28
|
-
|
29
|
-
3.2 UNDER NO CIRCUMSTANCES MAY YOU USE THE SOFTWARE AS PART OF A PRODUCT OR SERVICE THAT PROVIDES SIMILAR FUNCTIONALITY TO THE SOFTWARE ITSELF.
|
30
|
-
|
31
|
-
The Open Source version of the Software (“LGPL Version”) is licensed
|
32
|
-
under the terms of the GNU Lesser General Public License versions 3.0
|
33
|
-
(“LGPL”) and not under this EULA.
|
34
|
-
|
35
|
-
4. Ownership. Notwithstanding anything to the contrary contained herein, except for the limited license rights expressly provided herein, Synergy Software Solutions and its suppliers have and will retain all rights, title and interest (including, without limitation, all patent, copyright, trademark, trade secret and other intellectual property rights) in and to the Software and all copies, modifications and derivative works thereof (including any changes which incorporate any of your ideas, feedback or suggestions). You acknowledge that you are obtaining only a limited license right to the Software, and that irrespective of any use of the words “purchase”, “sale” or like terms hereunder no ownership rights are being conveyed to you under this Agreement or otherwise.
|
24
|
+
4. Ownership.
|
25
|
+
Notwithstanding anything to the contrary contained herein, except for the limited license rights expressly provided herein, Trailblazer GmbH and its suppliers have and will retain all rights, title and interest (including, without limitation, all patent, copyright, trademark, trade secret and other intellectual property rights) in and to the Software and all copies, modifications and derivative works thereof (including any changes which incorporate any of Licensee’s ideas, feedback or suggestions). Licensee acknowledges that Licensee is obtaining only a limited license right to the Software, and that irrespective of any use of the words “purchase”, “sale” or like terms hereunder no ownership rights are being conveyed to Licensee under this Agreement or otherwise.
|
36
26
|
|
37
|
-
5. Fees and Payment.
|
27
|
+
5. Fees and Payment.
|
28
|
+
The Software license fees will be due and payable in full as set forth in the Invoice or at the time of purchase. Licensee shall be responsible for all taxes, withholdings, duties and levies arising from the order (excluding taxes based on the net income of Trailblazer GmbH).
|
38
29
|
|
39
|
-
6. Support, Maintenance and Services.
|
30
|
+
6. Support, Maintenance and Services.
|
31
|
+
Subject to the terms and conditions of this Agreement, as set forth in the Invoice, and as set forth on the Trailblazer PRO support page (http://pro.trailblazer.to), support and maintenance services may be included with the purchase of Licensee’s license subscription.
|
40
32
|
|
41
33
|
7. Term of Agreement.
|
34
|
+
7.1 Term. This Agreement is effective as of the Delivery of the Software and expires at such time as all license and service subscriptions hereunder have expired in accordance with their own terms (the “Term”). For clarification, the term of the license under this Agreement may be perpetual or designated as a fixed-term license in the Invoice and shall be specified at Licensee’s time of purchase. Either party may terminate this Agreement (including all related Invoices) if the other party: (a) fails to cure any material breach of this Agreement within thirty (30) days after written notice of such breach, provided that Trailblazer GmbH may terminate this Agreement immediately upon any breach of Section 3 or if Licensee exceeds any other restrictions contained in Section 1, unless otherwise specified in this agreement; (b) ceases operation without a successor; or (c) seeks protection under any bankruptcy, receivership, trust deed, creditors arrangement, composition or comparable proceeding, or if any such proceeding is instituted against such party (and not dismissed within sixty (60) days)). Termination is not an exclusive remedy and the exercise by either party of any remedy under this Agreement will be without prejudice to any other remedies it may have under this Agreement, by law, or otherwise.
|
35
|
+
7.2 Termination. Upon any termination of this Agreement, Licensee shall cease any and all use of any Software and destroy all copies thereof.
|
36
|
+
7.3 Expiration of License. Upon the expiration of any term under this Agreement, (a) all Software updates and services pursuant to the license shall cease, (b) Licensee may only continue to run existing installations of the Software, (c) Licensee may not install the Software on any additional Hosts, and (d) any new installation of the Software shall require the purchase of a new license subscription from Trailblazer GmbH.
|
42
37
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
7.3 Expiration of License. Upon the expiration of any term under this Agreement, (a) all Software updates and services pursuant to the license shall cease, (b) you may only continue to run existing installations of the Software, (c) you may not install the Software on any additional Hosts, and (d) any new installation of the Software shall require the purchase of a new license subscription from Synergy Software Solutions.
|
48
|
-
|
49
|
-
8. Disclaimer of Warranties. The Software is provided "as is," with all faults, defects and errors, and without warranty of any kind. Synergy Software Solutions does not warrant that the Software will be free of bugs, errors, viruses or other defects, and Synergy Software Solutions shall have no liability of any kind for the use of or inability to use the Software, the Software content or any associated service, and you acknowledge that it is not technically practicable for Synergy Software Solutions to do so.
|
50
|
-
To the maximum extent permitted by applicable law, Synergy Software Solutions disclaims all warranties, express, implied, arising by law or otherwise, regarding the Software, the Software content and their respective performance or suitability for your intended use, including without limitation any implied warranty of merchantability, fitness for a particular purpose.
|
38
|
+
8. Disclaimer of Warranties.
|
39
|
+
The Software is provided "as is", with all faults, defects and errors, and without warranty of any kind. Trailblazer GmbH does not warrant that the Software will be free of bugs, errors, viruses or other defects, and Trailblazer GmbH shall have no liability of any kind for the use of or inability to use the Software, the Software content or any associated service, and Licensee acknowledges that it is not technically practicable for Trailblazer GmbH to do so.
|
40
|
+
To the maximum extent permitted by applicable law, Trailblazer GmbH disclaims all warranties, express, implied, arising by law or otherwise, regarding the Software, the Software content and their respective performance or suitability for Licensee’s intended use, including without limitation any implied warranty of merchantability, fitness for a particular purpose.
|
51
41
|
|
52
42
|
9. Limitation of Liability.
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
11.
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
13.3 Assignment. You may not assign this Agreement or any of its rights under this Agreement without the prior written consent of Synergy Software Solutions and any attempted assignment without such consent shall be void.
|
74
|
-
|
75
|
-
13.4 Export Compliance. You agree to comply with all applicable laws and regulations, including laws, regulations, orders or other restrictions on export, re-export or redistribution of software.
|
76
|
-
|
77
|
-
13.5 Indemnification. You agree to defend, indemnify, and hold harmless Synergy Software Solutions from and against any lawsuits, claims, losses, damages, fines and expenses (including attorneys' fees and costs) arising out of your use of the Software or breach of this Agreement.
|
78
|
-
|
79
|
-
13.6 Governing Law. This Agreement is governed and construed in accordance with the law of Singapore and shall be subject to the exclusive jurisdiction of the Singapore Courts. The operation of the United Nations Convention on the International Sale of Goods is hereby expressly excluded.
|
80
|
-
|
81
|
-
13.7 Dispute Resolution. In the event of any dispute arising from or in connection with this Agreement, the parties undertake to make all their best efforts to settle the dispute amicably through negotiations, failing which either party may submit the dispute for resolution by the Singapore Courts.
|
82
|
-
|
83
|
-
13.8 Attorneys’ Fees and Costs. The prevailing party in any action to enforce this Agreement will be entitled to recover its attorneys’ fees and costs in connection with such action.
|
84
|
-
|
85
|
-
13.9 Severability. If any provision of this Agreement is held by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remainder of this Agreement will remain in full force and effect.
|
86
|
-
|
87
|
-
13.10 Waiver. Failure or neglect by either party to enforce at any time any of the provisions of this licence Agreement shall not be construed or deemed to be a waiver of that party's rights under this Agreement.
|
88
|
-
|
89
|
-
13.11 Headings. The headings of sections and paragraphs of this Agreement are for convenience of reference only and are not intended to restrict, affect or be of any weight in the interpretation or construction of the provisions of such sections or paragraphs.
|
90
|
-
|
91
|
-
14. Contact Information. If you have any questions about this EULA, or if you want to contact Synergy Software Solutions for any reason, please direct correspondence to info@trailblazer.to.
|
43
|
+
To the maximum extent permitted by applicable law, Trailblazer GmbH will not be liable for any direct, indirect, consequential, incidental, special, exemplary, or punitive damages or liabilities whatsoever arising from or relating to the Software, the Software content or this Agreement, whether based on contract, tort (including negligence), strict liability or other theory, even if Trailblazer GmbH has been advised of the possibility of such damages. In no event will Trailblazer GmbH's liability exceed the Software license price as indicated in the Invoice. The existence of more than one claim will not enlarge or extend this limit. Claims for damages under the Product Liability Act shall remain unaffected, as shall liability for damage to life, body or health.
|
44
|
+
|
45
|
+
10. Remedies.
|
46
|
+
Licensee’s exclusive remedy and Trailblazer GmbH’s entire liability for breach of this Agreement shall be limited, at Trailblazer GmbH’s sole and exclusive discretion, to (a) replacement of any defective software or documentation; or (b) refund of the license fee paid to Trailblazer GmbH.
|
47
|
+
|
48
|
+
11. Miscellaneous
|
49
|
+
11.1 Entire Agreement. This Agreement sets forth our entire agreement with respect to the Software and the subject matter hereof and supersedes all prior and contemporaneous understandings and agreements whether written or oral.
|
50
|
+
11.2 No Assignment. Licensee may not assign this Agreement or any of its rights under this Agreement without the prior written consent of Trailblazer GmbH and any attempted assignment without such consent shall be void.
|
51
|
+
11.3 Export Compliance. Licensee agrees to comply with all applicable laws and regulations, including laws, regulations, orders or other restrictions on export, re-export or redistribution of software.
|
52
|
+
11.4 Indemnification. Licensee agrees to defend, indemnify, and hold harmless Trailblazer GmbH from and against any lawsuits, claims, losses, damages, fines and expenses (including attorneys' fees and costs) arising out of Licensee’s use of the Software or breach of this Agreement.
|
53
|
+
11.5 Governing Law. This Agreement is governed and construed in accordance with the law of The Federal Republic of Germany and shall be subject to the exclusive jurisdiction of the Courts of Berlin, Germany. The operation of the United Nations Convention on the International Sale of Goods is hereby expressly excluded.
|
54
|
+
11.6 Dispute Resolution. In the event of any dispute arising from or in connection with this Agreement, the parties undertake to make all their best efforts to settle the dispute amicably through negotiations, failing which either party may submit the dispute for resolution by the Courts of Berlin, Germany.
|
55
|
+
11.7 Attorneys’ Fees and Costs. The prevailing party in any action to enforce this Agreement shall be entitled to recover its attorneys’ fees and costs in connection with such action.
|
56
|
+
11.8 Severability. If any provision of this Agreement is held by a court of competent jurisdiction to be invalid, illegal, or unenforceable, the remainder of this Agreement shall remain in full force and effect.
|
57
|
+
11.9 Waiver. Failure or neglect by either party to enforce at any time any of the provisions of this Agreement shall not be construed or deemed to be a waiver of that party's rights under this Agreement.
|
58
|
+
11.10 Modifications. No modification of this Agreement shall be effective unless contained in writing and executed by an authorized representative of each party. No term or condition in Licensee’s Purchase Order or Terms and Conditions shall apply unless expressly accepted by Trailblazer GmbH.
|
59
|
+
11.11 Force Majeure. Trailblazer GmbH shall not be liable for any delay or non-performance of its obligations under this Agreement in the event and to the extent that such delay or non-performance is due to an unforeseeable catastrophic event that prevents Trailblazer GmbH to fulfill its obligations under this Agreement and which Trailblazer GmbH cannot avoid or circumvent (“Force Majeure Event”). If the Force Majeure Event results in a delay or non-performance of Trailblazer GmbH for a period of three (3) months or longer, then Licensee shall have the right to terminate this Agreement with immediate effect without any liability (except for the obligations of payment arising prior to the event of Force Majeure).
|
60
|
+
|
61
|
+
|
62
|
+
The Open Source version of the TRAILBLAZER GEMS (“LGPL Version”) is licensed under the terms of the GNU Lesser General Public License versions 3.0 (“LGPL”) and not under this Agreement.
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
# Contributing to Trailblazer
|
2
|
+
Trailblazer is an open source project and we would love you to help us make it better.
|
3
|
+
|
4
|
+
## Questions/Help
|
5
|
+
If our [guides][guides] nor [docs][api-docs] can help you figure things out, and you're stuck, refrain from posting questions on github issues, and please just find us on the [trailblazer gitter chat][chat] and drop us a line.
|
6
|
+
|
7
|
+
Keep in mind when asking questions though, an example will get you help faster than anything else you do.
|
8
|
+
|
9
|
+
If you file an issue with a question, it will be closed. We're not trying to be mean, don't get us wrong, we're just trying to stay sane.
|
10
|
+
|
11
|
+
## Reporting Issues
|
12
|
+
A well formatted issue is appreciated, and goes a long way in helping us help you.
|
13
|
+
|
14
|
+
* Make sure you have a [GitHub account](https://github.com/signup/free)
|
15
|
+
* Submit a [Github issue][issues-link] by:
|
16
|
+
* Clearly describing the issue
|
17
|
+
* Provide a descriptive summary
|
18
|
+
* Provide sample code where possible (preferably in the form of a test, in a [Gist][gist] for bonus points)
|
19
|
+
* Explain the expected behavior
|
20
|
+
* Explain the actual behavior
|
21
|
+
* Provide steps to reproduce the actual behavior
|
22
|
+
* Provide your application's complete `Gemfile.lock` as text (in a [Gist][gist] for bonus points)
|
23
|
+
* Any relevant stack traces
|
24
|
+
|
25
|
+
If you provide code, make sure it is formatted with the triple backticks (\`).
|
26
|
+
|
27
|
+
At this point, we'd love to tell you how long it will take for us to respond, but we just don't know.
|
28
|
+
|
29
|
+
## Pull requests
|
30
|
+
We accept pull requests to Trailblazer for:
|
31
|
+
|
32
|
+
* Adding documentation
|
33
|
+
* Fixing bugs
|
34
|
+
* Adding new features
|
35
|
+
|
36
|
+
Not all features proposed will be added but we are open to having a conversation about a feature you are championing.
|
37
|
+
|
38
|
+
###Here's a quick guide:
|
39
|
+
#### Fork the Project
|
40
|
+
Fork the [project repository][project-repo-link] on Github and check out your copy.
|
41
|
+
|
42
|
+
```
|
43
|
+
git clone https://github.com/YOUR_HANDLE/trailblazer.git
|
44
|
+
cd trailblazer
|
45
|
+
git remote add upstream https://github.com/trailblazer/trailblazer.git
|
46
|
+
```
|
47
|
+
|
48
|
+
#### Create a Topic Branch
|
49
|
+
Make sure your fork is up-to-date and create a topic branch for your feature or bug fix.
|
50
|
+
```
|
51
|
+
git checkout master
|
52
|
+
git pull upstream master
|
53
|
+
git checkout -b my-feature-branch
|
54
|
+
```
|
55
|
+
|
56
|
+
#### Bundle and Test
|
57
|
+
Run bundle install/update to gather any and all dependencies. Run the tests. This is to make sure your starting point works.
|
58
|
+
|
59
|
+
```
|
60
|
+
bundle install
|
61
|
+
bundle exec rake
|
62
|
+
```
|
63
|
+
|
64
|
+
#### Write Tests
|
65
|
+
Try to write a test that reproduces the problem you're trying to fix or describes a feature that you want to build. Add to [test][test-link].
|
66
|
+
|
67
|
+
We definitely appreciate pull requests that highlight or reproduce a problem, even without a fix.
|
68
|
+
|
69
|
+
#### Write Code
|
70
|
+
Implement your feature or bug fix.
|
71
|
+
|
72
|
+
Ruby style is enforced with [RuboCop](https://github.com/bbatsov/rubocop), run `bundle exec rubocop` and fix any style issues highlighted.
|
73
|
+
|
74
|
+
Make sure that `bundle exec rake` completes without errors.
|
75
|
+
|
76
|
+
#### Write Documentation
|
77
|
+
Document any external behavior in the [README](README.md).
|
78
|
+
|
79
|
+
#### Commit Changes
|
80
|
+
Make sure git knows your name and email address:
|
81
|
+
|
82
|
+
```
|
83
|
+
git config --global user.name "Your Name"
|
84
|
+
git config --global user.email "contributor@example.com"
|
85
|
+
```
|
86
|
+
|
87
|
+
Writing good commit logs is important. A commit log should describe what has changed and why, but be brief.
|
88
|
+
|
89
|
+
```
|
90
|
+
git add your_filename.rb (File names to add content from, or fileglobs e.g. *.rb)
|
91
|
+
git commit
|
92
|
+
```
|
93
|
+
|
94
|
+
#### Push
|
95
|
+
```
|
96
|
+
git push origin my-feature-branch
|
97
|
+
```
|
98
|
+
|
99
|
+
#### Make a Pull Request
|
100
|
+
Go to https://github.com/YOUR_GH_HANDLE/trailblazer and select your feature branch. Click the 'Pull Request' button and fill out the form. Pull requests are usually reviewed within a few days, but no need to rush us if it takes longer.
|
101
|
+
|
102
|
+
#### Rebase
|
103
|
+
If you've been working on a change for a while, rebase with upstream/master.
|
104
|
+
|
105
|
+
```
|
106
|
+
git fetch upstream
|
107
|
+
git rebase upstream/master
|
108
|
+
git push origin my-feature-branch -f
|
109
|
+
```
|
110
|
+
|
111
|
+
#### Update CHANGELOG Again
|
112
|
+
Update the [CHANGELOG](CHANGELOG.md) with the pull request number. A typical entry looks as follows.
|
113
|
+
|
114
|
+
```
|
115
|
+
* [#123](https://github.com/trailblazer/trailblazer/pull/123): Your brief description - [@your_gh_handle](https://github.com/your_gh_handle).
|
116
|
+
```
|
117
|
+
|
118
|
+
Amend your previous commit and force push the changes.
|
119
|
+
|
120
|
+
```
|
121
|
+
git commit --amend
|
122
|
+
git push origin my-feature-branch -f
|
123
|
+
```
|
124
|
+
|
125
|
+
#### Check on Your Pull Request
|
126
|
+
Go back to your pull request after a few minutes and see whether it passed muster with Travis-CI. Everything should look green, otherwise fix issues and amend your commit as described above.
|
127
|
+
|
128
|
+
## Quality
|
129
|
+
|
130
|
+
Committing to OSS projects is always difficult, because all maintainers will adhere to their own quality standards that you don't know. Every projects wants "good code design", and so do we, so here are a few things that you should follow when contributing.
|
131
|
+
|
132
|
+
* Good design matters: sometimes a feature could be added with a simple `if <my new case>` to an existing block of code. Usually, an `if` implies that the original design didn't plan on handling multiple cases, or in other words, **a refactoring of the code structure might be necessary**. If you're unsure: [Talk to us!](https://gitter.im/trailblazer/chat)
|
133
|
+
* Make smaller pull requests. It is so much easier to discuss something graspable and not a "37 files changed" PR. The sooner we see your code, the earlier we can decide about which way to go. It is incredibly appreciated, though, to send us a link to a branch of yours where we can see the desired changes in total. We can then help splitting those into smaller steps.
|
134
|
+
* **Never ever use `if respond_to?`** to add a feature. This is a pattern as seen a lot in Rails core that causes incredibly hard to find ~bugs~ behavior. In Trailblazer, we use "Tell, don't ask!", which means, never try to find out the type of an object via `respond_to?`. If you really have to introspect the type, use `is_a?`. Treat it as a duck, ducks don't speak.
|
135
|
+
|
136
|
+
|
137
|
+
## Releasing
|
138
|
+
|
139
|
+
When you have release rights, please follow these rules.
|
140
|
+
|
141
|
+
* When tagging a commit for a release, use the format `vX.X.X` for the tag, e.g. `git tag v2.1.0`.
|
142
|
+
* The tagged commit **must contain the line** "Releasing vX.X.X" so it can be quickly spotted later in the commit list.
|
143
|
+
|
144
|
+
#### What now?
|
145
|
+
At this point you're waiting on us. Expect a conversation regarding your pull request; Questions, clarifications, and so on.
|
146
|
+
|
147
|
+
Some things that will increase the chance that your pull request is accepted:
|
148
|
+
* Use Trailblazer idioms and follow the Trailblazer ideology
|
149
|
+
* Include tests that fail without your code, and pass with it
|
150
|
+
* Update the documentation, guides, etc.
|
151
|
+
|
152
|
+
## What do we need help with?
|
153
|
+
### Helping others!
|
154
|
+
There are a lot of questions from people as they get started using Trailblazer. If you could **please do the following things**, that would really help:
|
155
|
+
|
156
|
+
- Hang out on [the chat][chat]
|
157
|
+
- Watch the [trailblazer repositories][repositories] for issues or requests that you could help with
|
158
|
+
|
159
|
+
### Contributing to community
|
160
|
+
- Create Macros!
|
161
|
+
- Write blog posts!
|
162
|
+
- Record screencasts
|
163
|
+
- Write examples.
|
164
|
+
|
165
|
+
### Contributing to the core
|
166
|
+
- Tests are always helpful!
|
167
|
+
- Any of the issues in GitHub, let us know if you have some time to fix one.
|
168
|
+
|
169
|
+
## Thank You
|
170
|
+
Please do know that we really appreciate and value your time and work.
|
171
|
+
|
172
|
+
[gist]: https://gist.github.com
|
173
|
+
[guides]: https://www.trailblazer.to
|
174
|
+
[api-docs]: https://www.trailblazer.to/api-docs
|
175
|
+
[chat]: https://gitter.im/trailblazer/chat
|
176
|
+
[repositories]: https://github.com/trailblazer
|
177
|
+
[test-link]: https://github.com/trailblazer/trailblazer/tree/master/test
|
178
|
+
[project-repo-link]: https://github.com/trailblazer/trailblazer
|
179
|
+
[issues-link]: https://www.github.com/trailblazer/trailblazer/issues
|
data/Gemfile
CHANGED
@@ -2,30 +2,3 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
# Specify your gem's dependencies in trailblazer.gemspec
|
4
4
|
gemspec
|
5
|
-
|
6
|
-
# gem "representable", path: "../representable"
|
7
|
-
# gem "disposable", path: "../disposable"
|
8
|
-
# gem "reform", github: "apotonick/reform"
|
9
|
-
gem "reform-rails"
|
10
|
-
gem "activesupport", "~> 4.2.0"
|
11
|
-
|
12
|
-
gem "roar", github: "apotonick/roar"
|
13
|
-
# gem "reform", "~> 2.0.0"
|
14
|
-
gem "reform"#, path: "../reform"
|
15
|
-
# gem "roar", path: "../roar"
|
16
|
-
gem "multi_json"
|
17
|
-
|
18
|
-
gem "dry-auto_inject"
|
19
|
-
gem "dry-matcher"
|
20
|
-
gem "dry-validation"
|
21
|
-
|
22
|
-
|
23
|
-
# gem "trailblazer-operation", path: "../operation"
|
24
|
-
# gem "pipetree", path: "../pipetree"
|
25
|
-
# gem "trailblazer-operation", github: "trailblazer/trailblazer-operation"
|
26
|
-
# gem "pipetree", github: "apotonick/pipetree"
|
27
|
-
|
28
|
-
|
29
|
-
gem "minitest-line"
|
30
|
-
|
31
|
-
# gem "uber", path: "../uber"
|