lutaml-xmi 0.2.3 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7496f55ef9bda77a9e3f7d093523e2eeb88afd9e2a7fb40ca0b04d13e0cbb40e
4
- data.tar.gz: d1be13d865af258bb93df7161eb44d7946e26535a3d991fbb47c2ee434e90297
3
+ metadata.gz: 296d004600568d41162da00dfd005fb9e50504a6277cdd2742d63ac2022d3dba
4
+ data.tar.gz: cb038581972ae7b8963a79893f5b696d935dd6683acbe487e14207f2e4b861c5
5
5
  SHA512:
6
- metadata.gz: 9915d8a496fe08deaba06860f6b02c87963b03c31db00ac6bd0a8100f29a090e2265a2b50e9f86c3d3f9243fbc3e14d91770e8a9200d90bd3fa8d5d09c03ac26
7
- data.tar.gz: a0ef7f6293f5aa6a04d7c9bcb16c0d222ebaea26f1e758170ae95d66796ee1c566abc61a62f0b10819c43c9db90f19778f8e189013347e8ede4e640e2d72177e
6
+ metadata.gz: 34cefb4ceaf5052e25a0813174169b3d091de0adc06609b0224a9e45e649b73f1c17c5956dfdea06bd39115368ed9872997b13a5e1bbb0309f7b8b3a1708997e
7
+ data.tar.gz: '05833fdf3fdbfce505c2758581e2286e3ab46bc27a4e8cb903f1b15eff314e8b271b5bc269a550f31df98d37ed578df12b0075aed2c36cc4b513f04ca9aec8ea'
@@ -0,0 +1,22 @@
1
+ name: release
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ next_version:
7
+ description: |
8
+ Next release version. Possible values: x.y.z, major, minor, patch or pre|rc|etc
9
+ required: true
10
+ default: 'skip'
11
+ push:
12
+ tags: [ v* ]
13
+
14
+ jobs:
15
+ release:
16
+ uses: metanorma/ci/.github/workflows/rubygems-release.yml@main
17
+ with:
18
+ next_version: ${{ github.event.inputs.next_version }}
19
+ secrets:
20
+ rubygems-api-key: ${{ secrets.LUTAML_CI_RUBYGEMS_API_KEY }}
21
+ pat_token: ${{ secrets.LUTAML_CI_PAT_TOKEN }}
22
+
data/Gemfile CHANGED
@@ -1,8 +1,4 @@
1
- # frozen_string_literal: true
2
-
3
1
  source "https://rubygems.org"
4
2
 
5
- # Specify your gem's dependencies in lutaml-uml.gemspec
6
3
  gemspec
7
-
8
- gem "rake", "~> 12.0"
4
+ gem "rake"
data/README.adoc CHANGED
@@ -1,24 +1,6 @@
1
- # Lutaml::Uml
1
+ = lutaml-xmi
2
2
 
3
- Lutaml-xmi is a parser for XML Metadata Interchange (XMI) Specification files.
3
+ This repository has been merged into LutaML. See:
4
4
 
