ae-tbk 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 701adacf6dcec8848a4a8a1b26901900b2868cc4c440e122bf117d3632b262b7
4
+ data.tar.gz: 466a5d728bc35e69414aed122dfd1807ae1aa92fda5876634e5be73df64ab526
5
+ SHA512:
6
+ metadata.gz: e86f10b0146a01a5426ef68bc445c5cba4de33f4414030e51a4a5c6d185818a16d8bdeac7d1cce2476ed20fba82888a5048eab035f4bb97ad07f6a7945d202af
7
+ data.tar.gz: 2fca389e1172e18f01c93d2cfa4a9a948a916d32b32d5c8afee4906acf8f15c3ea637a6f2b0ba981fb839c8e5dfb8957c4ca30632e1fd05d8727ef214a36eb44
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Ae::Tbk
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "ae-tbk"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install ae-tbk
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
@@ -0,0 +1,6 @@
1
+ module Ae
2
+ module Tbk
3
+ class Railtie < ::Rails::Railtie
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Ae
2
+ module Tbk
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
data/lib/ae/tbk.rb ADDED
@@ -0,0 +1,10 @@
1
+ require "ae/tbk/version"
2
+ #require "ae/tbk/railtie"
3
+
4
+ module Ae
5
+ module Tbk
6
+ class Hola
7
+ puts "Hello alectrico"
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :ae_tbk do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,69 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ae-tbk
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - alectrico®
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: '5.0'
19
+ - - ">="
20
+ - !ruby/object:Gem::Version
21
+ version: 5.0.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '5.0'
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 5.0.0
32
+ description: Description of Ae::Tbk.
33
+ email:
34
+ - alectrico@outlook.cl
35
+ executables: []
36
+ extensions: []
37
+ extra_rdoc_files: []
38
+ files:
39
+ - README.md
40
+ - Rakefile
41
+ - lib/ae/tbk.rb
42
+ - lib/ae/tbk/railtie.rb
43
+ - lib/ae/tbk/version.rb
44
+ - lib/tasks/ae/tbk_tasks.rake
45
+ homepage: https://www.alectrio.cl
46
+ licenses:
47
+ -
48
+ metadata:
49
+ allowed_push_host: https://www.rubygems.org
50
+ homepage_uri: https://www.alectrio.cl
51
+ source_code_uri: https://www.alectrico.cl
52
+ rdoc_options: []
53
+ require_paths:
54
+ - lib
55
+ required_ruby_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: '0'
65
+ requirements: []
66
+ rubygems_version: 3.6.9
67
+ specification_version: 4
68
+ summary: Summary of Ae::Tbk.
69
+ test_files: []