alienor 0.1.2
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/.gitignore +9 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +49 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/Rakefile +10 -0
- data/alienor.gemspec +25 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/alienor.rb +12 -0
- data/lib/alienor/indentation.rb +24 -0
- data/lib/alienor/initializer.rb +30 -0
- data/lib/alienor/object.rb +116 -0
- data/lib/alienor/source.rb +28 -0
- data/lib/alienor/version.rb +3 -0
- metadata +102 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 85184abc16ee00cc2a3f30ac7c71738cd5f00857
|
4
|
+
data.tar.gz: dfce3547b035676cb1f0195d82b2ccaf8338b4bc
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6d750f85771ad62cfb19903f1f7867f43edf75b194003912a8584d415f988b6cdcb1cb6f5f6691c1427013b29f658fc780a50cb05568230339536a92102b559d
|
7
|
+
data.tar.gz: a8308b2fb430e04cb8a227bf2d1980bd8f1844e2cf14dc0f8205d482150aaed03edaa73534270fae58567e0719e4969c77f928084776aed0e8b4e666371cab93
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, and in the interest of
|
4
|
+
fostering an open and welcoming community, we pledge to respect all people who
|
5
|
+
contribute through reporting issues, posting feature requests, updating
|
6
|
+
documentation, submitting pull requests or patches, and other activities.
|
7
|
+
|
8
|
+
We are committed to making participation in this project a harassment-free
|
9
|
+
experience for everyone, regardless of level of experience, gender, gender
|
10
|
+
identity and expression, sexual orientation, disability, personal appearance,
|
11
|
+
body size, race, ethnicity, age, religion, or nationality.
|
12
|
+
|
13
|
+
Examples of unacceptable behavior by participants include:
|
14
|
+
|
15
|
+
* The use of sexualized language or imagery
|
16
|
+
* Personal attacks
|
17
|
+
* Trolling or insulting/derogatory comments
|
18
|
+
* Public or private harassment
|
19
|
+
* Publishing other's private information, such as physical or electronic
|
20
|
+
addresses, without explicit permission
|
21
|
+
* Other unethical or unprofessional conduct
|
22
|
+
|
23
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
24
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
25
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
26
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
27
|
+
threatening, offensive, or harmful.
|
28
|
+
|
29
|
+
By adopting this Code of Conduct, project maintainers commit themselves to
|
30
|
+
fairly and consistently applying these principles to every aspect of managing
|
31
|
+
this project. Project maintainers who do not follow or enforce the Code of
|
32
|
+
Conduct may be permanently removed from the project team.
|
33
|
+
|
34
|
+
This code of conduct applies both within project spaces and in public spaces
|
35
|
+
when an individual is representing the project or its community.
|
36
|
+
|
37
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
38
|
+
reported by contacting a project maintainer at TODO: Write your email address. All
|
39
|
+
complaints will be reviewed and investigated and will result in a response that
|
40
|
+
is deemed necessary and appropriate to the circumstances. Maintainers are
|
41
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
42
|
+
incident.
|
43
|
+
|
44
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
45
|
+
version 1.3.0, available at
|
46
|
+
[http://contributor-covenant.org/version/1/3/0/][version]
|
47
|
+
|
48
|
+
[homepage]: http://contributor-covenant.org
|
49
|
+
[version]: http://contributor-covenant.org/version/1/3/0/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 TODO: Write your name
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
# Alienor
|
2
|
+
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/alienor`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
+
|
5
|
+
TODO: Delete this and the text above, and describe your gem
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'alienor'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install alienor
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
TODO: Write usage instructions here
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
|
+
|
31
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/alienor. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
|
38
|
+
## License
|
39
|
+
|
40
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
41
|
+
|
data/Rakefile
ADDED
data/alienor.gemspec
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'alienor/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "alienor"
|
8
|
+
spec.version = Alienor::VERSION
|
9
|
+
spec.authors = ["fluid gems"]
|
10
|
+
spec.email = ["postmaster@fluidgems.net"]
|
11
|
+
|
12
|
+
spec.summary = %q{Test for Alienor}
|
13
|
+
spec.description = %q{Test for Alienor}
|
14
|
+
spec.homepage = "http://www.fluidgems.net"
|
15
|
+
spec.license = "MIT"
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
+
spec.bindir = "exe"
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
20
|
+
spec.require_paths = ["lib"]
|
21
|
+
|
22
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
23
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
24
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
25
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "alienor"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/lib/alienor.rb
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
require 'active_support'
|
2
|
+
require 'active_support/core_ext'
|
3
|
+
|
4
|
+
require "alienor/version"
|
5
|
+
require "alienor/indentation"
|
6
|
+
require "alienor/object"
|
7
|
+
require "alienor/source"
|
8
|
+
require "alienor/initializer"
|
9
|
+
|
10
|
+
module Alienor
|
11
|
+
# Your code goes here...
|
12
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# rb2g2 / indentation.rb
|
4
|
+
|
5
|
+
module Alienor
|
6
|
+
module Indentation
|
7
|
+
|
8
|
+
def init_indent
|
9
|
+
@source.nb_indent = 0
|
10
|
+
end
|
11
|
+
|
12
|
+
def indent
|
13
|
+
@source.nb_indent += 1
|
14
|
+
end
|
15
|
+
|
16
|
+
def unindent
|
17
|
+
@source.nb_indent -= 1
|
18
|
+
end
|
19
|
+
|
20
|
+
def add_line(r, s = "")
|
21
|
+
r.replace(r + ("\t" * @source.nb_indent) + s + "\n")
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# rb2g2 - initializer.rb
|
4
|
+
module Alienor
|
5
|
+
#~ require 'FileUtils' # redundant ?
|
6
|
+
|
7
|
+
class CoreInitializer
|
8
|
+
|
9
|
+
class << self
|
10
|
+
def setup (app_name, root)
|
11
|
+
@app_name = app_name
|
12
|
+
@root = root
|
13
|
+
end
|
14
|
+
|
15
|
+
def construct(src)
|
16
|
+
puts "initializing... with #{src}"
|
17
|
+
|
18
|
+
# rename index.html if necessary
|
19
|
+
target_dir = File.join @root, "public"
|
20
|
+
if File.exist? index_file = File.join(target_dir, "index.html")
|
21
|
+
File.rename index_file, File.join(target_dir, "index_0.html")
|
22
|
+
puts "renaming index.html"
|
23
|
+
end
|
24
|
+
|
25
|
+
# copy all files recursively
|
26
|
+
FileUtils.cp_r File.join(src, "."), @root
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# author : Reynald Bouy
|
4
|
+
# copyright 2017 Reynald Bouy
|
5
|
+
# ALIENOR - object.rb
|
6
|
+
|
7
|
+
module Alienor
|
8
|
+
|
9
|
+
class CoreObject
|
10
|
+
include Indentation
|
11
|
+
|
12
|
+
class_attribute :dictionnaries
|
13
|
+
|
14
|
+
self.dictionnaries = []
|
15
|
+
|
16
|
+
class << self
|
17
|
+
|
18
|
+
def add_dictionnary(dic_name)
|
19
|
+
attr_accessor dic_name
|
20
|
+
self.dictionnaries << dic_name
|
21
|
+
end
|
22
|
+
|
23
|
+
def get_dic
|
24
|
+
#~ p "in #{self}"
|
25
|
+
self.dictionnaries
|
26
|
+
end
|
27
|
+
|
28
|
+
# dynamic operations for a "branch" of this object
|
29
|
+
# global is the source class if this branch is "global" (meaning Source will hold a dictionnary for this branch)
|
30
|
+
def define_branch(x, global = nil)
|
31
|
+
this_class_name = self.name.split('::')[-1]
|
32
|
+
|
33
|
+
# compute context + x, eg Something::AlienorTest::Group
|
34
|
+
this_context = self.name.split('::')[0..-2].join('::')
|
35
|
+
x_class = (this_context == "") ? x.to_s.camelize : "#{this_context}::#{x.to_s.camelize}"
|
36
|
+
|
37
|
+
# dictionnary name
|
38
|
+
x_dic_name = x.to_s.pluralize # eg groups, entities
|
39
|
+
|
40
|
+
# create dictionnary for that branch
|
41
|
+
add_dictionnary x_dic_name.to_sym # eg :groups
|
42
|
+
|
43
|
+
# create global dictionnary if global
|
44
|
+
eval(global.name).add_dictionnary x_dic_name.to_sym if global # eg :entities
|
45
|
+
|
46
|
+
# define method that creates new objects of a certain entity, eg def group(...)
|
47
|
+
define_method "#{x}" do |name, hname, info={}, &block|
|
48
|
+
conflict = eval("#{x}_conflict(name)") # this entry already exists
|
49
|
+
obj = eval(x_class).new name, hname, self, source, info
|
50
|
+
eval("@#{x_dic_name}")[name] = obj # feed parent dictionnary
|
51
|
+
eval("@source.#{x_dic_name}")[name] = obj if global # feed source dictionnary if global
|
52
|
+
block.call(obj) if block # block for creating other objects. Warning : yield(obj) if block_given? would not work here because within a define_method
|
53
|
+
conflict ? nil : obj
|
54
|
+
end
|
55
|
+
|
56
|
+
# define method that evaluates conflict depending on branch being global or not
|
57
|
+
# can be redefined if necessary
|
58
|
+
define_method "#{x}_conflict" do |name|
|
59
|
+
global ? eval("@source.#{x_dic_name}")[name] : eval("@#{x_dic_name}")[name]
|
60
|
+
end
|
61
|
+
|
62
|
+
# call named_parent definition in child class
|
63
|
+
eval(x_class).define_named_parent this_class_name unless this_class_name == "Source"
|
64
|
+
|
65
|
+
end
|
66
|
+
|
67
|
+
# define a meaningful alias for method returning parent
|
68
|
+
# eg if Entity is a branch of Group, this will define in class Entity : def group; @parent; end
|
69
|
+
def define_named_parent(parent_class_name)
|
70
|
+
#~ p "parent_class_name : #{parent_class_name}"
|
71
|
+
define_method parent_class_name.underscore do
|
72
|
+
@parent
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
end
|
77
|
+
|
78
|
+
attr_accessor :name, :hname, :info, :options, :parent, :source, :nb_indent
|
79
|
+
|
80
|
+
# name : name of the object
|
81
|
+
# hname : human name of the object
|
82
|
+
# source : the source object which contains global information
|
83
|
+
# info : optional infos, and options if any
|
84
|
+
def initialize(name, hname, parent, source, info = {})
|
85
|
+
init_dics
|
86
|
+
@name = name
|
87
|
+
@hname = hname
|
88
|
+
@parent = parent
|
89
|
+
@source = source
|
90
|
+
@info = info
|
91
|
+
@options = info[:options]
|
92
|
+
end
|
93
|
+
|
94
|
+
def init_dics
|
95
|
+
self.dictionnaries.each do |d|
|
96
|
+
self.instance_variable_set "@#{d}", {}
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
# make a string from a template
|
101
|
+
# dname is an optional path
|
102
|
+
def template (tpl_name, dname = "")
|
103
|
+
name = File.join @source.paradigm_name, "templates", dname, tpl_name
|
104
|
+
t = ERB.new File.read("#{name}.erb"), nil, '-' # trim_mode
|
105
|
+
t.result(binding)
|
106
|
+
end
|
107
|
+
|
108
|
+
# make a file in the root directory from a template
|
109
|
+
# dname is an optional path (same for the template and the generated file)
|
110
|
+
def template_to_file (tpl_name, fname, dname = "")
|
111
|
+
fw = File.open File.join(@source.root, dname, fname), "w"
|
112
|
+
fw.puts template tpl_name, dname
|
113
|
+
fw.close
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# rb2g2 - source.rb
|
4
|
+
|
5
|
+
module Alienor
|
6
|
+
|
7
|
+
class CoreSource < CoreObject
|
8
|
+
|
9
|
+
#~ @root : generation path
|
10
|
+
#~ @paradigm_name : paradigm name
|
11
|
+
|
12
|
+
attr_accessor :root, :paradigm_name
|
13
|
+
|
14
|
+
def initialize (root, paradigm_name)
|
15
|
+
super(:source, "", self, self)
|
16
|
+
@root = root
|
17
|
+
@paradigm_name = paradigm_name
|
18
|
+
end
|
19
|
+
|
20
|
+
def describe
|
21
|
+
end
|
22
|
+
|
23
|
+
def generate
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: alienor
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- fluid gems
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-01-07 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.11'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.11'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '5.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '5.0'
|
55
|
+
description: Test for Alienor
|
56
|
+
email:
|
57
|
+
- postmaster@fluidgems.net
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- ".gitignore"
|
63
|
+
- ".travis.yml"
|
64
|
+
- CODE_OF_CONDUCT.md
|
65
|
+
- Gemfile
|
66
|
+
- LICENSE.txt
|
67
|
+
- README.md
|
68
|
+
- Rakefile
|
69
|
+
- alienor.gemspec
|
70
|
+
- bin/console
|
71
|
+
- bin/setup
|
72
|
+
- lib/alienor.rb
|
73
|
+
- lib/alienor/indentation.rb
|
74
|
+
- lib/alienor/initializer.rb
|
75
|
+
- lib/alienor/object.rb
|
76
|
+
- lib/alienor/source.rb
|
77
|
+
- lib/alienor/version.rb
|
78
|
+
homepage: http://www.fluidgems.net
|
79
|
+
licenses:
|
80
|
+
- MIT
|
81
|
+
metadata: {}
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ">="
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.6.7
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: Test for Alienor
|
102
|
+
test_files: []
|