safari 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d318effc04e39545d4d52777632942b92c54d15f93a01f45684fa3ef1bfdb641
4
+ data.tar.gz: 10e207a94a005fcf22b65503514e62c97795b41426c32f51f98702770b6e6cba
5
+ SHA512:
6
+ metadata.gz: df926e5ee39b904b2c1df73a796e5fbb0388507e10731f8cdf90c4f6d4220f3d8fe5a1132d7d37dc2d0c02be843d149c61715e208c18b2faff45147394677ff4
7
+ data.tar.gz: a4a320a103d83644d01a63879d833a32b655c7701b73077d857d0342f23323feb80bb58ae9a4a4a24df60e7646f9271e391fecfa885fc33bde670b408ffdd0c3
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,13 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
data/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Safari - The Rails CMS!
2
+
3
+ ## Contributing
4
+
5
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mpatsia/safari.
6
+
data/Rakefile ADDED
@@ -0,0 +1,12 @@
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
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Safari
4
+ VERSION = "0.1.0"
5
+ end
data/lib/safari.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "safari/version"
4
+
5
+ module Safari
6
+ class Error < StandardError; end
7
+ puts "Welcome to Safari CMS"
8
+ end
data/safari.gemspec ADDED
@@ -0,0 +1,37 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/safari/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "safari"
7
+ spec.version = Safari::VERSION
8
+ spec.authors = ["RB"]
9
+ spec.email = ["ab@hyperscale.gr"]
10
+ spec.version = "0.0.1"
11
+ spec.summary = "The Rails CMS!."
12
+ spec.homepage = "https://github.com/mpatsia/safari"
13
+ spec.required_ruby_version = ">= 3.0.0"
14
+
15
+ # spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"
16
+
17
+ spec.metadata["homepage_uri"] = spec.homepage
18
+ spec.metadata["https://github.com/mpatsia/safari"]
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(__dir__) do
23
+ `git ls-files -z`.split("\x0").reject do |f|
24
+ (File.expand_path(f) == __FILE__) ||
25
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .circleci appveyor Gemfile])
26
+ end
27
+ end
28
+ spec.bindir = "exe"
29
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
+ spec.require_paths = ["lib"]
31
+
32
+ # Uncomment to register a new dependency of your gem
33
+ # spec.add_dependency "example-gem", "~> 1.0"
34
+
35
+ # For more information and examples about making a new gem, check out our
36
+ # guide at: https://bundler.io/guides/creating_gem.html
37
+ end
data/sig/safari.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Safari
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: safari
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - RB
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-10-19 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description:
14
+ email:
15
+ - ab@hyperscale.gr
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - ".rubocop.yml"
22
+ - README.md
23
+ - Rakefile
24
+ - lib/safari.rb
25
+ - lib/safari/version.rb
26
+ - safari.gemspec
27
+ - sig/safari.rbs
28
+ homepage: https://github.com/mpatsia/safari
29
+ licenses: []
30
+ metadata:
31
+ homepage_uri: https://github.com/mpatsia/safari
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.0
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.4.20
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: The Rails CMS!.
51
+ test_files: []