ae_easy 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 378cb0cb96bb3dc76a445037f4d5b36b262f67ac5203352cb99b4f9e865160a2
4
- data.tar.gz: 258cfd95cba8992a678f51deeb4c4c6083557167af721793bde8958e03dc7a95
3
+ metadata.gz: e47ba71e6844759759e39d873b28974b9c667568fe9277e3fb4d059bf36ea476
4
+ data.tar.gz: d16709c8c9831fd8c5ce0b3987536839dd7a24219782138fb980fe00fa34f896
5
5
  SHA512:
6
- metadata.gz: 5d02eb3b446304edd7cfb8e6137a527f06a80dd6f2dc7490d5a37746a0a98ab286cf09bb7a3e9835c4405bfaa63ca780cfee09956473ccb31792ec8e692022b3
7
- data.tar.gz: 59b5cc46b2b18ca1fe24b8eb5611db48ec13fa41d8fb0c6e49145599d7e63126a95ca5879fb050597bab27b47a63549c3a58eec9f73d77b021de6229aae3a84f
6
+ metadata.gz: 30413afb30dad369df04ece2974ea5c78132f32a0e5d37dc14b8571a5bd4b4b4f084a04598fbc725857fbefea6b4207c0ba7084b9984c9b451c12e9951604660
7
+ data.tar.gz: 5411fd26412274249d0abcdccd5f6a6e12e32c7c11798151f5afd84ce574f8cc64a0e861d2956d0fa7b2afc9feb322957df1b4a45d946efaa80f048f3dd3051a
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  source "https://rubygems.org"
2
+ source 'https://Q34T4-cZG2rRRuLMNmG2zvwZsIJl7W5g@gem.fury.io/answersengine/'
2
3
 
3
4
  git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
5
 
data/Gemfile.lock CHANGED
@@ -1,26 +1,43 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ae_easy (0.0.3)
4
+ ae_easy (0.0.4)
5
+ ae_easy-config
5
6
  ae_easy-core
7
+ ae_easy-router
8
+ ae_easy-text
6
9
 
7
10
  GEM
8
11
  remote: https://rubygems.org/
12
+ remote: https://Q34T4-cZG2rRRuLMNmG2zvwZsIJl7W5g@gem.fury.io/answersengine/
9
13
  specs:
10
- ae_easy-core (0.0.4)
11
- answersengine (>= 0.2.25)
14
+ ae_easy-config (0.0.1)
15
+ ae_easy-core
16
+ ae_easy-core (0.1.0)
17
+ answersengine (>= 0.2.32)
18
+ faker
19
+ ae_easy-router (0.0.1)
20
+ ae_easy-config
21
+ ae_easy-core
22
+ ae_easy-text (0.0.1)
23
+ ae_easy-core
12
24
  ansi (1.5.0)
13
- answersengine (0.2.31)
25
+ answersengine (0.2.33)
14
26
  httparty (~> 0.16.2)
15
27
  nokogiri (~> 1.6, < 1.10)
16
28
  thor (~> 0.20.3)
17
- byebug (10.0.2)
29
+ byebug (11.0.0)
30
+ concurrent-ruby (1.1.4)
18
31
  docile (1.3.1)
32
+ faker (1.9.3)
33
+ i18n (>= 0.7)
19
34
  hirb (0.7.3)
20
35
  httparty (0.16.4)
21
36
  mime-types (~> 3.0)
22
37
  multi_xml (>= 0.5.2)
23
- json (2.1.0)
38
+ i18n (1.5.3)
39
+ concurrent-ruby (~> 1.0)
40
+ json (2.2.0)
24
41
  mime-types (3.2.2)
25
42
  mime-types-data (~> 3.2015)
