txtfy 0.0.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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2add73c6b480a18eacb542228570e0b4fe5c32b8686ac2882481593b372db061
4
+ data.tar.gz: f26093d8a0ee6c3fd82e6054d1b9b61568db05dd988e0db1eb0834b3df678960
5
+ SHA512:
6
+ metadata.gz: 9c55a84f4f6b9b8cf4b86d828ca957f7a23e1581770a0a54df3566c3ff9080deca9a75848f48c30f5cb76253103ca535dd4507d79ee91819fce9a791c26c0466
7
+ data.tar.gz: 6b2ef5fa5f888d7652dd452b277761f8a8263af96c2355c4d275e948278483f73fd81b8369c0b42aa353e05f91160cbe4b5b4146868b021ddf50e4632b2503d8
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in txtfy.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "elasticsearch", "~> 7.10.0"
8
+ gem "typhoeus", "~> 1.4.0"
@@ -0,0 +1,23 @@
1
+ # Txtfy
2
+
3
+ In some time in the near/far future...
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'txtfy'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle install
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install txtfy
20
+
21
+ ## Usage
22
+
23
+ It will be edited...
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "txtfy"
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(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,6 @@
1
+ require "txtfy/version"
2
+
3
+ module Txtfy
4
+ class Error < StandardError; end
5
+ # Your code goes here...
6
+ end
@@ -0,0 +1,3 @@
1
+ module Txtfy
2
+ VERSION = "0.0.0"
3
+ end
@@ -0,0 +1,29 @@
1
+ require_relative 'lib/txtfy/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "txtfy"
5
+ spec.version = Txtfy::VERSION
6
+ spec.authors = ["monzita"]
7
+ spec.email = [""]
8
+
9
+ spec.summary = %q{Soon or not it will be changed or not}
10
+ spec.description = %q{}
11
+ spec.homepage = "https://rubygems.org/"
12
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
+
14
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
15
+
16
+ spec.metadata["homepage_uri"] = spec.homepage
17
+ spec.metadata["source_code_uri"] = "https://rubygems.org"
18
+ spec.metadata["changelog_uri"] = "https://bitbucket.org/mon3ita/txtfy/CHANGELOG.md"
19
+
20
+ # Specify which files should be added to the gem when it is released.
21
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
22
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
23
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
24
+ end
25
+ spec.bindir = "exe"
26
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
27
+ spec.require_paths = ["lib"]
28
+ spec.license = 'MIT'
29
+ end
metadata ADDED
@@ -0,0 +1,56 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: txtfy
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - monzita
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2021-01-05 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: ''
14
+ email:
15
+ - ''
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - README.md
23
+ - Rakefile
24
+ - bin/console
25
+ - bin/setup
26
+ - lib/txtfy.rb
27
+ - lib/txtfy/version.rb
28
+ - txtfy.gemspec
29
+ homepage: https://rubygems.org/
30
+ licenses:
31
+ - MIT
32
+ metadata:
33
+ allowed_push_host: https://rubygems.org
34
+ homepage_uri: https://rubygems.org/
35
+ source_code_uri: https://rubygems.org
36
+ changelog_uri: https://bitbucket.org/mon3ita/txtfy/CHANGELOG.md
37
+ post_install_message:
38
+ rdoc_options: []
39
+ require_paths:
40
+ - lib
41
+ required_ruby_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: 2.3.0
46
+ required_rubygems_version: !ruby/object:Gem::Requirement
47
+ requirements:
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: '0'
51
+ requirements: []
52
+ rubygems_version: 3.1.4
53
+ signing_key:
54
+ specification_version: 4
55
+ summary: Soon or not it will be changed or not
56
+ test_files: []