cupido-api-core 5.9999.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: 246e81eea49b959d4c47fb95921e6fbfd49bee0dae426459fc315a2a426b6827
4
+ data.tar.gz: fcd0c2e6512f43061b562f99d051a395cdcedbc501df9bc1067aebd928c87a42
5
+ SHA512:
6
+ metadata.gz: f5d0f667ed6d77582f177312a1ee42909bc1893385a4d127b55b3568fa02318aa49eb8e94430b1f6ed09d1c8d2011d048651f2fb4fd61f8e5d26afdd54959385
7
+ data.tar.gz: 7e0a5302e4c7545a3937ae339fc2640fca1aa71d66d1c2bb7c7bebed41af004458cc0e566c6de586a282ce09eecc4ce31153c4b1489e957bdb5a1d9a0e057b83
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Cupido::Api::Core
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/cupido/api/core`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ 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.
26
+
27
+ 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 the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/cupido-api-core.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/cupido/api/core/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "cupido-api-core"
7
+ spec.version = Cupido::Api::Core::VERSION
8
+ spec.authors = ["Jamie Schembri"]
9
+ spec.email = ["jamie.schembri@nedap.com"]
10
+
11
+ spec.summary = "Placeholder gem for cupido-api-core"
12
+ spec.homepage = "https://github.com/nedap/cupido-placeholder-gems"
13
+ spec.required_ruby_version = ">= 2.6.0"
14
+
15
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ spec.files = Dir.chdir(__dir__) do
22
+ `git ls-files -z`.split("\x0").reject do |f|
23
+ (File.expand_path(f) == __FILE__) ||
24
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
25
+ end
26
+ end
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+ spec.post_install_message = "You've pulled `cupido-api-core` from `rubygems.org`. You are probably doing something wrong. This will not work. Ask your co-workers for help."
31
+ end
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Cupido
4
+ module Api
5
+ module Core
6
+ VERSION = "5.9999.0"
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "core/version"
4
+
5
+ module Cupido
6
+ module Api
7
+ module Core
8
+ class Error < StandardError; end
9
+ # Your code goes here...
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,8 @@
1
+ module Cupido
2
+ module Api
3
+ module Core
4
+ VERSION: String
5
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
6
+ end
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cupido-api-core
3
+ version: !ruby/object:Gem::Version
4
+ version: 5.9999.0
5
+ platform: ruby
6
+ authors:
7
+ - Jamie Schembri
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-03-06 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - jamie.schembri@nedap.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - README.md
22
+ - Rakefile
23
+ - cupido-api-core.gemspec
24
+ - lib/cupido/api/core.rb
25
+ - lib/cupido/api/core/version.rb
26
+ - sig/cupido/api/core.rbs
27
+ homepage: https://github.com/nedap/cupido-placeholder-gems
28
+ licenses: []
29
+ metadata:
30
+ allowed_push_host: https://rubygems.org
31
+ homepage_uri: https://github.com/nedap/cupido-placeholder-gems
32
+ post_install_message: You've pulled `cupido-api-core` from `rubygems.org`. You are
33
+ probably doing something wrong. This will not work. Ask your co-workers for help.
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 2.6.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.5.4
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Placeholder gem for cupido-api-core
52
+ test_files: []