26
43
  mime-types-data (3.2018.0812)
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  [![Gem Version](https://badge.fury.io/rb/ae_easy.svg)](http://github.com/answersengine/ae_easy/releases)
2
2
  [![License](http://img.shields.io/badge/license-MIT-yellowgreen.svg)](#license)
3
3
 
4
- # AeEasy core module
4
+ # AeEasy
5
5
  ## Description
6
6
 
7
7
  AeEasy gem collection allow advance AnswersEngine features possible by including a collection of specialized gems.
@@ -15,4 +15,7 @@ Require gem:
15
15
  Included gems documentation:
16
16
  ```
17
17
  ae_easy-core: http://rubydoc.org/gems/ae_easy-core/frames
18
+ ae_easy-core: http://rubydoc.org/gems/ae_easy-config/frames
19
+ ae_easy-core: http://rubydoc.org/gems/ae_easy-router/frames
20
+ ae_easy-core: http://rubydoc.org/gems/ae_easy-text/frames
18
21
  ```
data/ae_easy.gemspec CHANGED
@@ -39,6 +39,9 @@ Gem::Specification.new do |spec|
39
39
  spec.required_ruby_version = '>= 2.2.2'
40
40
 
41
41
  spec.add_dependency 'ae_easy-core', '>= 0'
42
+ spec.add_dependency 'ae_easy-config', '>= 0'
43
+ spec.add_dependency 'ae_easy-text', '>= 0'
44
+ spec.add_dependency 'ae_easy-router', '>= 0'
42
45
  spec.add_development_dependency 'bundler', '>= 1.16.3'
43
46
  spec.add_development_dependency 'rake', '>= 10.0'
44
47
  spec.add_development_dependency 'minitest', '>= 5.11'
data/doc/AeEasy.html CHANGED
@@ -122,7 +122,7 @@
122
122
 
123
123
  </div>
124
124
  </dt>
125
- <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.0.2</span><span class='tstring_end'>&#39;</span></span></pre></dd>
125
+ <dd><pre class="code"><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0.0.4</span><span class='tstring_end'>&#39;</span></span></pre></dd>
126
126
 
127
127
  </dl>
128
128
 
@@ -138,7 +138,7 @@
138
138
  </div>
139
139
 
140
140
  <div id="footer">
141
- Generated on Wed Feb 13 22:21:29 2019 by
141
+ Generated on Tue Feb 26 17:50:14 2019 by
142
142
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
143
143
  0.9.18 (ruby-2.5.3).
144
144
  </div>
data/doc/_index.html CHANGED
@@ -97,7 +97,7 @@
97
97
  </div>
98
98
 
99
99
  <div id="footer">
100
- Generated on Wed Feb 13 22:21:29 2019 by
100
+ Generated on Tue Feb 26 17:50:14 2019 by
101
101
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
102
102
  0.9.18 (ruby-2.5.3).
103
103
  </div>
data/doc/file.README.html CHANGED
@@ -62,7 +62,7 @@
62
62
  src="https://badge.fury.io/rb/ae_easy.svg"></a> <a href="#license"><img
63
63
  src="http://img.shields.io/badge/license-MIT-yellowgreen.svg"></a></p>
64
64
 
65
- <h1 id="label-AeEasy+core+module">AeEasy core module</h1>
65
+ <h1 id="label-AeEasy">AeEasy</h1>
66
66
 
67
67
  <h2 id="label-Description">Description</h2>
68
68
 
@@ -74,11 +74,14 @@ including a collection of specialized gems.</p>
74
74
  <p>Require gem: <code>require &#39;ae_easy&#39;</code></p>
75
75
 
76
76
  <p>Included gems documentation: <code> ae_easy-core:
77
- http://rubydoc.org/gems/ae_easy-core/frames </code></p>
77
+ http://rubydoc.org/gems/ae_easy-core/frames ae_easy-core:
78
+ http://rubydoc.org/gems/ae_easy-config/frames ae_easy-core:
79
+ http://rubydoc.org/gems/ae_easy-router/frames ae_easy-core:
80
+ http://rubydoc.org/gems/ae_easy-text/frames </code></p>
78
81
  </div></div>
79
82
 
80
83
  <div id="footer">
81
- Generated on Wed Feb 13 22:21:29 2019 by
84
+ Generated on Tue Feb 26 17:50:14 2019 by
82
85
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
83
86
  0.9.18 (ruby-2.5.3).
84
87
  </div>
data/doc/index.html CHANGED
@@ -62,7 +62,7 @@
62
62
  src="https://badge.fury.io/rb/ae_easy.svg"></a> <a href="#license"><img
63
63
  src="http://img.shields.io/badge/license-MIT-yellowgreen.svg"></a></p>
64
64
 
65
- <h1 id="label-AeEasy+core+module">AeEasy core module</h1>
65
+ <h1 id="label-AeEasy">AeEasy</h1>
66
66
 
67
67
  <h2 id="label-Description">Description</h2>
68
68
 
@@ -74,11 +74,14 @@ including a collection of specialized gems.</p>
74
74
  <p>Require gem: <code>require &#39;ae_easy&#39;</code></p>
75
75
 
76
76
  <p>Included gems documentation: <code> ae_easy-core:
77
- http://rubydoc.org/gems/ae_easy-core/frames </code></p>
77
+ http://rubydoc.org/gems/ae_easy-core/frames ae_easy-core:
78
+ http://rubydoc.org/gems/ae_easy-config/frames ae_easy-core:
79
+ http://rubydoc.org/gems/ae_easy-router/frames ae_easy-core:
80
+ http://rubydoc.org/gems/ae_easy-text/frames </code></p>
78
81
  </div></div>
79
82
 
80
83
  <div id="footer">
81
- Generated on Wed Feb 13 22:21:29 2019 by
84
+ Generated on Tue Feb 26 17:50:14 2019 by
82
85
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
83
86
  0.9.18 (ruby-2.5.3).
84
87
  </div>
@@ -100,7 +100,7 @@
100
100
  </div>
101
101
 
102
102
  <div id="footer">
103
- Generated on Wed Feb 13 22:21:29 2019 by
103
+ Generated on Tue Feb 26 17:50:14 2019 by
104
104
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
105
105
  0.9.18 (ruby-2.5.3).
106
106
  </div>
@@ -1,4 +1,4 @@
1
1
  module AeEasy
2
2
  # Gem version
3
- VERSION = '0.0.3'
3
+ VERSION = '0.0.4'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ae_easy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eduardo Rosales
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-13 00:00:00.000000000 Z
11
+ date: 2019-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ae_easy-core
@@ -24,6 +24,48 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: ae_easy-config
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: ae_easy-text
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: ae_easy-router
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
27
69
  - !ruby/object:Gem::Dependency
28
70
  name: bundler
29
71
  requirement: !ruby/object:Gem::Requirement