techcult_view_tool 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: 1639007d5b8576e54c033b3af3091dafd19e13fc5fd92fe76d549e0085dbca52
4
+ data.tar.gz: ffe74194d01ab7aefd292fbf6f9bb95749f52dc333df1f7a5260cd7b1e6cdbc8
5
+ SHA512:
6
+ metadata.gz: acce0a06297c37441551779e40a8de6e8e7bf15a4dcc19f4fd94ec059088ab745c0c154eff2256955d29ad1e8bc5881bd47b7507997f091ffb8a22eb3c27436e
7
+ data.tar.gz: 5448a575a2d8faeaaea516b5ff7dcd9640398bad7258e497eae1aaee566e25b19c5ee837dc5af5b40b0b9cb3d1d7c66836edf9b97b81ce152c05c8287beba7cd
data/.gitignore ADDED
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ *.gem
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in techcult_view_tool.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # TechcultViewTool
2
+ Generated HTML data for rails application
3
+
4
+ ## Installation
5
+
6
+ Add this line to your application's Gemfile:
7
+
8
+ ```ruby
9
+ gem 'techcult_view_tool'
10
+ ```
11
+
12
+ And then execute:
13
+
14
+ $ bundle install
15
+
16
+ Or install it yourself as:
17
+
18
+ $ gem install techcult_view_tool
19
+
20
+ ## Usage
21
+
22
+ ## Development
23
+
24
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
25
+
26
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
27
+
28
+ ## Contributing
29
+
30
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/techcult_view_tool.
31
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "techcult_view_tool"
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__)
data/bin/setup ADDED
@@ -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,7 @@
1
+ require "techcult_view_tool/version"
2
+ require "techcult_view_tool/renderer"
3
+
4
+ module TechcultViewTool
5
+ class Error < StandardError; end
6
+ # Your code goes here...
7
+ end
@@ -0,0 +1,8 @@
1
+ module TechcultViewTool
2
+ class Error < StandardError; end
3
+ class Renderer
4
+ def self.copyright name, msg
5
+ "&copy; #{Time.now.year} | <b>#{name}</b> #{msg}".html_safe
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ module TechcultViewTool
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,26 @@
1
+ require_relative 'lib/techcult_view_tool/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "techcult_view_tool"
5
+ spec.version = TechcultViewTool::VERSION
6
+ spec.authors = ["deva1156"]
7
+ spec.email = ["rgs264rgs@gmail.com"]
8
+
9
+ spec.summary = %q{Various view specific methods}
10
+ spec.description = %q{Generated HTML data for rails application}
11
+ spec.homepage = "https://devcamp.com"
12
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
13
+
14
+ spec.metadata["homepage_uri"] = spec.homepage
15
+ spec.metadata["source_code_urhttps://github.com/deva1156/techcult_view_tool/blob/master/README.mdi"] = "https://github.com/deva1156/techcult_view_tool"
16
+ spec.metadata["changelog_uri"] = "https://github.com/deva1156/techcult_view_tool/blob/master/README.md"
17
+
18
+ # Specify which files should be added to the gem when it is released.
19
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
20
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
21
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
22
+ end
23
+ spec.bindir = "exe"
24
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
+ spec.require_paths = ["lib"]
26
+ end
metadata ADDED
@@ -0,0 +1,55 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: techcult_view_tool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - deva1156
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-03-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Generated HTML data for rails application
14
+ email:
15
+ - rgs264rgs@gmail.com
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/techcult_view_tool.rb
27
+ - lib/techcult_view_tool/renderer.rb
28
+ - lib/techcult_view_tool/version.rb
29
+ - techcult_view_tool.gemspec
30
+ homepage: https://devcamp.com
31
+ licenses: []
32
+ metadata:
33
+ homepage_uri: https://devcamp.com
34
+ source_code_urhttps://github.com/deva1156/techcult_view_tool/blob/master/README.mdi: https://github.com/deva1156/techcult_view_tool
35
+ changelog_uri: https://github.com/deva1156/techcult_view_tool/blob/master/README.md
36
+ post_install_message:
37
+ rdoc_options: []
38
+ require_paths:
39
+ - lib
40
+ required_ruby_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 2.3.0
45
+ required_rubygems_version: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ requirements: []
51
+ rubygems_version: 3.0.6
52
+ signing_key:
53
+ specification_version: 4
54
+ summary: Various view specific methods
55
+ test_files: []