ant-design-rails 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +19 -0
- data/Rakefile +4 -0
- data/exe/antd +6 -0
- data/hola.gemspec +35 -0
- data/lib/ant/design/rails/version.rb +9 -0
- data/lib/ant/design/rails.rb +16 -0
- metadata +55 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2439845d459b04b101663a12394c4b0478e97c5d5d3d173fbcd9611a73b6b682
|
4
|
+
data.tar.gz: 01dc6b29ab80d667af27a245e799b599af8f2bb2bd8cf2a02b72046a0e24ffab
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5f2bc22a19971e08cfaaded469537e6ee0a5deb4f42559634170d3050e32ee370f750e0fa91fd984453acd83c210cde8aa027da33861832b1714a826a3200301
|
7
|
+
data.tar.gz: f7fd108207d3efbb45df905d6fdffb756f89950e8a3e41a6194a105189eaf6056e40ce45c4039f33a6883f3e49863566862e4a43e8292baddb7dc11c307227fc
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
data/Rakefile
ADDED
data/exe/antd
ADDED
data/hola.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/ant/design/rails/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "ant-design-rails"
|
7
|
+
spec.version = Ant::Design::Rails::VERSION.dup
|
8
|
+
spec.authors = ["Minqi Pan"]
|
9
|
+
spec.email = %q{pmq2001@gmail.com}
|
10
|
+
spec.summary = %q{Ant Design on Rails: pairing world's best backend framework with the best frontend framework, without wrapping everything in API!}
|
11
|
+
spec.description = %q{Ant Design on Rails: pairing world's best backend framework with the best frontend framework, without wrapping everything in API!}
|
12
|
+
spec.homepage = %q{https://github.com/pmq20/ant-design-rails}
|
13
|
+
spec.metadata = {
|
14
|
+
"homepage_uri" => "https://ant-design-rails.minqi-pan.com/api/welcome",
|
15
|
+
"source_code_uri" => "https://github.com/pmq20/ant-design-rails",
|
16
|
+
"bug_tracker_uri" => "https://github.com/pmq20/ant-design-rails/issues",
|
17
|
+
"wiki_uri" => "https://github.com/pmq20/ant-design-rails/wiki"
|
18
|
+
}
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
spec.licenses = ["MIT"]
|
21
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
22
|
+
spec.bindir = "exe"
|
23
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
24
|
+
spec.files = Dir.chdir(__dir__) do
|
25
|
+
`git ls-files -z`.split("\x0").reject do |f|
|
26
|
+
(f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
# Uncomment to register a new dependency of your gem
|
31
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
32
|
+
|
33
|
+
# For more information and examples about making a new gem, check out our
|
34
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
35
|
+
end
|
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: ant-design-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Minqi Pan
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-01-27 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: 'Ant Design on Rails: pairing world''s best backend framework with the
|
14
|
+
best frontend framework, without wrapping everything in API!'
|
15
|
+
email: pmq2001@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- Gemfile
|
21
|
+
- Gemfile.lock
|
22
|
+
- Rakefile
|
23
|
+
- exe/antd
|
24
|
+
- hola.gemspec
|
25
|
+
- lib/ant/design/rails.rb
|
26
|
+
- lib/ant/design/rails/version.rb
|
27
|
+
homepage: https://github.com/pmq20/ant-design-rails
|
28
|
+
licenses:
|
29
|
+
- MIT
|
30
|
+
metadata:
|
31
|
+
homepage_uri: https://ant-design-rails.minqi-pan.com/api/welcome
|
32
|
+
source_code_uri: https://github.com/pmq20/ant-design-rails
|
33
|
+
bug_tracker_uri: https://github.com/pmq20/ant-design-rails/issues
|
34
|
+
wiki_uri: https://github.com/pmq20/ant-design-rails/wiki
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
requirements: []
|
50
|
+
rubygems_version: 3.4.1
|
51
|
+
signing_key:
|
52
|
+
specification_version: 4
|
53
|
+
summary: 'Ant Design on Rails: pairing world''s best backend framework with the best
|
54
|
+
frontend framework, without wrapping everything in API!'
|
55
|
+
test_files: []
|