a_flanagan_view_tool 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ac5b0d32ca7607845265ac3850a123d47795ad1b09195cc71c4a42b303bdc67c
4
+ data.tar.gz: 1cc90eb491764ad68aee2b5f64f0464e10b589077bd4c8488a8e0fd34dcd3b9c
5
+ SHA512:
6
+ metadata.gz: 7cb00847cd9203dc8ce1f771688a4cf31ad84c6182aed7bf8f95568354110663631e17e6300f01bf30be8ac1948e6dc0780f0246217793499be17d0d7cbf7bee
7
+ data.tar.gz: 6640f274912303c02ae430c9276a67c4c6c9ab7d20ada95a67b1512197b8df6bca11f26092e2e295e961a01a5b876665b3472d1f1719314485760c57d22c2998
@@ -0,0 +1,9 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+ *.gem
@@ -0,0 +1,13 @@
1
+ Style/StringLiterals:
2
+ EnforcedStyle: single_quotes
3
+ Exclude:
4
+ - 'Gemfile'
5
+ - 'Rakefile'
6
+ - 'bin/console'
7
+
8
+ Metrics/LineLength:
9
+ Max: 100
10
+
11
+ Style/HashSyntax:
12
+ Exclude:
13
+ - 'Rakefile'
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 a_flanagan_view_tool.gemspec
6
+ gemspec
@@ -0,0 +1,42 @@
1
+ # AFlanaganViewTool
2
+
3
+ > A copy of the Devcamp View Tool from Dissecting RoR course (udemy.com)
4
+
5
+ Various view specific methods for applications I use.
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'a_flanagan_view_tool'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ > $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ > $ gem install a_flanagan_view_tool
22
+
23
+ ## Usage
24
+
25
+ ```ruby
26
+ def set_copyright
27
+ @copyright = AFlanaganViewTool::Renderer.copyright(
28
+ 'A Lloyd Flanagan',
29
+ 'All rights reserved'
30
+ )
31
+ end
32
+ ```
33
+
34
+ ## Development
35
+
36
+ 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.
37
+
38
+ 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).
39
+
40
+ ## Contributing
41
+
42
+ Bug reports and pull requests are welcome on GitHub at [https://github.com/alflanagan/a_flanagan_view_tool](https://github.com/alflanagan/a_flanagan_view_tool).
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,31 @@
1
+ {
2
+ "folders": [
3
+ {
4
+ "path": "."
5
+ }
6
+ ],
7
+ "settings": {
8
+ "ruby.pathToBundler": "bin/bundle",
9
+ "ruby.useLanguageServer": true,
10
+ "ruby.interpreter.commandPath": "/home/aflanagan/.rvm/rubies/ruby-2.6.3/bin/ruby",
11
+ "ruby.codeCompletion": "rcodetools",
12
+ "ruby.lint": {
13
+ "ruby": {
14
+ "unicode": true //Runs ruby -wc -Ku
15
+ },
16
+ "rubocop": {
17
+ "lint": true,
18
+ "rails": true
19
+ },
20
+ "ruby-lint": true
21
+ },
22
+
23
+ // Time (ms) to wait after keypress before running enabled linters. Ensures
24
+ // linters are only run when typing has finished and not for every keypress
25
+ "ruby.lintDebounceTime": 500,
26
+ "files.trimFinalNewlines": true,
27
+ "files.trimTrailingWhitespace": true,
28
+ "files.insertFinalNewline": true,
29
+ "editor.tabSize": 2
30
+ }
31
+ }
@@ -0,0 +1,29 @@
1
+ lib = File.expand_path('lib', __dir__)
2
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
+ require 'a_flanagan_view_tool/version'
4
+ require 'a_flanagan_view_tool/renderer.rb'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'a_flanagan_view_tool'
8
+ spec.version = AFlanaganViewTool::VERSION
9
+ spec.authors = ['A. Lloyd Flanagan']
10
+ spec.email = ['a.lloyd.flanagan@gmail.com']
11
+
12
+ spec.summary = 'A copy of the Devcamp View Tool from Dissecting RoR course (udemy.com)'
13
+ spec.description = 'Provides generated HTML data for a Rails application'
14
+ spec.homepage = 'https://github.com/alflanagan/a_flanagan_view_tool'
15
+ spec.license = 'MIT'
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
20
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
21
+ end
22
+ spec.bindir = 'exe'
23
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
+ spec.require_paths = ['lib']
25
+
26
+ spec.add_development_dependency 'bundler', '~> 1.17'
27
+ spec.add_development_dependency 'rake', '~> 10.0'
28
+ spec.add_development_dependency 'rspec', '~> 3.0'
29
+ end
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "a_flanagan_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__)
@@ -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,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'a_flanagan_view_tool/version'
4
+ require 'a_flanagan_view_tool/renderer'
5
+
6
+ module AFlanaganViewTool
7
+ class Error < StandardError; end
8
+ # Your code goes here...
9
+ end
@@ -0,0 +1,10 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AFlanaganViewTool
4
+ # A class to do the rendering for this gem
5
+ class Renderer
6
+ def self.copyright(name, msg)
7
+ "&copy; #{Time.now.year} | <b>#{name}</b> #{msg}".html_safe
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module AFlanaganViewTool
4
+ VERSION = '0.1.2'.freeze
5
+ end
metadata ADDED
@@ -0,0 +1,97 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: a_flanagan_view_tool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - A. Lloyd Flanagan
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-06-21 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.17'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.17'
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: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: Provides generated HTML data for a Rails application
56
+ email:
57
+ - a.lloyd.flanagan@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rubocop.yml"
64
+ - Gemfile
65
+ - README.md
66
+ - Rakefile
67
+ - a_flanagan_view_tool.code-workspace
68
+ - a_flanagan_view_tool.gemspec
69
+ - bin/console
70
+ - bin/setup
71
+ - lib/a_flanagan_view_tool.rb
72
+ - lib/a_flanagan_view_tool/renderer.rb
73
+ - lib/a_flanagan_view_tool/version.rb
74
+ homepage: https://github.com/alflanagan/a_flanagan_view_tool
75
+ licenses:
76
+ - MIT
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubygems_version: 3.0.3
94
+ signing_key:
95
+ specification_version: 4
96
+ summary: A copy of the Devcamp View Tool from Dissecting RoR course (udemy.com)
97
+ test_files: []