ae_easy 0.0.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4ee574a6aa43539e5b7f3739aebac436cda3238da15a1ea00021ad2203abb373
4
+ data.tar.gz: bb29ac1cf9752575ecb836a472a21bc99d461e267258b9b23293fb346dd26bb1
5
+ SHA512:
6
+ metadata.gz: 90bf345f3ecb3d54ba7efc587b084b86221c3bb5d95ccc48ce81f59510bcf5970f6440cd5283cf0b8c3f554a56b2771a687b4506fc13c36be15f48bd5dab16e6
7
+ data.tar.gz: a7ebb67c4dab49f0c9504835ef19ec8e4b02c464f212d412840094a43f0477c7be16359ec70a00701d5070ea28d543e6a9453d0f1a17300fb94968cec8c8be0e
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ /.byebug*
2
+ /coverage
3
+ /.yardoc
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4
+
5
+ # Specify your gem's dependencies in answersengine.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ ae_easy (0.0.2)
5
+ ae_easy-core (~> 0.0.1)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ ae_easy-core (0.0.1)
11
+ answersengine (~> 0.2.25)
12
+ ansi (1.5.0)
13
+ answersengine (0.2.31)
14
+ httparty (~> 0.16.2)
15
+ nokogiri (~> 1.6, < 1.10)
16
+ thor (~> 0.20.3)
17
+ byebug (10.0.2)
18
+ docile (1.3.1)
19
+ hirb (0.7.3)
20
+ httparty (0.16.3)
21
+ mime-types (~> 3.0)
22
+ multi_xml (>= 0.5.2)
23
+ json (2.1.0)
24
+ mime-types (3.2.2)
25
+ mime-types-data (~> 3.2015)
26
+ mime-types-data (3.2018.0812)
27
+ mini_portile2 (2.4.0)
28
+ minitest (5.11.3)
29
+ multi_xml (0.6.0)
30
+ nokogiri (1.9.1)
31
+ mini_portile2 (~> 2.4.0)
32
+ rake (10.5.0)
33
+ simplecov (0.16.1)
34
+ docile (~> 1.1)
35
+ json (>= 1.8, < 3)
36
+ simplecov-html (~> 0.10.0)
37
+ simplecov-console (0.4.2)
38
+ ansi
39
+ hirb
40
+ simplecov
41
+ simplecov-html (0.10.2)
42
+ thor (0.20.3)
43
+
44
+ PLATFORMS
45
+ ruby
46
+
47
+ DEPENDENCIES
48
+ ae_easy!
49
+ byebug
50
+ minitest (~> 5.11)
51
+ rake (~> 10.0)
52
+ simplecov (~> 0.16.1)
53
+ simplecov-console (~> 0.4.2)
54
+
55
+ BUNDLED WITH
56
+ 1.17.3
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2019 AnswersEngine
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 all
13
+ 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 THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,13 @@
1
+ [![Gem Version](https://badge.fury.io/rb/ae_easy.svg)](http://github.com/answersengine/ae_easy/releases)
2
+ [![License](http://img.shields.io/badge/license-MIT-yellowgreen.svg)](#license)
3
+
4
+ # AeEasy core module
5
+ ## Description
6
+
7
+ AeEasy gem collection allow advance AnswersEngine features possible by including a collection of specialized gems.
8
+
9
+ Install gem:
10
+ ```gem install 'ae_easy'```
11
+
12
+ Require gem
13
+ ```require 'ae_easy'```
data/Rakefile ADDED
@@ -0,0 +1,21 @@
1
+ require 'benchmark'
2
+ require 'rake/testtask'
3
+
4
+ Rake::TestTask.new do |t|
5
+ t.libs = ['lib', 'test']
6
+ t.warning = false
7
+ t.verbose = false
8
+ t.test_files = FileList['./test/**/*_test.rb'] + FileList['./test/gem_test.rb']
9
+ end
10
+
11
+ desc 'Benchmark another task execution | usage example: benchmark[my_task, param1, param2]'
12
+ task :benchmark, [:task] do |task, args|
13
+ task_name = args[:task]
14
+ if task_name.nil?
15
+ puts "Should select a task."
16
+ exit 1
17
+ end
18
+ puts Benchmark.measure{ Rake::Task[task_name].invoke *args.extras }
19
+ end
20
+
21
+ task default: :test
data/ae_easy.gemspec ADDED
@@ -0,0 +1,39 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "ae_easy/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ae_easy"
8
+ spec.version = AeEasy::VERSION
9
+ spec.authors = ["Eduardo Rosales"]
10
+ spec.email = ["eduardo@datahen.com"]
11
+
12
+ spec.summary = %q{AnswersEngine toolkit modules}
13
+ spec.description = %q{AnswersEngine toolkit module collection.}
14
+ spec.homepage = "https://answersengine.com"
15
+ spec.license = "MIT"
16
+
17
+ # # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against " \
23
+ # "public gem pushes."
24
+ # end
25
+
26
+ # Specify which files should be added to the gem when it is released.
27
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
29
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
30
+ end
31
+ spec.require_paths = ["lib"]
32
+ spec.required_ruby_version = '>= 2.2.2'
33
+ spec.add_dependency 'ae_easy-core', '~> 0.0.1'
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "minitest", "~> 5.11"
36
+ spec.add_development_dependency 'simplecov', '~> 0.16.1'
37
+ spec.add_development_dependency 'simplecov-console', '~> 0.4.2'
38
+ spec.add_development_dependency "byebug"
39
+ end
@@ -0,0 +1,3 @@
1
+ module AeEasy
2
+ VERSION = '0.0.2'
3
+ end
data/lib/ae_easy.rb ADDED
@@ -0,0 +1,5 @@
1
+ require 'ae_easy-core'
2
+ require 'ae_easy/version'
3
+
4
+ module AeEasy
5
+ end
metadata ADDED
@@ -0,0 +1,137 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ae_easy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Eduardo Rosales
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-02-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ae_easy-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 0.0.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 0.0.1
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.11'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.11'
55
+ - !ruby/object:Gem::Dependency
56
+ name: simplecov
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.16.1
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.16.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov-console
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.4.2
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.4.2
83
+ - !ruby/object:Gem::Dependency
84
+ name: byebug
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: AnswersEngine toolkit module collection.
98
+ email:
99
+ - eduardo@datahen.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - ".gitignore"
105
+ - Gemfile
106
+ - Gemfile.lock
107
+ - LICENSE
108
+ - README.md
109
+ - Rakefile
110
+ - ae_easy.gemspec
111
+ - lib/ae_easy.rb
112
+ - lib/ae_easy/version.rb
113
+ homepage: https://answersengine.com
114
+ licenses:
115
+ - MIT
116
+ metadata: {}
117
+ post_install_message:
118
+ rdoc_options: []
119
+ require_paths:
120
+ - lib
121
+ required_ruby_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ">="
124
+ - !ruby/object:Gem::Version
125
+ version: 2.2.2
126
+ required_rubygems_version: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
131
+ requirements: []
132
+ rubyforge_project:
133
+ rubygems_version: 2.7.6
134
+ signing_key:
135
+ specification_version: 4
136
+ summary: AnswersEngine toolkit modules
137
+ test_files: []