feed_into 0.2.9
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/.circleci/config.yml +8 -0
- data/.gitignore +9 -0
- data/.rubocop.yml +13 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +82 -0
- data/LICENSE.txt +21 -0
- data/README.md +944 -0
- data/Rakefile +8 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/feed_into.gemspec +45 -0
- data/lib/feed_into/version.rb +5 -0
- data/lib/feed_into.rb +1433 -0
- data/lib/modules/general.rb +250 -0
- metadata +176 -0
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
require "bundler/setup"
|
5
|
+
require "feed_into"
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require "irb"
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/feed_into.gemspec
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "lib/feed_into/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = "feed_into"
|
7
|
+
spec.version = FeedInto::VERSION
|
8
|
+
spec.authors = ["a6b8"]
|
9
|
+
spec.email = ["hello@13plus4.com"]
|
10
|
+
|
11
|
+
spec.summary = "Merge multiple different data streams into a custom structure."
|
12
|
+
spec.description = "Merge multiple different data streams into a custom structure. Also easy to expand by a custom module system."
|
13
|
+
spec.homepage = "https://github.com/a6b8/feed-into-for-ruby"
|
14
|
+
spec.license = "MIT"
|
15
|
+
spec.required_ruby_version = ">= 2.4.0"
|
16
|
+
|
17
|
+
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
18
|
+
|
19
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/a6b8/feed-into-for-ruby"
|
21
|
+
spec.metadata["changelog_uri"] = "https://raw.githubusercontent.com/a6b8/feed-into-for-ruby/main/CHANGELOG.md"
|
22
|
+
|
23
|
+
# Specify which files should be added to the gem when it is released.
|
24
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
25
|
+
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
26
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:test|spec|features)/}) }
|
27
|
+
end
|
28
|
+
spec.bindir = "exe"
|
29
|
+
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
|
30
|
+
spec.require_paths = ["lib"]
|
31
|
+
|
32
|
+
# Uncomment to register a new dependency of your gem
|
33
|
+
# spec.add_dependency "example-gem", "~> 1.0"
|
34
|
+
spec.add_dependency 'nokogiri', '~> 1.14.2'
|
35
|
+
spec.add_dependency 'time', '~> 0.1.0'
|
36
|
+
spec.add_dependency 'tzinfo', '~> 2.0.4'
|
37
|
+
spec.add_dependency 'cgi', '~> 0.2.0'
|
38
|
+
spec.add_dependency 'json', '~> 2.5.1'
|
39
|
+
spec.add_dependency 'uri', '~> 0.12.1'
|
40
|
+
# spec.add_dependency 'rss', '~> 0.2.9'
|
41
|
+
spec.add_dependency 'net-http', '~> 0.1.1'
|
42
|
+
spec.add_dependency 'activesupport', '~> 6.1'
|
43
|
+
# For more information and examples about making a new gem, checkout our
|
44
|
+
# guide at: https://bundler.io/guides/creating_gem.html
|
45
|
+
end
|