5
- ## Install
6
-
7
- ### Bundler: `gem "lutaml-xmi"`
8
-
9
- ### RubyGems: `gem install lutaml-xmi`
10
-
11
- ## Development
12
-
13
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
14
-
15
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
16
-
17
- ## Contributing
18
-
19
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/lutaml-xmi. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/lutaml-xmi/blob/master/CODE_OF_CONDUCT.md).
20
-
21
-
22
- ## Code of Conduct
23
-
24
- Everyone interacting in the Lutaml::Uml project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/lutaml-xmi/blob/master/CODE_OF_CONDUCT.md).
5
+ * https://github.com/lutaml/lutaml/
6
+ * https://github.com/lutaml/lutaml/tree/main/lib/lutaml/xmi
data/Rakefile CHANGED
@@ -1,8 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- task default: :spec
data/lutaml-xmi.gemspec CHANGED
@@ -1,38 +1,24 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative "lib/lutaml/xmi/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "lutaml-xmi"
7
- spec.version = Lutaml::XMI::VERSION
8
- spec.authors = ["Ribose Inc."]
9
- spec.email = ["open.source@ribose.com'"]
10
-
11
- spec.summary = "XML Metadata Interchange (XMI) Specification parser in Ruby, tools for accessing EXPRESS data models."
12
- spec.description = "XML Metadata Interchange (XMI) Specification parser in Ruby, tools for accessing EXPRESS data models."
13
- spec.homepage = "https://github.com/lutaml/lutaml-xmi"
14
- spec.license = "MIT"
15
-
16
- spec.metadata["homepage_uri"] = spec.homepage
17
- spec.metadata["source_code_uri"] = spec.homepage
18
- spec.metadata["changelog_uri"] = "https://github.com/lutaml/lutaml-xmi/releases"
19
-
20
- spec.files = `git ls-files`.split("\n")
21
- spec.test_files = `git ls-files -- {spec}/*`.split("\n")
22
-
23
- spec.bindir = "exe"
24
- spec.require_paths = ["lib"]
25
-
26
- spec.add_runtime_dependency "hashie", "~> 4.1.0"
27
- spec.add_runtime_dependency "thor", "~> 1.0"
28
- spec.add_runtime_dependency "lutaml-uml"
29
- spec.add_runtime_dependency "nokogiri", "~> 1.10"
30
- spec.add_runtime_dependency "htmlentities"
31
-
32
- spec.add_development_dependency "bundler", "~> 2.0"
33
- spec.add_development_dependency "byebug"
34
- spec.add_development_dependency "pry", "~> 0.12.2"
35
- spec.add_development_dependency "rake", "~> 10.0"
36
- spec.add_development_dependency "rspec", "~> 3.0"
37
- spec.add_development_dependency "rubocop", "~> 0.54.0"
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "lutaml-xmi"
5
+ s.version = "1.0.0"
6
+ s.authors = ["Ribose Inc."]
7
+ s.email = ["open.source@ribose.com"]
8
+
9
+ s.homepage = "http://github.com/lutaml/lutaml"
10
+ s.summary = "Lutaml stub gem for lutaml-xmi"
11
+ s.description = "Lutaml stub gem for lutaml-xmi"
12
+ s.license = "BSD-2-Clause"
13
+
14
+ s.files = `git ls-files`.split("\n")
15
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
16
+ s.executables = `git ls-files -- exe/*`.split("\n").map do |f|
17
+ File.basename(f)
18
+ end
19
+ s.bindir = "exe"
20
+ s.require_paths = ["lib"]
21
+ s.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
22
+
23
+ s.add_dependency "lutaml", "> 0.7.7"
38
24
  end
metadata CHANGED
@@ -1,207 +1,46 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lutaml-xmi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-22 00:00:00.000000000 Z
11
+ date: 2024-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: hashie
14
+ name: lutaml
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">"
18
18
  - !ruby/object:Gem::Version
19
- version: 4.1.0
19
+ version: 0.7.7
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ">"
25
25
  - !ruby/object:Gem::Version
26
- version: 4.1.0
27
- - !ruby/object:Gem::Dependency
28
- name: thor
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '1.0'
34
- type: :runtime
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '1.0'
41
- - !ruby/object:Gem::Dependency
42
- name: lutaml-uml
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - ">="
46
- - !ruby/object:Gem::Version
47
- version: '0'
48
- type: :runtime
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - ">="
53
- - !ruby/object:Gem::Version
54
- version: '0'
55
- - !ruby/object:Gem::Dependency
56
- name: nokogiri
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - "~>"
60
- - !ruby/object:Gem::Version
61
- version: '1.10'
62
- type: :runtime
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - "~>"
67
- - !ruby/object:Gem::Version
68
- version: '1.10'
69
- - !ruby/object:Gem::Dependency
70
- name: htmlentities
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - ">="
74
- - !ruby/object:Gem::Version
75
- version: '0'
76
- type: :runtime
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- version: '0'
83
- - !ruby/object:Gem::Dependency
84
- name: bundler
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '2.0'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '2.0'
97
- - !ruby/object:Gem::Dependency
98
- name: byebug
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - ">="
102
- - !ruby/object:Gem::Version
103
- version: '0'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - ">="
109
- - !ruby/object:Gem::Version
110
- version: '0'
111
- - !ruby/object:Gem::Dependency
112
- name: pry
113
- requirement: !ruby/object:Gem::Requirement
114
- requirements:
115
- - - "~>"
116
- - !ruby/object:Gem::Version
117
- version: 0.12.2
118
- type: :development
119
- prerelease: false
120
- version_requirements: !ruby/object:Gem::Requirement
121
- requirements:
122
- - - "~>"
123
- - !ruby/object:Gem::Version
124
- version: 0.12.2
125
- - !ruby/object:Gem::Dependency
126
- name: rake
127
- requirement: !ruby/object:Gem::Requirement
128
- requirements:
129
- - - "~>"
130
- - !ruby/object:Gem::Version
131
- version: '10.0'
132
- type: :development
133
- prerelease: false
134
- version_requirements: !ruby/object:Gem::Requirement
135
- requirements:
136
- - - "~>"
137
- - !ruby/object:Gem::Version
138
- version: '10.0'
139
- - !ruby/object:Gem::Dependency
140
- name: rspec
141
- requirement: !ruby/object:Gem::Requirement
142
- requirements:
143
- - - "~>"
144
- - !ruby/object:Gem::Version
145
- version: '3.0'
146
- type: :development
147
- prerelease: false
148
- version_requirements: !ruby/object:Gem::Requirement
149
- requirements:
150
- - - "~>"
151
- - !ruby/object:Gem::Version
152
- version: '3.0'
153
- - !ruby/object:Gem::Dependency
154
- name: rubocop
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: 0.54.0
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: 0.54.0
167
- description: XML Metadata Interchange (XMI) Specification parser in Ruby, tools for
168
- accessing EXPRESS data models.
26
+ version: 0.7.7
27
+ description: Lutaml stub gem for lutaml-xmi
169
28
  email:
170
- - open.source@ribose.com'
29
+ - open.source@ribose.com
171
30
  executables: []
172
31
  extensions: []
173
32
  extra_rdoc_files: []
174
33
  files:
175
- - ".github/workflows/macos.yml"
176
- - ".github/workflows/ubuntu.yml"
177
- - ".github/workflows/windows.yml"
178
- - ".gitignore"
179
- - ".rspec"
180
- - CODE_OF_CONDUCT.md
34
+ - ".github/workflows/release.yml"
181
35
  - Gemfile
182
- - Makefile
183
36
  - README.adoc
184
37
  - Rakefile
185
- - bin/console
186
- - bin/setup
187
- - lib/lutaml/xmi.rb
188
- - lib/lutaml/xmi/parsers/xml.rb
189
- - lib/lutaml/xmi/version.rb
190
38
  - lutaml-xmi.gemspec
191
- - spec/fixtures/ea-xmi-2.4.2.xmi
192
- - spec/fixtures/ea-xmi-2.5.1.xmi
193
- - spec/fixtures/requirements.wsd
194
- - spec/lutaml/parsers/xmi_spec.rb
195
- - spec/lutaml/xmi_spec.rb
196
- - spec/spec_helper.rb
197
- homepage: https://github.com/lutaml/lutaml-xmi
39
+ homepage: http://github.com/lutaml/lutaml
198
40
  licenses:
199
- - MIT
200
- metadata:
201
- homepage_uri: https://github.com/lutaml/lutaml-xmi
202
- source_code_uri: https://github.com/lutaml/lutaml-xmi
203
- changelog_uri: https://github.com/lutaml/lutaml-xmi/releases
204
- post_install_message:
41
+ - BSD-2-Clause
42
+ metadata: {}
43
+ post_install_message:
205
44
  rdoc_options: []
206
45
  require_paths:
207
46
  - lib
@@ -209,16 +48,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
209
48
  requirements:
210
49
  - - ">="
211
50
  - !ruby/object:Gem::Version
212
- version: '0'
51
+ version: 2.7.0
213
52
  required_rubygems_version: !ruby/object:Gem::Requirement
214
53
  requirements:
215
54
  - - ">="
216
55
  - !ruby/object:Gem::Version
217
56
  version: '0'
218
57
  requirements: []
219
- rubygems_version: 3.1.6
220
- signing_key:
58
+ rubygems_version: 3.3.27
59
+ signing_key:
221
60
  specification_version: 4
222
- summary: XML Metadata Interchange (XMI) Specification parser in Ruby, tools for accessing
223
- EXPRESS data models.
61
+ summary: Lutaml stub gem for lutaml-xmi
224
62
  test_files: []
