rails_designer 0.1.0

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: b3e91f72a1955d64e023395bf85e958664803cbbf8223a676096ed54e311b505
4
+ data.tar.gz: 0bb2c45af7da71baef02d4fdda37d7ee1ec444064422e1247453ada77db7893f
5
+ SHA512:
6
+ metadata.gz: 23620e2e731aca040433fe75bfba023bfb35697f13a32d92574ae78b3c891e6ebe09bc6ffe80bca6313ce9319710fdfe254a926affaecb676631341453f205cd
7
+ data.tar.gz: 0c1677f1eeea4241213a554b7d535156fc15211c51f8bfb1da608dd23c7442ea7d976d1996bad32c5daf2529f7f5cb3a2edd723ece62bd9bf7703adc4997ec35
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/standardrb/standard
3
+ ruby_version: 2.6
data/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Rails Designer
2
+
3
+ Check out [Rails Designer](https://railsdesigner.com/) on how to get the actual Rails Designer gem.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "minitest/test_task"
5
+
6
+ Minitest::TestTask.create
7
+
8
+ require "standard/rake"
9
+
10
+ task default: %i[test standard]
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module RailsDesigner
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "rails_designer/version"
4
+
5
+ module RailsDesigner
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/rails_designer/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "rails_designer"
7
+ spec.version = RailsDesigner::VERSION
8
+ spec.authors = ["Rails Designer"]
9
+ spec.email = ["support@railsdesigner.com"]
10
+
11
+ spec.summary = "Check out https://railsdesigner.com on how to get the actual Rails Designer gem"
12
+ spec.description = "Check out https://railsdesigner.com on how to get the actual Rails Designer gem"
13
+ spec.homepage = "http://railsdesigner.com"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.6.0"
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 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
+
31
+ spec.post_install_message = "⚠️ Please check out https://railsdesigner.com/ on how to get the actual Rails Designer gem."
32
+
33
+ # Uncomment to register a new dependency of your gem
34
+ # spec.add_dependency "example-gem", "~> 1.0"
35
+
36
+ # For more information and examples about making a new gem, check out our
37
+ # guide at: https://bundler.io/guides/creating_gem.html
38
+ end
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails_designer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rails Designer
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-12-16 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Check out https://railsdesigner.com on how to get the actual Rails Designer
14
+ gem
15
+ email:
16
+ - support@railsdesigner.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - ".standard.yml"
22
+ - README.md
23
+ - Rakefile
24
+ - lib/rails_designer.rb
25
+ - lib/rails_designer/version.rb
26
+ - rails_designer.gemspec
27
+ homepage: http://railsdesigner.com
28
+ licenses:
29
+ - MIT
30
+ metadata:
31
+ homepage_uri: http://railsdesigner.com
32
+ post_install_message: "⚠️ Please check out https://railsdesigner.com/ on how to get
33
+ the actual Rails Designer gem."
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.1
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: Check out https://railsdesigner.com on how to get the actual Rails Designer
52
+ gem
53
+ test_files: []