naga 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: '09e69fc9dd829b1e0583f544a548d78e43fa06aad41246573af3f617849ecd9a'
4
+ data.tar.gz: 64a8fff241fe5ff920fec2d0bc1407674ee2f6cbcf8180880fbd3d283f41b6df
5
+ SHA512:
6
+ metadata.gz: 2b06b880a445e37965074a07cad8e1e18c382e1c3180027eb438ed148ac0cfcb2894638b18133e5e8b5e74ccc85bcc3fd58f547e444190a843c402bb014a3826
7
+ data.tar.gz: b4123171367c53140b91cbc9659ee357b9b6ed3eb1f49335581e8ad97884f52835e91b11be8b3b974a67ce3c81a721fd45db84424996226c9955a6ec9a7c7a68
data/.gitignore ADDED
@@ -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,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 naga.gemspec
6
+ gemspec
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # Naga
2
+
3
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/naga`. To experiment with that code, run `bin/console` for an interactive prompt.
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ ```ruby
12
+ gem 'naga'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install naga
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ 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.
30
+
31
+ 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).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/naga.
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,39 @@
1
+ <div id="hre-about-page">
2
+ <div class="hre-icon-with-title">
3
+ <div class="hre-about-large-text margin-top">
4
+ <span class="hre-pb-title">PerformanceBridge</span>
5
+ Application Suite
6
+ </div>
7
+ </div>
8
+
9
+ <div class="hre-about-large-text">
10
+ <div class="margin-top">
11
+ <span class="hre-pb-title">PerformanceBridge</span>
12
+ app_name
13
+ </div>
14
+
15
+ <div>Version app_version</div>
16
+ </div>
17
+
18
+ <div class="margin-top hre-about-main-text">
19
+ © Koninklijke Philips N.V. copyright_year. All rights are reserved. Reproduction or transmission in whole or in part, in any form or by any means, electronic, mechanical or otherwise, is prohibited without the prior written consent of the copyright owner.
20
+ <br>
21
+ Copyrights and all other proprietary rights in any software and related documentation ("Software") made available to you rest exclusively with Philips or its licensors. No title or ownership in the Software is conferred to you. Use of the Software is subject to the end user license conditions as are available on request.
22
+ <br>
23
+ To the maximum extent permitted by law, you shall not decompile and/or reverse engineer the software or any part thereof.
24
+ <br>
25
+ Not for diagnostic, monitoring or therapeutic purposes or in any other manner for regular medical practice.
26
+
27
+ <div class="hre-about-table">
28
+ <div class="hre-about-table-cell">
29
+
30
+ </div>
31
+ <div class="hre-about-table-cell">
32
+ Philips Healthcare
33
+ <br>
34
+ 3000 Minuteman Road, Andover, MA 01810, USA
35
+ </div>
36
+ </div>
37
+ </div>
38
+
39
+ </div>
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "naga"
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,3 @@
1
+ module Naga
2
+ VERSION = "0.1.0"
3
+ end
data/lib/naga.rb ADDED
@@ -0,0 +1,11 @@
1
+ require "naga/version"
2
+
3
+ module Naga
4
+ class Engine < ::Rails::Engine
5
+ require 'browser'
6
+ require 'bunny'
7
+ initializer :append_assets_path, group: :all do |app|
8
+ app.config.assets.paths.unshift(*paths["app/views"].existent_directories)
9
+ end
10
+ end
11
+ end
data/naga.gemspec ADDED
@@ -0,0 +1,36 @@
1
+
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "naga/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "naga"
8
+ spec.version = Naga::VERSION
9
+ spec.authors = ["Nagarjuna Yadav K"]
10
+ spec.email = ["nagarjunayadavk@gmail.com"]
11
+
12
+ spec.summary = %q{Write a short summary, because RubyGems requires one.}
13
+ spec.description = %q{Write a longer description or delete this line.}
14
+ spec.homepage = "https://github.com/nagarjunayadavk/naga_gem.git"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ if spec.respond_to?(:metadata)
19
+ spec.metadata["allowed_push_host"] = "https://rubygems.org/"
20
+ else
21
+ raise "RubyGems 2.0 or newer is required to protect against " \
22
+ "public gem pushes."
23
+ end
24
+
25
+ # Specify which files should be added to the gem when it is released.
26
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
27
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
28
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
29
+ end
30
+ spec.bindir = "exe"
31
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
+ spec.require_paths = ["lib"]
33
+
34
+ spec.add_development_dependency "bundler", "~> 1.16"
35
+ spec.add_development_dependency "rake", "~> 10.0"
36
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: naga
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Nagarjuna Yadav K
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2019-03-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '1.16'
19
+ name: bundler
20
+ prerelease: false
21
+ type: :development
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.16'
27
+ - !ruby/object:Gem::Dependency
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '10.0'
33
+ name: rake
34
+ prerelease: false
35
+ type: :development
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: Write a longer description or delete this line.
42
+ email:
43
+ - nagarjunayadavk@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - Gemfile
50
+ - README.md
51
+ - Rakefile
52
+ - app/views/application/_hre_about.html.erb
53
+ - bin/console
54
+ - bin/setup
55
+ - lib/naga.rb
56
+ - lib/naga/version.rb
57
+ - naga.gemspec
58
+ homepage: https://github.com/nagarjunayadavk/naga_gem.git
59
+ licenses: []
60
+ metadata:
61
+ allowed_push_host: https://rubygems.org/
62
+ post_install_message:
63
+ rdoc_options: []
64
+ require_paths:
65
+ - lib
66
+ required_ruby_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - ">="
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ required_rubygems_version: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ requirements: []
77
+ rubyforge_project:
78
+ rubygems_version: 2.6.11
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Write a short summary, because RubyGems requires one.
82
+ test_files: []