@@ -1,36 +0,0 @@
1
- name: macos
2
-
3
- on:
4
- push:
5
- branches: [ master ]
6
- pull_request:
7
- paths-ignore:
8
- - .github/workflows/ubuntu.yml
9
- - .github/workflows/windows.yml
10
-
11
- jobs:
12
- test-macos:
13
- name: Test on Ruby ${{ matrix.ruby }} macOS
14
- runs-on: macos-latest
15
- continue-on-error: ${{ matrix.experimental }}
16
- strategy:
17
- fail-fast: false
18
- matrix:
19
- ruby: [ '2.6', '2.5' ]
20
- experimental: [false]
21
- include:
22
- - ruby: '2.7'
23
- experimental: true
24
- steps:
25
- - uses: actions/checkout@master
26
- - name: Use Ruby
27
- uses: actions/setup-ruby@v1
28
- with:
29
- ruby-version: ${{ matrix.ruby }}
30
- - name: Update gems
31
- run: |
32
- sudo gem install bundler --force
33
- bundle install --jobs 4 --retry 3
34
- - name: Run specs
35
- run: |
36
- bundle exec rake
@@ -1,38 +0,0 @@
1
- name: ubuntu
2
-
3
- on:
4
- push:
5
- branches: [ master ]
6
- tags:
7
- - '*'
8
- pull_request:
9
- paths-ignore:
10
- - .github/workflows/macos.yml
11
- - .github/workflows/windows.yml
12
-
13
- jobs:
14
- test-linux:
15
- name: Test on Ruby ${{ matrix.ruby }} Ubuntu
16
- runs-on: ubuntu-latest
17
- continue-on-error: ${{ matrix.experimental }}
18
- strategy:
19
- fail-fast: false
20
- matrix:
21
- ruby: [ '2.6', '2.5' ]
22
- experimental: [false]
23
- include:
24
- - ruby: '2.7'
25
- experimental: true
26
- steps:
27
- - uses: actions/checkout@master
28
- - name: Use Ruby
29
- uses: actions/setup-ruby@v1
30
- with:
31
- ruby-version: ${{ matrix.ruby }}
32
- - name: Update gems
33
- run: |
34
- gem install bundler
35
- bundle install --jobs 4 --retry 3
36
- - name: Run specs
37
- run: |
38
- bundle exec rake
@@ -1,41 +0,0 @@
1
- name: windows
2
-
3
- on:
4
- push:
5
- branches: [ master ]
6
- pull_request:
7
- paths-ignore:
8
- - .github/workflows/macos.yml
9
- - .github/workflows/ubuntu.yml
10
-
11
- jobs:
12
- test-windows:
13
- name: Test on Ruby ${{ matrix.ruby }} Windows
14
- runs-on: windows-latest
15
- continue-on-error: ${{ matrix.experimental }}
16
- strategy:
17
- fail-fast: false
18
- matrix:
19
- ruby: [ '2.6', '2.5' ]
20
- experimental: [false]
21
- # Does not supported yet:
22
- # Ruby (< 2.7.dev, >= 2.3), which is required by gem 'nokogiri (~> 1.10)', is not
23
- # available in the local ruby installation
24
- # include:
25
- # - ruby: '2.7'
26
- # experimental: true
27
- steps:
28
- - uses: actions/checkout@master
29
- - name: Use Ruby
30
- uses: actions/setup-ruby@v1
31
- with:
32
- ruby-version: ${{ matrix.ruby }}
33
- - name: Update gems
34
- shell: pwsh
35
- run: |
36
- gem install bundler
37
- bundle config --local path vendor/bundle
38
- bundle install --jobs 4 --retry 3
39
- - name: Run specs
40
- run: |
41
- bundle exec rake
data/.gitignore DELETED
@@ -1,12 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- # rspec failure tracking
11
- .rspec_status
12
- Gemfile.lock
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
data/CODE_OF_CONDUCT.md DELETED
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at ronald.tse@ribose.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [https://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: https://contributor-covenant.org
74
- [version]: https://contributor-covenant.org/version/1/4/
data/Makefile DELETED
@@ -1,2 +0,0 @@
1
- fix-lint-staged:
2
- git status --short | egrep '^(A|M)' | awk '{ print $$2}' | grep -v db/schema.rb | xargs bundle exec rubocop -a
data/bin/console DELETED
@@ -1,15 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # frozen_string_literal: true
3
-
4
- require "bundler/setup"
5
- require "lutaml/xmi"
6
-
7
- # You can add fixtures and/or initialization code here to make experimenting
8
- # with your gem easier. You can also use a different console, if you like.
9
-
10
- # (If you use this, don't forget to add pry to your Gemfile!)
11
- # require "pry"
12
- # Pry.start
13
-
14
- require "irb"
15
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here