Skip to content

Commit 585b476

Browse files
Integration of the Heatmap 3d app as a single page. Full integration
1 parent c547a79 commit 585b476

273 files changed

Lines changed: 32047 additions & 715 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gem/bin/bundle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/opt/homebrew/opt/ruby/bin/ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'bundler' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
str = ARGV.first
14+
if str
15+
str = str.b[/\A_(.*)_\z/, 1]
16+
if str and Gem::Version.correct?(str)
17+
version = str
18+
ENV['BUNDLER_VERSION'] = str
19+
20+
ARGV.shift
21+
end
22+
end
23+
24+
if Gem.respond_to?(:activate_and_load_bin_path)
25+
Gem.activate_and_load_bin_path('bundler', 'bundle', version)
26+
else
27+
load Gem.activate_bin_path('bundler', 'bundle', version)
28+
end

.gem/bin/bundler

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/opt/homebrew/opt/ruby/bin/ruby
2+
#
3+
# This file was generated by RubyGems.
4+
#
5+
# The application 'bundler' is installed as part of a gem, and
6+
# this file is here to facilitate running it.
7+
#
8+
9+
require 'rubygems'
10+
11+
version = ">= 0.a"
12+
13+
str = ARGV.first
14+
if str
15+
str = str.b[/\A_(.*)_\z/, 1]
16+
if str and Gem::Version.correct?(str)
17+
version = str
18+
ENV['BUNDLER_VERSION'] = str
19+
20+
ARGV.shift
21+
end
22+
end
23+
24+
if Gem.respond_to?(:activate_and_load_bin_path)
25+
Gem.activate_and_load_bin_path('bundler', 'bundler', version)
26+
else
27+
load Gem.activate_bin_path('bundler', 'bundler', version)
28+
end

.gem/cache/bundler-2.5.15.gem

425 KB
Binary file not shown.

.gem/gems/bundler-2.5.15/CHANGELOG.md

Lines changed: 4921 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License
2+
3+
Portions copyright (c) 2010-2019 André Arko
4+
Portions copyright (c) 2009 Engine Yard
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22+
THE SOFTWARE.

