summoner-engine 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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +205 -0
- data/Rakefile +6 -0
- data/app/assets/images/summoner/favicon.ico +0 -0
- data/app/assets/stylesheets/summoner/application.css +15 -0
- data/app/controllers/summoner/application_controller.rb +7 -0
- data/app/controllers/summoner/features_controller.rb +40 -0
- data/app/controllers/summoner/overrides_controller.rb +64 -0
- data/app/helpers/summoner/application_helper.rb +4 -0
- data/app/jobs/summoner/application_job.rb +4 -0
- data/app/mailers/summoner/application_mailer.rb +6 -0
- data/app/models/summoner/application_record.rb +5 -0
- data/app/models/summoner/feature.rb +61 -0
- data/app/models/summoner/feature_override.rb +22 -0
- data/app/views/layouts/summoner/application.html.erb +139 -0
- data/app/views/summoner/features/edit.html.erb +38 -0
- data/app/views/summoner/features/index.html.erb +55 -0
- data/app/views/summoner/features/show.html.erb +120 -0
- data/app/views/summoner/overrides/edit.html.erb +37 -0
- data/config/routes.rb +7 -0
- data/lib/generators/summoner/install/install_generator.rb +53 -0
- data/lib/generators/summoner/install/templates/create_summoner_tables.rb.erb +28 -0
- data/lib/generators/summoner/install/templates/features.yml +26 -0
- data/lib/generators/summoner/install/templates/summoner.rb +10 -0
- data/lib/summoner/configuration.rb +20 -0
- data/lib/summoner/engine.rb +9 -0
- data/lib/summoner/entity.rb +49 -0
- data/lib/summoner/fetcher.rb +66 -0
- data/lib/summoner/loader.rb +0 -0
- data/lib/summoner/sync.rb +102 -0
- data/lib/summoner/version.rb +3 -0
- data/lib/summoner.rb +11 -0
- data/lib/tasks/summoner_tasks.rake +20 -0
- metadata +108 -0
metadata
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: summoner-engine
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Felipe Rodrigues
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: rails
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '6.1'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '6.1'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: rspec-rails
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
description: Summoner is a powerful Feature Toggle and Dynamic Configuration engine
|
|
41
|
+
for Ruby on Rails. It goes beyond simple booleans by offering Attribute-Based Access
|
|
42
|
+
Control (ABAC), strong typing, granular entity-specific overrides, YAML synchronization,
|
|
43
|
+
and an elegant built-in Web UI. Fully backed by a robust caching layer for high
|
|
44
|
+
performance.
|
|
45
|
+
email:
|
|
46
|
+
- feliperodrigsp@gmail.com
|
|
47
|
+
executables: []
|
|
48
|
+
extensions: []
|
|
49
|
+
extra_rdoc_files: []
|
|
50
|
+
files:
|
|
51
|
+
- MIT-LICENSE
|
|
52
|
+
- README.md
|
|
53
|
+
- Rakefile
|
|
54
|
+
- app/assets/images/summoner/favicon.ico
|
|
55
|
+
- app/assets/stylesheets/summoner/application.css
|
|
56
|
+
- app/controllers/summoner/application_controller.rb
|
|
57
|
+
- app/controllers/summoner/features_controller.rb
|
|
58
|
+
- app/controllers/summoner/overrides_controller.rb
|
|
59
|
+
- app/helpers/summoner/application_helper.rb
|
|
60
|
+
- app/jobs/summoner/application_job.rb
|
|
61
|
+
- app/mailers/summoner/application_mailer.rb
|
|
62
|
+
- app/models/summoner/application_record.rb
|
|
63
|
+
- app/models/summoner/feature.rb
|
|
64
|
+
- app/models/summoner/feature_override.rb
|
|
65
|
+
- app/views/layouts/summoner/application.html.erb
|
|
66
|
+
- app/views/summoner/features/edit.html.erb
|
|
67
|
+
- app/views/summoner/features/index.html.erb
|
|
68
|
+
- app/views/summoner/features/show.html.erb
|
|
69
|
+
- app/views/summoner/overrides/edit.html.erb
|
|
70
|
+
- config/routes.rb
|
|
71
|
+
- lib/generators/summoner/install/install_generator.rb
|
|
72
|
+
- lib/generators/summoner/install/templates/create_summoner_tables.rb.erb
|
|
73
|
+
- lib/generators/summoner/install/templates/features.yml
|
|
74
|
+
- lib/generators/summoner/install/templates/summoner.rb
|
|
75
|
+
- lib/summoner.rb
|
|
76
|
+
- lib/summoner/configuration.rb
|
|
77
|
+
- lib/summoner/engine.rb
|
|
78
|
+
- lib/summoner/entity.rb
|
|
79
|
+
- lib/summoner/fetcher.rb
|
|
80
|
+
- lib/summoner/loader.rb
|
|
81
|
+
- lib/summoner/sync.rb
|
|
82
|
+
- lib/summoner/version.rb
|
|
83
|
+
- lib/tasks/summoner_tasks.rake
|
|
84
|
+
homepage: https://github.com/feliperodrigs1/summoner
|
|
85
|
+
licenses:
|
|
86
|
+
- MIT
|
|
87
|
+
metadata:
|
|
88
|
+
homepage_uri: https://github.com/feliperodrigs1/summoner
|
|
89
|
+
source_code_uri: https://github.com/feliperodrigs1/summoner
|
|
90
|
+
changelog_uri: https://github.com/feliperodrigs1/summoner/blob/main/CHANGELOG.md
|
|
91
|
+
rdoc_options: []
|
|
92
|
+
require_paths:
|
|
93
|
+
- lib
|
|
94
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
|
+
requirements:
|
|
96
|
+
- - ">="
|
|
97
|
+
- !ruby/object:Gem::Version
|
|
98
|
+
version: 2.7.0
|
|
99
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
requirements: []
|
|
105
|
+
rubygems_version: 4.0.10
|
|
106
|
+
specification_version: 4
|
|
107
|
+
summary: Advanced Feature Toggle, Configuration, and ABAC engine for Rails.
|
|
108
|
+
test_files: []
|