drawio_dsl 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 6af520857fe09be7e990c254d75364ae3c4f145e77beb8aaf1850c7e99954666
4
+ data.tar.gz: ed9f9debe4437765f426cb873cc226eb8721a89b2be257a30345122d59a25217
5
+ SHA512:
6
+ metadata.gz: 13a320ccac8daefe68036dafe8982451e28cb1ba56dd0be1b22694106fee82aa4625e8eee214a8a0cecdff476a5b2b56b90b45a6bbf8df82c1a315d36ea18a57
7
+ data.tar.gz: 912a578341300d29b610fb053b5d4d98a161e7be9c1decd65b72af0398305a216d785245572b020b7463ad708ed74d6f7ddf936708175337eb6834f92611dcd8
data/.builders/_.rb ADDED
@@ -0,0 +1 @@
1
+ # require_relative './path/here'
data/.builders/boot.rb ADDED
@@ -0,0 +1,65 @@
1
+ # Boot Sequence
2
+
3
+ include KLog::Logging
4
+
5
+ CONFIG_KEY = :drawio_dsl
6
+
7
+ log.kv 'working folder', Dir.pwd
8
+
9
+ Handlebars::Helpers.configure do |config|
10
+ config.helper_config_file = File.join(Gem.loaded_specs['handlebars-helpers'].full_gem_path, '.handlebars_helpers.json')
11
+ config.string_formatter_config_file = File.join(Gem.loaded_specs['handlebars-helpers'].full_gem_path, '.handlebars_string_formatters.json')
12
+ end
13
+
14
+ def camel
15
+ require 'handlebars/helpers/string_formatting/camel'
16
+ Handlebars::Helpers::StringFormatting::Camel.new
17
+ end
18
+
19
+ def titleize
20
+ require 'handlebars/helpers/string_formatting/titleize'
21
+ Handlebars::Helpers::StringFormatting::Titleize.new
22
+ end
23
+
24
+ def pluralize
25
+ require 'handlebars/helpers/inflection/pluralize'
26
+ Handlebars::Helpers::Inflection::Pluralize.new
27
+ end
28
+
29
+ def singularize
30
+ require 'handlebars/helpers/inflection/singularize'
31
+ Handlebars::Helpers::Inflection::Singularize.new
32
+ end
33
+
34
+ def dasherize
35
+ require 'handlebars/helpers/string_formatting/dasherize'
36
+ Handlebars::Helpers::StringFormatting::Dasherize.new
37
+ end
38
+
39
+ def k_builder
40
+ @k_builder ||= KBuilder::BaseBuilder.init(KConfig.configuration(CONFIG_KEY))
41
+ end
42
+
43
+ KConfig.configure(CONFIG_KEY) do |config|
44
+ builder_folder = Dir.pwd
45
+ base_folder = File.expand_path('../', builder_folder)
46
+ global_template = File.expand_path('~/dev/kgems/k_templates/templates')
47
+
48
+ config.template_folders.add(:global_template , global_template)
49
+ config.template_folders.add(:template , File.expand_path('.templates', Dir.pwd))
50
+
51
+ config.target_folders.add(:app , base_folder)
52
+ config.target_folders.add(:builder , builder_folder)
53
+ end
54
+
55
+ KConfig.configuration(CONFIG_KEY).debug
56
+
57
+ area = KManager.add_area(CONFIG_KEY)
58
+ resource_manager = area.resource_manager
59
+ resource_manager
60
+ .fileset
61
+ .glob('*.rb', exclude: ['boot.rb'])
62
+ .glob('generators/**/*.rb')
63
+ resource_manager.add_resources
64
+
65
+ KManager.boot
@@ -0,0 +1,130 @@
1
+ KManager.action :bootstrap do
2
+ action do
3
+ application_name = :drawio_dsl
4
+ director = KDirector::Dsls::RubyGemDsl
5
+ .init(k_builder,
6
+ on_exist: :skip, # %i[skip write compare]
7
+ on_action: :queue # %i[queue execute]
8
+ )
9
+ .data(
10
+ ruby_version: '2.7',
11
+ application: application_name,
12
+ application_description: 'DrawIO DSL can build DrawIO diagrams using a Domain Specific Language',
13
+ application_lib_path: application_name.to_s,
14
+ application_lib_namespace: 'DrawioDsl',
15
+ namespaces: ['DrawioDsl'],
16
+ author: 'David Cruwys',
17
+ author_email: 'david@ideasmen.com.au',
18
+ initial_semver: '0.0.1',
19
+ main_story: 'As a Developer, I to use natural language to build diagrams quickly, so that I can create visual documentation',
20
+ copyright_date: '2022',
21
+ website: 'http://appydave.com/gems/drawio_dsl'
22
+ )
23
+ .github(
24
+ active: false,
25
+ repo_name: application_name
26
+ ) do
27
+ create_repository
28
+ # delete_repository
29
+ # list_repositories
30
+ open_repository
31
+ # run_command('git init')
32
+ end
33
+ .blueprint(
34
+ active: false,
35
+ name: :bin_hook,
36
+ description: 'initialize repository',
37
+ on_exist: :write) do
38
+
39
+ cd(:app)
40
+
41
+ run_template_script('bin/runonce/git-setup.sh', dom: dom)
42
+
43
+ add('.githooks/commit-msg').run_command('chmod +x .githooks/commit-msg')
44
+ add('.githooks/pre-commit').run_command('chmod +x .githooks/pre-commit')
45
+
46
+ add('.gitignore')
47
+
48
+ run_command('git config core.hooksPath .githooks') # enable sharable githooks (developer needs to turn this on before editing rep)
49
+
50
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
51
+ run_command("gh repo edit -d \"#{dom[:application_description]}\"")
52
+ end
53
+ .package_json(
54
+ active: false,
55
+ name: :package_json,
56
+ description: 'Set up the package.json file for semantic versioning'
57
+ ) do
58
+ self
59
+ .add('package.json', dom: dom)
60
+ .play_actions
61
+
62
+ self
63
+ .add_script('release', 'semantic-release')
64
+ .sort
65
+ .development
66
+ .npm_add_group('semver-ruby')
67
+
68
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
69
+ end
70
+ .blueprint(
71
+ active: false,
72
+ name: :opinionated,
73
+ description: 'opinionated GEM files',
74
+ on_exist: :write) do
75
+
76
+ cd(:app)
77
+
78
+ add('bin/setup')
79
+ add('bin/console')
80
+
81
+ add("lib/#{typed_dom.application}.rb" , template_file: 'lib/applet_name.rb' , dom: dom)
82
+ add("lib/#{typed_dom.application}/version.rb" , template_file: 'lib/applet_name/version.rb' , dom: dom)
83
+
84
+ add('spec/spec_helper.rb')
85
+ add("spec/#{typed_dom.application}_spec.rb" , template_file: 'spec/applet_name_spec.rb', dom: dom)
86
+
87
+ add("#{typed_dom.application}.gemspec" , template_file: 'applet_name.gemspec', dom: dom)
88
+ add('Gemfile', dom: dom)
89
+ add('Guardfile', dom: dom)
90
+ add('Rakefile', dom: dom)
91
+ add('.rspec', dom: dom)
92
+ add('.rubocop.yml', dom: dom)
93
+ add('README.md', dom: dom)
94
+ add('CODE_OF_CONDUCT.md', dom: dom)
95
+ add('LICENSE.txt', dom: dom)
96
+
97
+ run_command("rubocop -a")
98
+
99
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
100
+ end
101
+ .blueprint(
102
+ active: false,
103
+ name: :ci_cd,
104
+ description: 'github actions (CI/CD)',
105
+ on_exist: :write) do
106
+
107
+ cd(:app)
108
+
109
+ run_command("gh secret set SLACK_WEBHOOK --body \"$SLACK_REPO_WEBHOOK\"")
110
+ run_command("gh secret set GEM_HOST_API_KEY --body \"$GEM_HOST_API_KEY\"")
111
+
112
+ add('.github/workflows/main.yml')
113
+ add('.releaserc.json')
114
+
115
+ run_command("git add .; git commit -m 'chore: #{self.options.description.downcase}'; git push")
116
+ end
117
+
118
+ director.play_actions
119
+ # director.builder.logit
120
+ end
121
+ end
122
+
123
+ KManager.opts.app_name = 'drawio_dsl'
124
+ KManager.opts.sleep = 2
125
+ KManager.opts.reboot_on_kill = 0
126
+ KManager.opts.reboot_sleep = 4
127
+ KManager.opts.exception_style = :short
128
+ KManager.opts.show.time_taken = true
129
+ KManager.opts.show.finished = true
130
+ KManager.opts.show.finished_message = 'FINISHED :)'
@@ -0,0 +1,21 @@
1
+ KManager.action :bootstrap do
2
+ action do
3
+ director = DrawioDsl::Drawio
4
+ .init(k_builder,
5
+ on_exist: :skip, # %i[skip write compare]
6
+ on_action: :queue # %i[queue execute]
7
+ )
8
+
9
+ File.write('spec/.samples/drawio/10-layout.xml', director.build)
10
+ File.write('spec/.samples/drawio/10-layout.drawio', director.build)
11
+ end
12
+ end
13
+
14
+ KManager.opts.app_name = 'drawio_dsl'
15
+ KManager.opts.sleep = 2
16
+ KManager.opts.reboot_on_kill = 0
17
+ KManager.opts.reboot_sleep = 4
18
+ KManager.opts.exception_style = :short
19
+ KManager.opts.show.time_taken = true
20
+ KManager.opts.show.finished = true
21
+ KManager.opts.show.finished_message = 'FINISHED :)'
data/.releaserc.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "branches": [
3
+ "main"
4
+ ],
5
+ "plugins": [
6
+ "@semantic-release/commit-analyzer",
7
+ "@semantic-release/release-notes-generator",
8
+ [
9
+ "@semantic-release/npm",
10
+ {
11
+ "npmPublish": false
12
+ }
13
+ ],
14
+ [
15
+ "@klueless-js/semantic-release-rubygem",
16
+ {
17
+ "gemPublish": true
18
+ }
19
+ ],
20
+ [
21
+ "@semantic-release/changelog",
22
+ {
23
+ "changelogFile": "CHANGELOG.md",
24
+ "changelogFileTitle": "Drawio Dsl Changelog"
25
+ }
26
+ ],
27
+ [
28
+ "@semantic-release/git",
29
+ {
30
+ "assets": [
31
+ "lib/drawio_dsl/version.rb",
32
+ "CHANGELOG.md"
33
+ ],
34
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
35
+ }
36
+ ],
37
+ "@semantic-release/github"
38
+ ],
39
+ "repositoryUrl": "git@github.com:klueless-io/drawio_dsl.git"
40
+ }
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,93 @@
1
+ inherit_mode:
2
+ merge:
3
+ - Exclude # see: https://stackoverflow.com/a/70818366/473923
4
+ - AllowedNames
5
+ AllCops:
6
+ TargetRubyVersion: 2.7
7
+ DisplayCopNames: true
8
+ ExtraDetails: true
9
+ NewCops: enable
10
+ Exclude:
11
+ - ".builders/**/*"
12
+ - "spec/samples/**/*"
13
+
14
+ Metrics/BlockLength:
15
+ Exclude:
16
+ - "**/spec/**/*"
17
+ - "*.gemspec"
18
+ IgnoredMethods:
19
+ - configure
20
+ - context
21
+ - define
22
+ - describe
23
+ - draw
24
+ - factory
25
+ - feature
26
+ - guard
27
+ - included
28
+ - it
29
+ - let
30
+ - let!
31
+ - scenario
32
+ - setup
33
+ - shared_context
34
+ - shared_examples
35
+ - shared_examples_for
36
+ - transaction
37
+
38
+ Metrics/MethodLength:
39
+ Max: 25
40
+
41
+ Layout/LineLength:
42
+ Max: 200
43
+ # Ignores annotate output
44
+ IgnoredPatterns: ['\A# \*\*']
45
+ IgnoreCopDirectives: true
46
+
47
+ Lint/UnusedMethodArgument:
48
+ AllowUnusedKeywordArguments: true
49
+
50
+ Style/BlockComments:
51
+ Enabled: false
52
+ Include:
53
+ - "**/spec/*"
54
+
55
+ # My Preferences - Start
56
+ Metrics/ClassLength:
57
+ Enabled: false
58
+ Metrics/ModuleLength:
59
+ Exclude:
60
+ - "**/spec/**/*"
61
+ Naming/MemoizedInstanceVariableName:
62
+ Enabled: false
63
+ Naming/AccessorMethodName:
64
+ Enabled: false
65
+ Naming/VariableNumber:
66
+ Enabled: false
67
+ Naming/MethodParameterName:
68
+ AllowedNames:
69
+ - as
70
+ Style/EmptyMethod:
71
+ Exclude:
72
+ - "**/spec/**/*"
73
+ Style/MultilineBlockChain:
74
+ Exclude:
75
+ - "**/spec/**/*"
76
+ Metrics/ParameterLists:
77
+ Exclude:
78
+ - "**/spec/**/*"
79
+ Layout/EmptyLineBetweenDefs:
80
+ Exclude:
81
+ - "**/spec/**/*"
82
+
83
+ Lint/AmbiguousBlockAssociation:
84
+ Exclude:
85
+ - "**/spec/**/*"
86
+
87
+ Style/AccessorGrouping:
88
+ Enabled: false
89
+
90
+ Layout/SpaceBeforeComma:
91
+ Enabled: false
92
+ # My Preferences - End
93
+
@@ -0,0 +1,3 @@
1
+ {
2
+ "liveServer.settings.port": 5501
3
+ }
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2022-02-25
4
+
5
+ - Initial release
@@ -0,0 +1,74 @@
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 david.cruwys@bugcrowd.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 [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,44 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ gemspec
6
+
7
+ group :development, :test do
8
+ gem 'guard-bundler'
9
+ gem 'guard-rspec'
10
+ gem 'guard-rubocop'
11
+ gem 'rake', '~> 12.0'
12
+ gem 'rake-compiler', require: false
13
+ gem 'rspec', '~> 3.0'
14
+ gem 'rubocop'
15
+ gem 'rubocop-rake', require: false
16
+ gem 'rubocop-rspec', require: false
17
+ end
18
+
19
+ # # If local dependency
20
+ # if ENV['KLUE_LOCAL_GEMS']&.to_s&.downcase == 'true'
21
+ # group :development, :test do
22
+ # puts 'Using Local GEMs'
23
+ # gem 'handlebars-helpers' , path: '../handlebars-helpers'
24
+ # gem 'k_builder' , path: '../k_builder'
25
+ # gem 'k_builder-dotnet' , path: '../k_builder-dotnet'
26
+ # # gem 'k_builder-package_json' , path: '../k_builder-package_json'
27
+ # gem 'k_builder-webpack5' , path: '../k_builder-webpack5'
28
+ # gem 'k_config' , path: '../k_config'
29
+ # gem 'k_decor' , path: '../k_decor'
30
+ # gem 'k_director' , path: '../k_director'
31
+ # gem 'k_doc' , path: '../k_doc'
32
+ # gem 'k_domain' , path: '../k_domain'
33
+ # gem 'k_ext-github' , path: '../k_ext-github'
34
+ # gem 'k_fileset' , path: '../k_fileset'
35
+ # gem 'k_log' , path: '../k_log'
36
+ # gem 'k_type' , path: '../k_type'
37
+ # gem 'k_util' , path: '../k_util'
38
+ # gem 'peeky' , path: '../peeky'
39
+ # end
40
+ # end
41
+
42
+ group :test do
43
+ gem 'simplecov', require: false
44
+ end
data/Guardfile ADDED
@@ -0,0 +1,30 @@
1
+ # frozen_string_literal: true
2
+
3
+ guard :bundler, cmd: 'bundle install' do
4
+ watch('Gemfile')
5
+ watch('.gemspec')
6
+ end
7
+
8
+ group :green_pass_then_cop, halt_on_fail: true do
9
+ guard :rspec, cmd: 'bundle exec rspec -f doc' do
10
+ require 'guard/rspec/dsl'
11
+ dsl = Guard::RSpec::Dsl.new(self)
12
+
13
+ # RSpec files
14
+ rspec = dsl.rspec
15
+ watch(rspec.spec_helper) { rspec.spec_dir }
16
+ watch(rspec.spec_support) { rspec.spec_dir }
17
+ watch(rspec.spec_files)
18
+
19
+ # Ruby files
20
+ ruby = dsl.ruby
21
+ dsl.watch_spec_files_for(ruby.lib_files)
22
+ watch(%r{^lib//(.+)\.rb$}) { |m| "spec/unit/#{m[1]}_spec.rb" }
23
+ watch(%r{^lib//commands/(.+)\.rb$}) { |m| "spec/unit/commands/#{m[1]}_spec.rb" }
24
+ end
25
+
26
+ guard :rubocop, all_on_start: false, cli: ['--format', 'clang'] do
27
+ watch(/{.+\.rb$/)
28
+ watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
29
+ end
30
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 David Cruwys
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,82 @@
1
+ # Drawio Dsl
2
+
3
+ > DrawIO DSL can build DrawIO diagrams using a Domain Specific Language
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'drawio_dsl'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ ```bash
16
+ bundle install
17
+ ```
18
+
19
+ Or install it yourself as:
20
+
21
+ ```bash
22
+ gem install drawio_dsl
23
+ ```
24
+
25
+ ## Stories
26
+
27
+ ### Main Story
28
+
29
+ As a Developer, I to use natural language to build diagrams quickly, so that I can create visual documentation
30
+
31
+ See all [stories](./STORIES.md)
32
+
33
+
34
+ ## Usage
35
+
36
+ See all [usage examples](./USAGE.md)
37
+
38
+
39
+
40
+ ## Development
41
+
42
+ Checkout the repo
43
+
44
+ ```bash
45
+ git clone
46
+ ```
47
+
48
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
49
+
50
+ You can also run `bin/console` for an interactive prompt that will allow you to experiment.
51
+
52
+ ```bash
53
+ bin/console
54
+
55
+ Aaa::Bbb::Program.execute()
56
+ # => ""
57
+ ```
58
+
59
+ `drawio_dsl` is setup with Guard, run `guard`, this will watch development file changes and run tests automatically, if successful, it will then run rubocop for style quality.
60
+
61
+ To release a new version, update the version number in `version.rb`, build the gem and push the `.gem` file to [rubygems.org](https://rubygems.org).
62
+
63
+ ```bash
64
+ rake publish
65
+ rake clean
66
+ ```
67
+
68
+ ## Contributing
69
+
70
+ Bug reports and pull requests are welcome on GitHub at https://github.com/klueless-io/drawio_dsl. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
71
+
72
+ ## License
73
+
74
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
75
+
76
+ ## Code of Conduct
77
+
78
+ Everyone interacting in the Drawio Dsl project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/klueless-io/drawio_dsl/blob/master/CODE_OF_CONDUCT.md).
79
+
80
+ ## Copyright
81
+
82
+ Copyright (c) David Cruwys. See [MIT License](LICENSE.txt) for further details.
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ # source: https://stephenagrice.medium.com/making-a-command-line-ruby-gem-write-build-and-push-aec24c6c49eb
4
+
5
+ GEM_NAME = 'drawio_dsl'
6
+
7
+ require 'bundler/gem_tasks'
8
+ require 'rspec/core/rake_task'
9
+ require 'drawio_dsl/version'
10
+
11
+ RSpec::Core::RakeTask.new(:spec)
12
+
13
+ require 'rake/extensiontask'
14
+
15
+ desc 'Compile all the extensions'
16
+ task build: :compile
17
+
18
+ Rake::ExtensionTask.new('drawio_dsl') do |ext|
19
+ ext.lib_dir = 'lib/drawio_dsl'
20
+ end
21
+
22
+ desc 'Publish the gem to RubyGems.org'
23
+ task :publish do
24
+ version = DrawioDsl::VERSION
25
+ system 'gem build'
26
+ system "gem push #{GEM_NAME}-#{version}.gem"
27
+ end
28
+
29
+ desc 'Remove old *.gem files'
30
+ task :clean do
31
+ system 'rm *.gem'
32
+ end
33
+
34
+ task default: %i[clobber compile spec]
data/bin/console ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ # frozen_string_literal: true
4
+
5
+ require 'bundler/setup'
6
+ require 'drawio_dsl'
7
+
8
+ # You can add fixtures and/or initialization code here to make experimenting
9
+ # with your gem easier. You can also use a different console, if you like.
10
+
11
+ # (If you use this, don't forget to add pry to your Gemfile!)
12
+ # require 'pry'
13
+ # Pry.start
14
+
15
+ require 'irb'
16
+ IRB.start(__FILE__)