.gem/gems/bundler-2.5.15/README.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
[![Version ](https://img.shields.io/gem/v/bundler.svg?style=flat)](https://rubygems.org/gems/bundler)
2+
3+
# Bundler: a gem to bundle gems
4+
5+
Bundler makes sure Ruby applications run the same code on every machine.
6+
7+
It does this by managing the gems that the application depends on. Given a list of gems, it can automatically download and install those gems, as well as any other gems needed by the gems that are listed. Before installing gems, it checks the versions of every gem to make sure that they are compatible, and can all be loaded at the same time. After the gems have been installed, Bundler can help you update some or all of them when new versions become available. Finally, it records the exact versions that have been installed, so that others can install the exact same gems.
8+
9+
### Installation and usage
10+
11+
To install (or update to the latest version):
12+
13+
```
14+
gem install bundler
15+
```
16+
17+
To install a prerelease version (if one is available), run `gem install bundler --pre`. To uninstall Bundler, run `gem uninstall bundler`.
18+
19+
Bundler is most commonly used to manage your application's dependencies. For example, these commands will allow you to use Bundler to manage the `rspec` gem for your application:
20+
21+
```
22+
bundle init
23+
bundle add rspec
24+
bundle install
25+
bundle exec rspec
26+
```
27+
28+
See [bundler.io](https://bundler.io) for the full documentation.
29+
30+
### Troubleshooting
31+
32+
For help with common problems, see [TROUBLESHOOTING](doc/TROUBLESHOOTING.md).
33+
34+
Still stuck? Try [filing an issue](https://github.com/rubygems/rubygems/issues/new?labels=Bundler&template=bundler-related-issue.md).
35+
36+
### Other questions
37+
38+
To see what has changed in recent versions of Bundler, see the [CHANGELOG](CHANGELOG.md).
39+
40+
To get in touch with the Bundler core team and other Bundler users, please join [the Bundler slack](https://join.slack.com/t/bundler/shared_invite/zt-1rrsuuv3m-OmXKWQf8K6iSla4~F1DBjQ).
41+
42+
### Contributing
43+
44+
If you'd like to contribute to Bundler, that's awesome, and we <3 you. We've put together [the Bundler contributor guide](https://github.com/rubygems/rubygems/blob/master/bundler/doc/contributing/README.md) with all of the information you need to get started.
45+
46+
If you'd like to request a substantial change to Bundler or its documentation, refer to the [Bundler RFC process](https://github.com/rubygems/rfcs) for more information.
47+
48+
### Supporting
49+
50+
RubyGems is managed by [Ruby Central](https://rubycentral.org), a non-profit organization that supports the Ruby community through projects like this one, as well as [RubyConf](https://rubyconf.org), [RailsConf](https://railsconf.org), and [RubyGems.org](https://rubygems.org). You can support Ruby Central by attending or [sponsoring](sponsors@rubycentral.org) a conference, or by [joining as a supporting member](https://rubycentral.org/#/portal/signup).
51+
52+
### Code of Conduct
53+
54+
Everyone interacting in the Bundler project's codebases, issue trackers, chat rooms, and mailing lists is expected to follow the [Bundler code of conduct](https://github.com/rubygems/rubygems/blob/master/CODE_OF_CONDUCT.md).
55+
56+
### License
57+
58+
Bundler is available under an [MIT License](https://github.com/rubygems/rubygems/blob/master/bundler/LICENSE.md).
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# frozen_string_literal: true
2+
3+
begin
4+
require_relative "lib/bundler/version"
5+
rescue LoadError
6+
# for Ruby core repository
7+
require_relative "version"
8+
end
9+
10+
Gem::Specification.new do |s|
11+
s.name = "bundler"
12+
s.version = Bundler::VERSION
13+
s.license = "MIT"
14+
s.authors = [
15+
"André Arko", "Samuel Giddins", "Colby Swandale", "Hiroshi Shibata",
16+
"David Rodríguez", "Grey Baker", "Stephanie Morillo", "Chris Morris", "James Wen", "Tim Moore",
17+
"André Medeiros", "Jessica Lynn Suttles", "Terence Lee", "Carl Lerche",
18+
"Yehuda Katz"
19+
]
20+
s.email = ["team@bundler.io"]
21+
s.homepage = "https://bundler.io"
22+
s.summary = "The best way to manage your application's dependencies"
23+
s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
24+
25+
s.metadata = {
26+
"bug_tracker_uri" => "https://github.com/rubygems/rubygems/issues?q=is%3Aopen+is%3Aissue+label%3ABundler",
27+
"changelog_uri" => "https://github.com/rubygems/rubygems/blob/master/bundler/CHANGELOG.md",
28+
"homepage_uri" => "https://bundler.io/",
29+
"source_code_uri" => "https://github.com/rubygems/rubygems/tree/master/bundler",
30+
}
31+
32+
s.required_ruby_version = ">= 3.0.0"
33+
34+
# It should match the RubyGems version shipped with `required_ruby_version` above
35+
s.required_rubygems_version = ">= 3.2.3"
36+
37+
s.files = Dir.glob("lib/bundler{.rb,/**/*}", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
38+
39+
# include the gemspec itself because warbler breaks w/o it
40+
s.files += %w[bundler.gemspec]
41+
42+
s.files += %w[CHANGELOG.md LICENSE.md README.md]
43+
s.bindir = "exe"
44+
s.executables = %w[bundle bundler]
45+
s.require_paths = ["lib"]
46+
end
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
# Exit cleanly from an early interrupt
5+
Signal.trap("INT") do
6+
Bundler.ui.debug("\n#{caller.join("\n")}") if defined?(Bundler)
7+
exit 1
8+
end
9+
10+
base_path = File.expand_path("../lib", __dir__)
11+
12+
if File.exist?(base_path)
13+
$LOAD_PATH.unshift(base_path)
14+
end
15+
16+
require "bundler"
17+
18+
require "bundler/friendly_errors"
19+
20+
Bundler.with_friendly_errors do
21+
require "bundler/cli"
22+
23+
# Allow any command to use --help flag to show help for that command
24+
help_flags = %w[--help -h]
25+
help_flag_used = ARGV.any? {|a| help_flags.include? a }
26+
args = help_flag_used ? Bundler::CLI.reformatted_help_args(ARGV) : ARGV
27+
28+
Bundler::CLI.start(args, debug: true)
29+
end
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env ruby
2+
# frozen_string_literal: true
3+
4+
load File.expand_path("bundle", __dir__)

0 commit comments

Comments
 (0)