eunomy 0.0.1
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/README.md +23 -0
- data/Rakefile +17 -0
- data/lib/eunomy.rb +6 -0
- data/test/documentation_test.rb +10 -0
- data/test/test_helper.rb +7 -0
- metadata +51 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: d1315744fc18ee2b7f4a504168ffa9aebe10a7c36804e72f0f4155babe0f66ba
|
4
|
+
data.tar.gz: 17cba51f7ce575930f3148d7fa3686cfff4f46b07cc5d0de1ed54fa4d9c8cf76
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 89c55b224e70caf6bb74ae227782062e0c5e780b70bb361093c1e8c2cd2452838920f09cf67d3bbf2a48d3f3de3d4bf4b2676ba8a855eac6d94b14fd284fa612
|
7
|
+
data.tar.gz: 911c5968bfb0dc4675408346967886c949471b8cf74992e0be3a9ab0e49c971a253c4f7c78e361dac29de68fefc332f1a40651ddfaf220ac4a81e4b5643886ce
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# Eunomy
|
2
|
+
|
3
|
+
TODO: Delete this and the text above, and describe your gem
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'eunomy'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle install
|
16
|
+
|
17
|
+
Or install it yourself as:
|
18
|
+
|
19
|
+
$ gem install eunomy
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
TODO: Write usage instructions here
|
data/Rakefile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'bundler/gem_tasks'
|
4
|
+
require 'rake/testtask'
|
5
|
+
|
6
|
+
Rake::TestTask.new do |t|
|
7
|
+
t.libs << 'test'
|
8
|
+
t.warning = true
|
9
|
+
t.verbose = true
|
10
|
+
t.test_files = FileList['test/**/*.rb']
|
11
|
+
end
|
12
|
+
|
13
|
+
require 'rubocop/rake_task'
|
14
|
+
|
15
|
+
RuboCop::RakeTask.new
|
16
|
+
|
17
|
+
task default: [:test, :rubocop]
|
data/lib/eunomy.rb
ADDED
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: eunomy
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Volmer Campos Soares
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-02-19 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description:
|
14
|
+
email: rubygems@radicaos.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- README.md
|
20
|
+
- Rakefile
|
21
|
+
- lib/eunomy.rb
|
22
|
+
- test/documentation_test.rb
|
23
|
+
- test/test_helper.rb
|
24
|
+
homepage: https://github.com/volmer/eunomy
|
25
|
+
licenses:
|
26
|
+
- MIT
|
27
|
+
metadata:
|
28
|
+
source_code_uri: https://github.com/volmer/eunomy/tree/v0.0.1
|
29
|
+
allowed_push_host: https://rubygems.org
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - "~>"
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '3.0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
requirements: []
|
45
|
+
rubygems_version: 3.2.3
|
46
|
+
signing_key:
|
47
|
+
specification_version: 4
|
48
|
+
summary: Patterns for Rails Architecture
|
49
|
+
test_files:
|
50
|
+
- test/documentation_test.rb
|
51
|
+
- test/test_helper.rb
|