super 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +40 -0
- data/README.md +28 -0
- data/Rakefile +32 -0
- data/app/assets/config/super_manifest.js +0 -0
- data/config/routes.rb +2 -0
- data/lib/super.rb +5 -0
- data/lib/super/engine.rb +4 -0
- data/lib/super/version.rb +3 -0
- data/lib/tasks/super_tasks.rake +4 -0
- metadata +81 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 8fab4db6e7d173cf9cbc0e0e75ca591b8713701420074507aafa20399725e644
|
4
|
+
data.tar.gz: 5a5dcc7ab979a1b97c36cb5131e39dad148fd2777b745829875622430429e6b3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 58a086effc3234a454f7bbf06ee8560dd263bd8fa7b905a913e09181fd485debf6cbc9f23660a3a1d0204db1ee2db1439777f76009bca54526e4d19233b5773d
|
7
|
+
data.tar.gz: 02301b7074c541457cd396547870f1fd92bf8c83ca55bc571b801c8c0f50ee073f8691f265dbaf98df1ad3398cb95d5dec0f45a1ced7c450d0bf3df821d065af
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
Fair Source License, version 0.9
|
2
|
+
|
3
|
+
Copyright (c) 2019 Zach Ahn
|
4
|
+
|
5
|
+
Licensor: Zachary Ahn
|
6
|
+
|
7
|
+
Software: Super 0.0.0
|
8
|
+
|
9
|
+
Use Limitation: 5 users
|
10
|
+
|
11
|
+
License Grant. Licensor hereby grants to each recipient of the Software ("you")
|
12
|
+
a non-exclusive, non-transferable, royalty-free and fully-paid-up license,
|
13
|
+
under all of the Licensor’s copyright and patent rights, to use, copy,
|
14
|
+
distribute, prepare derivative works of, publicly perform and display the
|
15
|
+
Software, subject to the Use Limitation and the conditions set forth below.
|
16
|
+
|
17
|
+
Use Limitation. The license granted above allows use by up to the number of
|
18
|
+
users per entity set forth above (the "Use Limitation"). For determining the
|
19
|
+
number of users, "you" includes all affiliates, meaning legal entities
|
20
|
+
controlling, controlled by, or under common control with you. If you exceed the
|
21
|
+
Use Limitation, your use is subject to payment of Licensor’s then-current list
|
22
|
+
price for licenses.
|
23
|
+
|
24
|
+
Conditions. Redistribution in source code or other forms must include a copy of
|
25
|
+
this license document to be provided in a reasonable manner. Any redistribution
|
26
|
+
of the Software is only allowed subject to this license.
|
27
|
+
|
28
|
+
Trademarks. This license does not grant you any right in the trademarks,
|
29
|
+
service marks, brand names or logos of Licensor.
|
30
|
+
|
31
|
+
DISCLAIMER. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OR CONDITION,
|
32
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY,
|
33
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. LICENSORS HEREBY DISCLAIM
|
34
|
+
ALL LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
35
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE.
|
36
|
+
|
37
|
+
Termination. If you violate the terms of this license, your rights will
|
38
|
+
terminate automatically and will not be reinstated without the prior written
|
39
|
+
consent of Licensor. Any such termination will not affect the right of others
|
40
|
+
who may have received copies of the Software from you.
|
data/README.md
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
# Super
|
2
|
+
Short description and motivation.
|
3
|
+
|
4
|
+
## Usage
|
5
|
+
How to use my plugin.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
Add this line to your application's Gemfile:
|
9
|
+
|
10
|
+
```ruby
|
11
|
+
gem 'super'
|
12
|
+
```
|
13
|
+
|
14
|
+
And then execute:
|
15
|
+
```bash
|
16
|
+
$ bundle
|
17
|
+
```
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
```bash
|
21
|
+
$ gem install super
|
22
|
+
```
|
23
|
+
|
24
|
+
## Contributing
|
25
|
+
Contribution directions go here.
|
26
|
+
|
27
|
+
## License
|
28
|
+
The gem is available under the terms of the [Fair Source 5 License](https://fair.io).
|
data/Rakefile
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
begin
|
2
|
+
require 'bundler/setup'
|
3
|
+
rescue LoadError
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
5
|
+
end
|
6
|
+
|
7
|
+
require 'rdoc/task'
|
8
|
+
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
11
|
+
rdoc.title = 'Super'
|
12
|
+
rdoc.options << '--line-numbers'
|
13
|
+
rdoc.rdoc_files.include('README.md')
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
15
|
+
end
|
16
|
+
|
17
|
+
APP_RAKEFILE = File.expand_path("test/dummy/Rakefile", __dir__)
|
18
|
+
load 'rails/tasks/engine.rake'
|
19
|
+
|
20
|
+
load 'rails/tasks/statistics.rake'
|
21
|
+
|
22
|
+
require 'bundler/gem_tasks'
|
23
|
+
|
24
|
+
require 'rake/testtask'
|
25
|
+
|
26
|
+
Rake::TestTask.new(:test) do |t|
|
27
|
+
t.libs << 'test'
|
28
|
+
t.pattern = 'test/**/*_test.rb'
|
29
|
+
t.verbose = false
|
30
|
+
end
|
31
|
+
|
32
|
+
task default: :test
|
File without changes
|
data/config/routes.rb
ADDED
data/lib/super.rb
ADDED
data/lib/super/engine.rb
ADDED
metadata
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: super
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Zach Ahn
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-05-12 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 5.2.2
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 5.2.2
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: sqlite3
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.3.6
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 1.3.6
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- engineering@zachahn.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- LICENSE.txt
|
49
|
+
- README.md
|
50
|
+
- Rakefile
|
51
|
+
- app/assets/config/super_manifest.js
|
52
|
+
- config/routes.rb
|
53
|
+
- lib/super.rb
|
54
|
+
- lib/super/engine.rb
|
55
|
+
- lib/super/version.rb
|
56
|
+
- lib/tasks/super_tasks.rake
|
57
|
+
homepage:
|
58
|
+
licenses:
|
59
|
+
- Fair Source 5
|
60
|
+
metadata: {}
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
|
+
requirements:
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: '0'
|
75
|
+
requirements: []
|
76
|
+
rubyforge_project:
|
77
|
+
rubygems_version: 2.7.6
|
78
|
+
signing_key:
|
79
|
+
specification_version: 4
|
80
|
+
summary: A simple, powerful, zero* dependency Rails admin framework
|
81
|
+
test_files: []
|