A curated list of open technology projects to sustain a stable climate, energy supply, biodiversity and natural resources.

EnergyDataSimulationChallenge

Allows applicants to demonstrate their ability to analyze and develop software that makes use of big energy production data.
https://github.com/enechange/EnergyDataSimulationChallenge

Keywords from Contributors

archiving measur transforms conversion observation optimize animals generic compose products

Last synced: over 1 year ago
JSON representation

Acceptance Criteria

Repository metadata

Challenge by ENECHANGE Ltd.

README.md

EnergyDataSimulationChallenge

Welcome to EnergyDataSimulationChallenge!

This project allows applicants to demonstrate their ability to analyze and develop software that makes use of big energy production data. Please complete one (or more) of the several challenges we have prepared. Pull-requests are also welcome.

Instructions

Steps

  1. Fork this repository
  2. Create a new branch
    (please name the branch challengeX/YOURNAME (eg. challenge1/shirakia))
  3. Create your development directory inside the analysis/ or webapp/ directory
  4. Design, write and commit your program to the above branch
  5. Push the branch
  6. Create a Pull Request

Attention

  • Avoid working on any branch except your own branch
  • Avoid committing files other than those in your own directory

Reward

  • For Full-Time Employment
    • A chance at a final interview with the CTO and engineers.
  • For Paid Internship
    • A paid internship offer (3 month internship programme with competitive salary)
    • Includes FREE accommodation (private room) and own desk at coworking space in London if you wish to work with us here.
    • Optionally, you may work remotely from a location of your choice.
    • After successful 3 month programme, you may be offered an extension, or another position (permanent, longer contract, additional intern, etc..)

Challenge 1 - Energy Production Data Simulation

We have prepared energy production data for 500 houses.
For each house, there is monthly data from July, 2011 to June, 2013.
The data contains temperature and daylight data.

Please make a model for predicting EnergyProduction using data from July 2011 to May 2013.
On that basis, predict EnergyProduction on June 2013 for each house, and calculate MAPE (Mean Absolute Percentage Error).
You can use any algorithm, including multiple-variables regression, polynomial regression, Neural network, SVM, etc...

We will check the following:

  • accuracy of prediction (MAPE)
  • algorithm choice
  • parameter tuning
  • programming skill

Please make sure to consider all of the above criteria (not just accuracy of prediction) when completing each challenge.

Input

The input dataset file inside the data/ directory has the following format:

$ head data/dataset_500.csv | column -s, -t
ID  Label  House  Year  Month  Temperature  Daylight  EnergyProduction
0   0      1      2011  7      26.2         178.9     740
1   1      1      2011  8      25.8         169.7     731
2   2      1      2011  9      22.8         170.2     694
3   3      1      2011  10     16.4         169.1     688
4   4      1      2011  11     11.4         169.1     650
5   5      1      2011  12     4.2          199.5     763
6   6      1      2012  1      1.8          203.1     765
7   7      1      2012  2      2.8          178.2     706
8   8      1      2012  3      6.7          172.7     788

The first line of the file gives the format name.
The rest of the file describes EnergyProduction data for 500 houses.
Each dataset consists of 24 lines showing monthly temperature and daylight EnergyProduction data.

training_dataset_500.csv and test_dataset_500.csv are subsets of dataset_500.csv.
test_dataset_500.csv includes only June 2013 data of each house (the rest can be found in training_dataset_500.csv).

You can use any of the given data you like; but please do not forget that you can use only data from July 2011 to May 2013 for training.

Output

Output is predicted_energy_production.csv, mape.txt and other files.
Please place these files in challenge1/analysis/YOURNAME/.

  1. predicted_energy_production.csv
    Must include House column and EnergyProduction column for each line.
    Any csv file that we can find which columns means House and EnergyProduction is also acceptable.
  2. mape.txt
    Need to include just MAPE value. Minimize it.
  3. another files
    Should include files you use, edit or write -- like R source code, batch Python file, excel file, etc..
    These files will help us understand your thought process.
    You are not required to commit any files that contain sensitive information.

Challenge 2 - Visualization of Energy Consumptions

The following task is intended to give us an idea of your data visualisation skills. Please use the tools and programming language with which you are most familiar.

Steps

  1. Download the data-set total-watt.csv
  2. The data-set consists of two columns: a time stamp and the energy consumption
  3. visualise the data-set
  4. visualise the data-set as values per day
  5. cluster the values per day into 3 groups: low, medium, and high energy consumption
  6. visualise the clusters (How you visualize the data is up to you. Please show us your imagination and creativity!)

Input

dataset file is in data/ directory as follows.

$ head data/total_watt.csv| column -s, -t
2011-04-18 13:22:00  925.840613752523
2011-04-18 13:52:00  483.295891812865
2011-04-18 14:22:00  915.761633660131
2011-04-18 14:52:00  609.043490935672
2011-04-18 15:22:00  745.155434458509
2011-04-18 15:52:00  409.855947368421
2011-04-18 16:22:00  434.084038321073
2011-04-18 16:52:00  152.684299188514
2011-04-18 17:22:00  327.579073188405
2011-04-18 17:52:00  156.826945856169

Output

Please place output files in challenge2/analysis/YOURNAME/.

  1. visualization of the data-set as values per 30mins
  2. visualization of the data-set as values per day
  3. visualization of the data-set as clusters

Challenge 3 - Web Application

Please create a web application to show house energy production.

  1. Insert csv files into SQL database. (MySQL, postgreSQL, etc..)
  2. Load data from DB and show it on the web with a web framework. (Rails preferred)
  3. Show 1 or 2 types of charts of the data. (no more than 2 types)
  4. (Option) Deploy it somewhere. (AWS, Heroku, your own server, etc...)

We will review basic programming skill, data modelling and what to show. We will not review your web design skill.

Input

Input dataset files in the challenge3/data/ directory contain data in the following format:

$ ls data/
dataset_50.csv  house_data.csv

$ head data/house_data.csv | column -s, -t
ID  Firstname  Lastname  City       num_of_people  has_child
1   Carolyn    Flores    London     2              Yes
2   Jennifer   Martinez  Cambridge  3              No
3   Larry      Robinson  London     4              Yes
4   Paul       Wright    Oxford     3              No
5   Frances    Ramirez   London     3              Yes
6   Pamela     Lee       Oxford     3              Yes
7   Patricia   Taylor    London     3              Yes
8   Denise     Lewis     Oxford     4              Yes
9   Kelly      Clark     Cambridge  4              No

(Names are by Random Name Generator http://random-name-generator.info/ )

dataset_50.csv is almost same to Challenge1's Input. It is smaller and its ID starts with 1 rather than 0. Please refer to Challenge1.
house_data.csv is household data related to dataset_50.csv.
The first line gives the format name. ID column values in this file are same to House column values in dataset_50.csv. City column includes 'London', 'Cambridge' and 'Oxford'. has_child column has only 'Yes' or 'No'.

Output

  1. Fork this repository.
  2. Place all source code in challenge3/webapp/YOURNAME/.
  3. Create a pull request.
  4. (Option) Write deployed url in pull request comment.

You can refer to sample implementation in challenge3/webapp/sample/, but please bear in mind that it is a rough implementation and may be broken in some places.

Challenge 4 - WEB-API Server

Please create a web api server to calculate electricity charges.

  1. see TEPCO's explanation of electricity charges.
  1. you have to calculate Energy Charge of "Meter-Rate Lighting B" and "Yoru Toku Plan",
    and write WEB-API server with your favorite web framework ( Ruby on Rails preferred )
    Energy Charge grows when the energy consumption ( kWh ) is bigger.

  2. deploy it to somewhere ( AWS, heroku, your own server, etc...)

We will review basic programming skill, API design and performance.

Input

The input dataset files in challenge4/data/ contain data in the following format:

  $ ls data/
sample-consumption.json plans.json

  $ cat data/sample-consumption.json
[
  [ 0.2, 0.3, 0.2, ... ], # 24 values for 1st day, 1 am, 2 am .. 12 am, 1 pm ..  12 pm
  [ 0.2, 0.3, 0.2, ... ], # 24 values for 2nd day
  ...
  [ 0.2, 0.3, 0.2, ... ]  # 24 values for 31st day
]

sample-consumptions.json is a JSON array of arrays of float values.
Each float value is a energy consumption(kWh).
First value of a day is a consumption from 0 am to 1 am.

  $ cat data/plans.json
{
  "Meter-Rate Lighting B": {
    "Day time": [
      [ null, 120, 19.43],
      [ 120, 300, 25.91],
      [ 300, null, 29.93]
    ],
    "Night time": null,
    "Night time range": null
  },

  "Yoru Toku Plan": {
    "Day time": [
      [ null, 90, 24.03],
      [ 90, 230, 32.03],
      [ 230, null, 37.00]
    ],
    "Night time": [
      [ null, null, 12.48]
    ],
    "Night time range":
      [ true, true, true, true,
        true, false, false, false,
        false, false, false, false,
        false, false, false, false,
        false, false, false, false,
        false, true, true, true ]
  }
}

"Day time" and "Night time" values are array [ from kWh, to kWh, unit price tax included ]

[ null, 120, 19.43 ] :
means the unit price is ¥19.43 per kilo watt hour upto initial 120 kWh.
[ 300, null, 29.93 ] :
means the unit price is ¥29.93 when the energy consumption is larger than 300 kWh.

When "Night time" attribute is null, the plan has only day time.
"Night time range" is 24 boolean values which represent 24 hours night time and day time.

(Yoru Toku Plan offers discount rate in night time.)

Output of the API is just one float number of Energy Charge with tax.

Output

  1. Please set ALL source codes in challenge4/webapp/YOURNAME/
  2. Write deployed URL in Pull Request Comment.

Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: over 1 year ago

Total Commits: 1,373
Total Committers: 118
Avg Commits per committer: 11.636
Development Distribution Score (DDS): 0.902

Commits in past year: 0
Committers in past year: 0
Avg Commits per committer in past year: 0.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
dependabot[bot] 4****] 135
kumackey k****0@g****m 104
Ryu007 r****o@g****m 50
shirakia a****i@g****m 48
Yukio Ugajin j****o@g****m 37
Masayuki Tanaka m****2@m****m 35
toshi me@t****t 34
Tsutsumi Fukumu l****v@g****m 31
terapasta h****4@g****m 29
Akiyoshi Ohtani o****i@a****p 28
maxconway c****1@g****m 28
ippei 1****a@g****m 26
yoshikawa keishi a****k@g****m 26
y-shinada y****m@g****m 26
hirokishirai s****p@g****m 25
yukaina m****a@g****m 23
kazuooooo m****7@g****m 23
Naohiro Sakuma n****o@N****l 22
o-t-k-t w****n@g****m 21
goi k****t@g****m 21
EC2 Default User e****r@i****l 20
Tomoyuki Honjo t****o@m****p 20
Yoshi-tech-17 y****a@d****p 20
msymori m****r@g****m 20
deme0607 h****5@g****m 19
Sungho Arai s****k@g****m 19
Piri-kara h****q@y****p 17
windyakin w****n@g****m 16
user r****3@g****m 16
Osamu Takiya t****a@t****p 15
and 88 more...

Committer domains:


Issue and Pull Request metadata

Last synced: over 1 year ago

Total issues: 2
Total pull requests: 318
Average time to close issues: about 1 month
Average time to close pull requests: 29 days
Total issue authors: 1
Total pull request authors: 132
Average comments per issue: 0.5
Average comments per pull request: 1.21
Merged pull request: 272
Bot issues: 0
Bot pull requests: 142

Past year issues: 0
Past year pull requests: 1
Past year average time to close issues: N/A
Past year average time to close pull requests: N/A
Past year issue authors: 0
Past year pull request authors: 1
Past year average comments per issue: 0
Past year average comments per pull request: 0.0
Past year merged pull request: 0
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/enechange/EnergyDataSimulationChallenge

Top Issue Authors

  • shirakia (2)

Top Pull Request Authors

  • dependabot[bot] (142)
  • shirakia (13)
  • ghost (4)
  • peisan (3)
  • liangyao910 (3)
  • jcsuarez (3)
  • rikky0611 (3)
  • maxconway (3)
  • thedimlebowski (2)
  • keishi1129 (2)
  • jerrywdlee (2)
  • shota-imoto (2)
  • tendergorilla55 (2)
  • nyoshimura (2)
  • shumatsuura (2)

Top Issue Labels

Top Pull Request Labels

  • dependencies (142)
  • ruby (49)
  • javascript (31)
  • enhancement (1)

Dependencies

challenge3/webapp/gyoh/Godeps/Godeps.json go
  • github.com/codegangsta/inject 9aea7a2fa5b79ef7fc00f63a575e72df33b4e886
  • github.com/coopernurse/gorp 242be3eec6e4d545d0eca24b5dc71236b71ac656
  • github.com/go-martini/martini baa42219288cdd775874794381aa987144012263
  • github.com/go-sql-driver/mysql 9a7aa3606b82e2081a13a008ada88dfdb96c20fd
  • github.com/martini-contrib/render 7b617783357fec5b5a6d4ecac82e747e4a14d1b5
challenge3/webapp/colinlee_chanllenge3/package-lock.json npm
  • 1136 dependencies
challenge3/webapp/colinlee_chanllenge3/package.json npm
  • @typescript-eslint/eslint-plugin ^2.24.0 development
  • @typescript-eslint/parser ^2.24.0 development
  • eslint ^6.8.0 development
  • eslint-plugin-react ^7.19.0 development
  • webpack-dev-server ^3.10.3 development
  • @babel/polyfill ^7.8.7
  • @babel/preset-react ^7.8.3
  • @babel/preset-typescript ^7.8.3
  • @rails/webpacker 4.2.2
  • @types/react ^16.9.23
  • @types/react-dom ^16.9.5
  • axios ^0.19.2
  • babel-plugin-transform-react-remove-prop-types ^0.4.24
  • babel-polyfill ^6.26.0
  • pnp-webpack-plugin ^1.6.4
  • prop-types ^15.7.2
  • react ^16.13.0
  • react-dom ^16.13.0
  • react_ujs ^2.6.1
  • recharts ^1.8.5
  • ts-loader ^6.2.1
  • typescript ^3.8.3
  • webpacker-react ^0.3.2
challenge3/webapp/colinlee_chanllenge3/yarn.lock npm
  • 1139 dependencies
challenge3/webapp/goi/front/package.json npm
  • @material-ui/core ^4.11.0
  • @testing-library/jest-dom ^4.2.4
  • @testing-library/react ^9.3.2
  • @testing-library/user-event ^7.1.2
  • axios ^0.19.2
  • moment ^2.27.0
  • react 16.0.0
  • react-dom ^16.13.1
  • react-scripts 3.4.1
  • recharts ^1.8.5
challenge3/webapp/goi/front/yarn.lock npm
  • 1483 dependencies
challenge3/webapp/goi/package.json npm
  • @material-ui/core ^4.11.0
  • @testing-library/jest-dom ^4.2.4
  • @testing-library/react ^9.3.2
  • @testing-library/user-event ^7.1.2
  • axios ^0.19.2
  • moment ^2.27.0
  • react 16.0.0
  • react-dom ^16.13.1
  • react-scripts 3.4.1
  • recharts ^1.8.5
challenge3/webapp/goi/yarn.lock npm
  • 1483 dependencies
challenge3/webapp/gyoh/package.json npm
  • coffee-script 1.6.3 development
  • grunt 0.4.x development
  • grunt-contrib-clean 0.4.x development
  • grunt-contrib-coffee 0.4.x development
  • grunt-contrib-copy 0.4.x development
  • grunt-contrib-stylus 0.4.x development
challenge3/webapp/hamkuu/frontend_react_spa/package-lock.json npm
  • 1467 dependencies
challenge3/webapp/hamkuu/frontend_react_spa/package.json npm
  • @apollo/react-hooks ^3.1.3
  • @material-ui/core ^4.8.2
  • @testing-library/jest-dom ^4.2.4
  • @testing-library/react ^9.4.0
  • @testing-library/user-event ^7.2.1
  • apollo-boost ^0.4.7
  • graphql ^14.5.8
  • react ^16.12.0
  • react-dom ^16.12.0
  • react-router-dom ^5.1.2
  • react-scripts 3.3.0
  • recharts ^2.0.0-beta.1
challenge3/webapp/hiroaki_terayama/package.json npm
  • webpack-dev-server 2.11.2 development
  • @rails/webpacker 3.5
  • axios ^0.21.1
  • chart.js ^2.7.3
  • vue ^2.6.7
  • vue-chartjs ^3.4.0
  • vue-loader 14.2.2
  • vue-template-compiler ^2.6.7
challenge3/webapp/hiroaki_terayama/yarn.lock npm
  • 956 dependencies
challenge3/webapp/hirokishirai/package.json npm
  • webpack-dev-server ^3.2.1 development
  • @rails/actioncable ^6.0.0-alpha
  • @rails/activestorage ^6.0.0-alpha
  • @rails/ujs ^6.0.0-alpha
  • @rails/webpacker ^4.0.2
  • c3 ^0.6.13
  • turbolinks ^5.2.0
challenge3/webapp/hirokishirai/yarn.lock npm
  • 981 dependencies
challenge3/webapp/ishiwata/package-lock.json npm
  • 891 dependencies
challenge3/webapp/ishiwata/package.json npm
  • webpack-dev-server ^3.10.3 development
  • @rails/webpacker 4.2.2
  • axios ^0.19.2
  • chart.js ^2.9.3
  • vue ^2.6.11
  • vue-chartjs ^3.5.0
  • vue-loader ^15.9.0
  • vue-template-compiler ^2.6.11
challenge3/webapp/ishiwata/yarn.lock npm
  • 1004 dependencies
challenge3/webapp/j-iwatsubo/package.json npm
  • chart.js ^2.7.1
challenge3/webapp/masuda/front/package-lock.json npm
  • 1109 dependencies
challenge3/webapp/masuda/front/package.json npm
  • @vue/cli-plugin-babel ^4.0.0 development
  • @vue/cli-plugin-eslint ^4.0.0 development
  • @vue/cli-service ^4.0.0 development
  • babel-eslint ^10.0.3 development
  • eslint ^5.16.0 development
  • eslint-plugin-vue ^5.0.0 development
  • vue-template-compiler ^2.6.10 development
  • axios ^0.19.0
  • core-js ^3.3.2
  • highcharts ^7.2.0
  • highcharts-vue ^1.3.5
  • vue ^2.6.10
  • vue-router ^3.1.3
challenge3/webapp/masuri/package.json npm
  • webpack-dev-server ^3.11.0 development
  • @rails/actioncable ^6.0.0
  • @rails/activestorage ^6.0.0
  • @rails/ujs ^6.0.0
  • @rails/webpacker 4.2.2
  • chart.js ^2.9.3
  • chartkick ^3.2.0
challenge3/webapp/masuri/yarn.lock npm
  • 1004 dependencies
challenge3/webapp/msaito/package.json npm
  • dependencies --- !ruby/hash:ActiveSupport::HashWithIndifferentAccess chart.js: "^2.7.1"
challenge3/webapp/naokiishikawa/package.json npm
  • webpack-dev-server ^2.7.1 development
  • @rails/webpacker ^3.0.1
  • axios ^0.19.0
  • chart.js ^2.7.0
  • vue ^2.4.4
  • vue-chartjs ^2.8.7
  • vue-loader ^13.0.4
  • vue-template-compiler ^2.4.4
  • vuex ^2.4.0
challenge3/webapp/shimada/package.json npm
  • admin-lte 3.0.0
  • highcharts ^7.2.1
challenge3/webapp/shimada/yarn.lock npm
  • 203 dependencies
challenge3/webapp/shimakura/package.json npm
  • webpack-dev-server ^3.8.2 development
  • @rails/actioncable ^6.0.0-alpha
  • @rails/activestorage ^6.0.0-alpha
  • @rails/ujs ^6.0.0-alpha
  • @rails/webpacker ^4.0.7
  • bootstrap 4.3.1
  • chart.js ^2.8.0
  • chartkick ^3.1.1
  • jquery ^3.4.1
  • popper.js ^1.15.0
  • turbolinks ^5.2.0
challenge3/webapp/shimakura/yarn.lock npm
  • 977 dependencies
challenge3/webapp/shotaimoto/package.json npm
  • chart.js ^2.9.3
  • chartkick ^3.2.1
challenge3/webapp/shotaimoto/yarn.lock npm
  • chart.js 2.9.3
  • chartjs-color 2.4.1
  • chartjs-color-string 0.6.0
  • chartkick 3.2.1
  • color-convert 1.9.3
  • color-name 1.1.3
  • color-name 1.1.4
  • moment 2.28.0
challenge3/webapp/smatsuda/edsc-c3/package.json npm
  • chart.js ^2.7.1
challenge3/webapp/takuya_kikuchi/package.json npm
  • webpack-dev-server ^3.10.3 development
  • @rails/actioncable ^6.0.0
  • @rails/activestorage ^6.0.0
  • @rails/ujs ^6.0.0
  • @rails/webpacker 4.2.2
  • jquery ^3.4.1
  • turbolinks ^5.2.0
challenge3/webapp/takuya_kikuchi/yarn.lock npm
  • 997 dependencies
challenge3/webapp/tetsushi_fukabori/package-lock.json npm
  • google-palette 1.1.0
challenge3/webapp/tetsushi_fukabori/package.json npm
  • google-palette ^1.1.0
challenge3/webapp/th5o/package.json npm
  • webpack-dev-server ^3.3.1 development
  • @rails/webpacker ^4.0.2
  • c3 ^0.7.0
challenge3/webapp/th5o/yarn.lock npm
  • 980 dependencies
challenge3/webapp/toshihiro_yokota/package.json npm
  • webpack-dev-server ^3.11.0 development
  • @rails/activestorage ^6.0.0
  • @rails/ujs ^6.0.0
  • @rails/webpacker 4.3.0
  • chart.js ^2.9.3
  • chartkick ^3.2.1
  • turbolinks ^5.2.0
challenge3/webapp/toshihiro_yokota/yarn.lock npm
  • 1016 dependencies
challenge3/webapp/toshikiokabe/package.json npm
  • tslint ^5.14.0 development
  • tslint-config-airbnb ^5.11.1 development
  • tslint-loader ^3.5.4 development
  • webpack-dev-server ^3.2.1 development
  • @rails/webpacker ^4.0.2
  • @types/chartjs ^0.0.31
  • chart.js ^2.8.0
  • ts-loader ^5.3.3
  • typescript ^3.3.3333
challenge3/webapp/toshikiokabe/yarn.lock npm
  • 971 dependencies
challenge3/webapp/yoshikawa_keishi/package.json npm
  • webpack-dev-server ^3.10.3 development
  • @rails/actioncable ^6.0.0
  • @rails/activestorage ^6.0.0
  • @rails/ujs ^6.0.0
  • @rails/webpacker 4.2.2
  • bootstrap ^4.4.1
  • bootstrap-material-design ^4.1.2
  • chart.js ^2.9.3
  • chartkick ^3.2.0
  • jquery ^3.4.1
  • popper.js ^1.16.1
  • turbolinks ^5.2.0
challenge3/webapp/yoshikawa_keishi/yarn.lock npm
  • 1005 dependencies
challenge3/webapp/yuji_uchida/package.json npm
  • webpack-dev-server ^3.11.2 development
  • @rails/actioncable ^6.0.0
  • @rails/activestorage ^6.0.0
  • @rails/ujs ^6.0.0
  • @rails/webpacker 5.2.1
  • chart.js ^2.9.4
  • chartkick ^3.2.1
  • turbolinks ^5.2.0
challenge3/webapp/yuji_uchida/yarn.lock npm
  • 1022 dependencies
challenge3/webapp/yukio_ugajin/package.json npm
  • webpack-dev-server ^3.9.0 development
  • @rails/actioncable ^6.0.0
  • @rails/activestorage ^6.0.0
  • @rails/ujs ^6.0.0
  • @rails/webpacker ^4.2.0
  • turbolinks ^5.2.0
challenge3/webapp/yukio_ugajin/yarn.lock npm
  • 999 dependencies
challenge3/webapp/colinlee_chanllenge3/Gemfile rubygems
  • brakeman >= 0 development
  • bundler-audit >= 0 development
  • danger >= 0 development
  • database_cleaner >= 0 development
  • factory_bot >= 0 development
  • factory_bot_rails >= 0 development
  • ffaker >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • pry >= 0 development
  • rspec-rails = 4.0.0.beta4 development
  • rubocop >= 0 development
  • rubocop-performance >= 0 development
  • rubocop-rails >= 0 development
  • shoulda-matchers ~> 4.3 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • activeadmin >= 0
  • devise >= 0
  • html2slim >= 0
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 6.0.2, >= 6.0.2.1
  • react-rails >= 0
  • sass-rails ~> 5.0
  • slim-rails >= 0
  • turbolinks ~> 5
  • uglifier >= 1.3.0
  • unicorn >= 0
  • webpacker >= 0
challenge3/webapp/colinlee_chanllenge3/Gemfile.lock rubygems
  • 144 dependencies
challenge3/webapp/cuzic/Gemfile rubygems
  • byebug >= 0 development
  • sdoc ~> 0.4.0 development
  • spring >= 0 development
  • web-console ~> 2.0 development
  • bootstrap-sass >= 0
  • coffee-rails ~> 4.1.0
  • crossfilter-rails >= 0
  • d3-rails >= 0
  • dcjs-rails >= 0
  • font-awesome-rails >= 0
  • jbuilder ~> 2.0
  • jquery-rails >= 0
  • less-rails >= 0
  • pg >= 0
  • rails = 4.2.1
  • rails_12factor >= 0
  • rails_admin >= 0
  • sass-rails ~> 5.0
  • slim-rails >= 0
  • therubyracer >= 0
  • turbolinks >= 0
  • twitter-bootstrap-rails >= 0
  • uglifier >= 1.3.0
challenge3/webapp/cuzic/Gemfile.lock rubygems
  • actionmailer 4.2.1
  • actionpack 4.2.1
  • actionview 4.2.1
  • activejob 4.2.1
  • activemodel 4.2.1
  • activerecord 4.2.1
  • activesupport 4.2.1
  • arel 6.0.0
  • autoprefixer-rails 5.1.8
  • binding_of_caller 0.7.2
  • bootstrap-sass 3.3.4.1
  • builder 3.2.2
  • byebug 4.0.4
  • coffee-rails 4.1.0
  • coffee-script 2.3.0
  • coffee-script-source 1.9.1
  • columnize 0.9.0
  • commonjs 0.2.7
  • crass 1.0.5
  • crossfilter-rails 1.3.7
  • d3-rails 3.5.5
  • dcjs-rails 1.6.0
  • debug_inspector 0.0.2
  • erubis 2.7.0
  • execjs 2.4.0
  • font-awesome-rails 4.3.0.0
  • globalid 0.3.3
  • haml 4.0.6
  • hike 1.2.3
  • i18n 0.7.0
  • jbuilder 2.2.12
  • jquery-rails 4.0.3
  • jquery-ui-rails 5.0.3
  • json 1.8.2
  • kaminari 0.16.3
  • less 2.6.0
  • less-rails 2.6.0
  • libv8 3.16.14.7
  • loofah 2.3.1
  • mail 2.6.3
  • mime-types 2.4.3
  • mini_portile2 2.1.0
  • minitest 5.5.1
  • multi_json 1.11.0
  • nested_form 0.3.2
  • nokogiri 1.6.8.1
  • pg 0.18.1
  • rack 1.6.12
  • rack-pjax 0.8.0
  • rack-test 0.6.3
  • rails 4.2.1
  • rails-deprecated_sanitizer 1.0.3
  • rails-dom-testing 1.0.6
  • rails-html-sanitizer 1.0.2
  • rails_12factor 0.0.3
  • rails_admin 0.6.7
  • rails_serve_static_assets 0.0.5
  • rails_stdout_logging 0.0.5
  • railties 4.2.1
  • rake 12.3.3
  • rdoc 4.2.0
  • ref 1.0.5
  • remotipart 1.2.1
  • safe_yaml 1.0.4
  • sass 3.4.13
  • sass-rails 5.0.3
  • sdoc 0.4.1
  • slim 3.0.3
  • slim-rails 3.0.1
  • spring 1.3.3
  • sprockets 2.12.3
  • sprockets-rails 2.2.4
  • temple 0.7.5
  • therubyracer 0.12.1
  • thor 0.19.1
  • thread_safe 0.3.5
  • tilt 1.4.1
  • turbolinks 2.5.3
  • twitter-bootstrap-rails 3.1.1
  • tzinfo 1.2.2
  • uglifier 2.7.1
  • web-console 2.1.2
challenge3/webapp/daichi5/Gemfile rubygems
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • rubocop >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • chart-js-rails >= 0
  • coffee-rails ~> 4.2
  • gon >= 0
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.3
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • uglifier >= 1.3.0
challenge3/webapp/daichi5/Gemfile.lock rubygems
  • actioncable 5.2.3
  • actionmailer 5.2.3
  • actionpack 5.2.3
  • actionview 5.2.3
  • activejob 5.2.3
  • activemodel 5.2.3
  • activerecord 5.2.3
  • activestorage 5.2.3
  • activesupport 5.2.3
  • addressable 2.6.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • ast 2.4.0
  • bindex 0.8.1
  • bootsnap 1.4.4
  • builder 3.2.3
  • byebug 11.0.1
  • capybara 3.26.0
  • chart-js-rails 0.1.6
  • childprocess 1.0.1
  • chromedriver-helper 2.1.1
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.5
  • crass 1.0.4
  • erubi 1.8.0
  • execjs 2.7.0
  • ffi 1.11.1
  • globalid 0.4.2
  • gon 6.2.1
  • i18n 1.6.0
  • io-like 0.3.0
  • jaro_winkler 1.5.3
  • jbuilder 2.9.1
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.3.0
  • multi_json 1.13.1
  • nio4r 2.4.0
  • nokogiri 1.10.3
  • parallel 1.17.0
  • parser 2.6.3.0
  • pg 1.1.4
  • public_suffix 3.1.1
  • puma 3.12.1
  • rack 2.0.7
  • rack-test 1.1.0
  • rails 5.2.3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.3
  • rainbow 3.0.0
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • regexp_parser 1.6.0
  • request_store 1.4.1
  • rubocop 0.73.0
  • ruby-progressbar 1.10.1
  • ruby_dep 1.5.0
  • rubyzip 1.2.3
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • selenium-webdriver 3.142.3
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • uglifier 4.1.20
  • unicode-display_width 1.6.0
  • web-console 3.7.0
  • websocket-driver 0.7.1
  • websocket-extensions 0.1.4
  • xpath 3.2.0
challenge3/webapp/deme0607/Gemfile rubygems
  • byebug >= 0 development
  • sdoc ~> 0.4.0 development
  • spring >= 0 development
  • web-console ~> 2.0 development
  • bower-rails >= 0
  • haml-rails >= 0
  • jbuilder ~> 2.0
  • jquery-rails >= 0
  • mysql2 >= 0.3.13, < 0.5
  • rails = 4.2.5
  • sass-rails ~> 5.0
  • uglifier >= 1.3.0
challenge3/webapp/deme0607/Gemfile.lock rubygems
  • actionmailer 4.2.5
  • actionpack 4.2.5
  • actionview 4.2.5
  • activejob 4.2.5
  • activemodel 4.2.5
  • activerecord 4.2.5
  • activesupport 4.2.5
  • arel 6.0.3
  • binding_of_caller 0.7.2
  • bower-rails 0.10.0
  • builder 3.2.3
  • byebug 8.2.1
  • concurrent-ruby 1.0.0
  • crass 1.0.5
  • debug_inspector 0.0.2
  • erubis 2.7.0
  • execjs 2.6.0
  • globalid 0.3.6
  • haml 4.0.7
  • haml-rails 0.9.0
  • html2haml 2.2.0
  • i18n 0.9.5
  • jbuilder 2.4.0
  • jquery-rails 4.1.0
  • json 1.8.6
  • loofah 2.3.1
  • mail 2.6.3
  • mime-types 2.99
  • mini_portile2 2.5.0
  • minitest 5.13.0
  • multi_json 1.11.2
  • mysql2 0.4.2
  • nokogiri 1.11.1
  • racc 1.5.2
  • rack 1.6.12
  • rack-test 0.6.3
  • rails 4.2.5
  • rails-deprecated_sanitizer 1.0.3
  • rails-dom-testing 1.0.9
  • rails-html-sanitizer 1.3.0
  • railties 4.2.5
  • rake 13.0.1
  • rdoc 4.2.1
  • ruby_parser 3.14.1
  • sass 3.4.21
  • sass-rails 5.0.4
  • sdoc 0.4.1
  • sexp_processor 4.13.0
  • spring 1.6.2
  • sprockets 3.5.2
  • sprockets-rails 3.0.0
  • thor 0.19.1
  • thread_safe 0.3.6
  • tilt 2.0.10
  • tzinfo 1.2.5
  • uglifier 2.7.2
  • web-console 2.2.1
challenge3/webapp/goi/Gemfile rubygems
  • byebug >= 0 development
  • listen ~> 3.2 development
  • pry-byebug >= 0 development
  • pry-doc >= 0 development
  • pry-rails >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • bootsnap >= 1.4.2
  • foreman >= 0
  • mysql2 >= 0.4.4
  • puma ~> 4.1
  • rack-cors >= 0
  • rails ~> 6.0.3
  • tzinfo-data >= 0
challenge3/webapp/goi/Gemfile.lock rubygems
  • actioncable 6.0.3.2
  • actionmailbox 6.0.3.2
  • actionmailer 6.0.3.2
  • actionpack 6.0.3.2
  • actiontext 6.0.3.2
  • actionview 6.0.3.2
  • activejob 6.0.3.2
  • activemodel 6.0.3.2
  • activerecord 6.0.3.2
  • activestorage 6.0.3.2
  • activesupport 6.0.3.2
  • bootsnap 1.4.6
  • builder 3.2.4
  • byebug 11.1.3
  • coderay 1.1.3
  • concurrent-ruby 1.1.6
  • crass 1.0.6
  • erubi 1.9.0
  • ffi 1.13.1
  • foreman 0.87.1
  • globalid 0.4.2
  • i18n 1.8.3
  • listen 3.2.1
  • loofah 2.6.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 1.0.0
  • mimemagic 0.3.5
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.14.1
  • msgpack 1.3.3
  • mysql2 0.5.3
  • nio4r 2.5.2
  • nokogiri 1.10.10
  • pry 0.13.1
  • pry-byebug 3.9.0
  • pry-doc 1.1.0
  • pry-rails 0.3.9
  • puma 4.3.5
  • rack 2.2.3
  • rack-cors 1.1.1
  • rack-test 1.1.0
  • rails 6.0.3.2
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 6.0.3.2
  • rake 13.0.1
  • rb-fsevent 0.10.4
  • rb-inotify 0.10.1
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 4.0.2
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tzinfo 1.2.7
  • websocket-driver 0.7.2
  • websocket-extensions 0.1.5
  • yard 0.9.25
  • zeitwerk 2.3.1
challenge3/webapp/hamkuu/backend_rails_api/Gemfile rubygems
  • byebug >= 0 development
  • graphiql-rails ~> 1.7 development
  • listen >= 3.0.5, < 3.2 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • bootsnap >= 1.4.2
  • graphql ~> 1.9
  • pg ~> 0.18.4
  • puma ~> 4.1
  • rack-cors >= 0
  • rails ~> 6.0.2, >= 6.0.2.1
  • tzinfo-data >= 0
challenge3/webapp/hamkuu/backend_rails_api/Gemfile.lock rubygems
  • actioncable 6.0.2.1
  • actionmailbox 6.0.2.1
  • actionmailer 6.0.2.1
  • actionpack 6.0.2.1
  • actiontext 6.0.2.1
  • actionview 6.0.2.1
  • activejob 6.0.2.1
  • activemodel 6.0.2.1
  • activerecord 6.0.2.1
  • activestorage 6.0.2.1
  • activesupport 6.0.2.1
  • bootsnap 1.4.5
  • builder 3.2.4
  • byebug 11.0.1
  • concurrent-ruby 1.1.5
  • crass 1.0.5
  • erubi 1.9.0
  • ffi 1.11.3
  • globalid 0.4.2
  • graphiql-rails 1.7.0
  • graphql 1.9.17
  • i18n 1.7.0
  • listen 3.1.5
  • loofah 2.4.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.13.0
  • msgpack 1.3.1
  • nio4r 2.5.2
  • nokogiri 1.10.7
  • pg 0.18.4
  • puma 4.3.1
  • rack 2.0.8
  • rack-cors 1.1.1
  • rack-test 1.1.0
  • rails 6.0.2.1
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 6.0.2.1
  • rake 13.0.1
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.1
  • ruby_dep 1.5.0
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 4.0.0
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tzinfo 1.2.6
  • websocket-driver 0.7.1
  • websocket-extensions 0.1.4
  • zeitwerk 2.2.2
challenge3/webapp/hiroaki_terayama/Gemfile rubygems
  • byebug >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • activerecord-import >= 0
  • bootsnap >= 1.1.0
  • bulma-rails >= 0
  • foreman >= 0
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.2
  • sassc-rails >= 0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
  • webpacker >= 0
challenge3/webapp/hiroaki_terayama/Gemfile.lock rubygems
  • actioncable 5.2.2
  • actionmailer 5.2.2
  • actionpack 5.2.2
  • actionview 5.2.2
  • activejob 5.2.2
  • activemodel 5.2.2
  • activerecord 5.2.2
  • activerecord-import 1.0.0
  • activestorage 5.2.2
  • activesupport 5.2.2
  • arel 9.0.0
  • bindex 0.5.0
  • bootsnap 1.4.0
  • builder 3.2.3
  • bulma-rails 0.7.4
  • byebug 11.0.0
  • concurrent-ruby 1.1.4
  • crass 1.0.4
  • dotenv 0.7.0
  • erubi 1.8.0
  • execjs 2.7.0
  • ffi 1.10.0
  • foreman 0.64.0
  • globalid 0.4.2
  • i18n 1.5.3
  • jbuilder 2.8.0
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.6
  • multi_json 1.13.1
  • nio4r 2.3.1
  • nokogiri 1.10.1
  • pg 1.1.4
  • puma 3.12.0
  • rack 2.0.6
  • rack-proxy 0.6.5
  • rack-test 1.1.0
  • rails 5.2.2
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.2
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • ruby_dep 1.5.0
  • sass 3.7.3
  • sass-listen 4.0.0
  • sassc 2.0.1
  • sassc-rails 2.1.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • uglifier 4.1.20
  • web-console 3.7.0
  • webpacker 3.5.5
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
challenge3/webapp/hirokishirai/Gemfile rubygems
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • rubocop >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • active_median >= 0
  • activerecord-import >= 0
  • bootsnap >= 1.4.1
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 6.0.0.beta3
  • rails-i18n ~> 6.0.0.beta1
  • sassc-rails >= 0
  • slim-rails >= 0
  • turbolinks ~> 5
  • webpacker >= 4.0.0.rc.3
challenge3/webapp/hirokishirai/Gemfile.lock rubygems
  • actioncable 6.0.0.beta3
  • actionmailbox 6.0.0.beta3
  • actionmailer 6.0.0.beta3
  • actionpack 6.0.0.beta3
  • actiontext 6.0.0.beta3
  • actionview 6.0.0.beta3
  • active_median 0.2.2
  • activejob 6.0.0.beta3
  • activemodel 6.0.0.beta3
  • activerecord 6.0.0.beta3
  • activerecord-import 1.0.1
  • activestorage 6.0.0.beta3
  • activesupport 6.0.0.beta3
  • addressable 2.6.0
  • archive-zip 0.12.0
  • ast 2.4.0
  • bindex 0.5.0
  • bootsnap 1.4.1
  • builder 3.2.3
  • byebug 11.0.0
  • capybara 3.14.0
  • childprocess 0.9.0
  • chromedriver-helper 2.1.0
  • concurrent-ruby 1.1.5
  • crass 1.0.4
  • erubi 1.8.0
  • ffi 1.10.0
  • globalid 0.4.2
  • i18n 1.6.0
  • io-like 0.3.0
  • jaro_winkler 1.5.2
  • jbuilder 2.8.0
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.9
  • multi_json 1.13.1
  • nio4r 2.3.1
  • nokogiri 1.10.1
  • parallel 1.14.0
  • parser 2.6.0.0
  • pg 1.1.4
  • powerpack 0.1.2
  • psych 3.1.0
  • public_suffix 3.0.3
  • puma 3.12.0
  • rack 2.0.6
  • rack-proxy 0.6.5
  • rack-test 1.1.0
  • rails 6.0.0.beta3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • rails-i18n 6.0.0.beta1
  • railties 6.0.0.beta3
  • rainbow 3.0.0
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • regexp_parser 1.3.0
  • rubocop 0.65.0
  • ruby-progressbar 1.10.0
  • ruby_dep 1.5.0
  • rubyzip 1.2.2
  • sassc 2.0.1
  • sassc-rails 2.1.0
  • selenium-webdriver 3.141.0
  • slim 4.0.1
  • slim-rails 3.2.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • temple 0.8.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • unicode-display_width 1.4.1
  • web-console 3.7.0
  • webpacker 4.0.2
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
  • xpath 3.2.0
  • zeitwerk 1.3.4
challenge3/webapp/hnishioka/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • pry-byebug >= 0 development
  • pry-rails >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • activerecord-import >= 0
  • bootsnap >= 1.1.0
  • coffee-rails ~> 4.2
  • gon >= 0
  • jbuilder ~> 2.5
  • mysql2 >= 0.4.4, < 0.6.0
  • puma ~> 3.11
  • rails ~> 5.2.2
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/hnishioka/Gemfile.lock rubygems
  • actioncable 5.2.2
  • actionmailer 5.2.2
  • actionpack 5.2.2
  • actionview 5.2.2
  • activejob 5.2.2
  • activemodel 5.2.2
  • activerecord 5.2.2
  • activerecord-import 1.0.0
  • activestorage 5.2.2
  • activesupport 5.2.2
  • addressable 2.6.0
  • archive-zip 0.11.0
  • arel 9.0.0
  • bindex 0.5.0
  • bootsnap 1.4.0
  • builder 3.2.3
  • byebug 10.0.2
  • capybara 3.13.2
  • childprocess 0.9.0
  • chromedriver-helper 2.1.0
  • coderay 1.1.2
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.4
  • crass 1.0.4
  • erubi 1.8.0
  • execjs 2.7.0
  • ffi 1.10.0
  • globalid 0.4.2
  • gon 6.2.1
  • i18n 1.5.3
  • io-like 0.3.0
  • jbuilder 2.8.0
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.6
  • multi_json 1.13.1
  • mysql2 0.5.2
  • nio4r 2.3.1
  • nokogiri 1.10.1
  • pry 0.12.2
  • pry-byebug 3.6.0
  • pry-rails 0.3.9
  • public_suffix 3.0.3
  • puma 3.12.0
  • rack 2.0.6
  • rack-test 1.1.0
  • rails 5.2.2
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.2
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • regexp_parser 1.3.0
  • request_store 1.4.1
  • ruby_dep 1.5.0
  • rubyzip 1.2.2
  • sass 3.7.3
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • selenium-webdriver 3.141.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • uglifier 4.1.20
  • web-console 3.7.0
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
  • xpath 3.2.0
challenge3/webapp/ishioka/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • factory_bot_rails >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • pry ~> 0.12.2 development
  • rspec-rails >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • annotate >= 0
  • bootsnap >= 1.1.0
  • chartkick >= 0
  • coffee-rails ~> 4.2
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.3
  • sass-rails ~> 5.0
  • seed-fu >= 0
  • slim-rails >= 0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/ishioka/Gemfile.lock rubygems
  • actioncable 5.2.3
  • actionmailer 5.2.3
  • actionpack 5.2.3
  • actionview 5.2.3
  • activejob 5.2.3
  • activemodel 5.2.3
  • activerecord 5.2.3
  • activestorage 5.2.3
  • activesupport 5.2.3
  • addressable 2.6.0
  • annotate 2.7.5
  • archive-zip 0.12.0
  • arel 9.0.0
  • bindex 0.7.0
  • bootsnap 1.4.4
  • builder 3.2.3
  • byebug 11.0.1
  • capybara 3.22.0
  • chartkick 3.2.0
  • childprocess 1.0.1
  • chromedriver-helper 2.1.1
  • coderay 1.1.2
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.5
  • crass 1.0.4
  • diff-lcs 1.3
  • erubi 1.8.0
  • execjs 2.7.0
  • factory_bot 5.0.2
  • factory_bot_rails 5.0.2
  • ffi 1.11.1
  • globalid 0.4.2
  • i18n 1.6.0
  • io-like 0.3.0
  • jbuilder 2.9.1
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.10
  • nio4r 2.3.1
  • nokogiri 1.10.3
  • pg 1.1.4
  • pry 0.12.2
  • public_suffix 3.1.0
  • puma 3.12.1
  • rack 2.0.7
  • rack-test 1.1.0
  • rails 5.2.3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.3
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • regexp_parser 1.5.1
  • rspec-core 3.8.1
  • rspec-expectations 3.8.4
  • rspec-mocks 3.8.1
  • rspec-rails 3.8.2
  • rspec-support 3.8.2
  • ruby_dep 1.5.0
  • rubyzip 1.2.3
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • seed-fu 2.3.9
  • selenium-webdriver 3.142.3
  • slim 4.0.1
  • slim-rails 3.2.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • temple 0.8.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • uglifier 4.1.20
  • web-console 3.7.0
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
  • xpath 3.2.0
challenge3/webapp/ishiwata/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • rspec-rails >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • coffee-rails ~> 4.2
  • jbuilder >= 0
  • mysql2 >= 0.4.4, < 0.6.0
  • pg >= 0
  • puma ~> 3.11
  • rails ~> 5.2.2
  • rubocop >= 0
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
  • webpacker >= 0
challenge3/webapp/ishiwata/Gemfile.lock rubygems
  • actioncable 5.2.4.1
  • actionmailer 5.2.4.1
  • actionpack 5.2.4.1
  • actionview 5.2.4.1
  • activejob 5.2.4.1
  • activemodel 5.2.4.1
  • activerecord 5.2.4.1
  • activestorage 5.2.4.1
  • activesupport 5.2.4.1
  • addressable 2.7.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • ast 2.4.0
  • bindex 0.8.1
  • bootsnap 1.4.6
  • builder 3.2.4
  • byebug 11.1.1
  • capybara 3.31.0
  • childprocess 3.0.0
  • chromedriver-helper 2.1.1
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.6
  • crass 1.0.6
  • diff-lcs 1.3
  • erubi 1.9.0
  • execjs 2.7.0
  • ffi 1.12.2
  • globalid 0.4.2
  • i18n 1.8.2
  • io-like 0.3.1
  • jaro_winkler 1.5.4
  • jbuilder 2.10.0
  • listen 3.1.5
  • loofah 2.4.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.4
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.14.0
  • msgpack 1.3.3
  • mysql2 0.5.3
  • nio4r 2.5.2
  • nokogiri 1.10.8
  • parallel 1.19.1
  • parser 2.7.0.3
  • pg 1.2.2
  • public_suffix 4.0.3
  • puma 3.12.4
  • rack 2.2.2
  • rack-proxy 0.6.5
  • rack-test 1.1.0
  • rails 5.2.4.1
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 5.2.4.1
  • rainbow 3.0.0
  • rake 13.0.1
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.1
  • regexp_parser 1.7.0
  • rexml 3.2.4
  • rspec-core 3.9.1
  • rspec-expectations 3.9.0
  • rspec-mocks 3.9.1
  • rspec-rails 3.9.0
  • rspec-support 3.9.2
  • rubocop 0.80.1
  • ruby-progressbar 1.10.1
  • ruby_dep 1.5.0
  • rubyzip 2.2.0
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.1.0
  • selenium-webdriver 3.142.7
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tilt 2.0.10
  • turbolinks 5.2.1
  • turbolinks-source 5.2.0
  • tzinfo 1.2.6
  • uglifier 4.2.0
  • unicode-display_width 1.6.1
  • web-console 3.7.0
  • webpacker 4.2.2
  • websocket-driver 0.7.1
  • websocket-extensions 0.1.4
  • xpath 3.2.0
challenge3/webapp/j-iwatsubo/Gemfile rubygems
  • sqlite3 >= 0 development
  • annotate >= 0
  • better_errors >= 0
  • bootsnap >= 0
  • byebug >= 0
  • chart-js-rails >= 0
  • coffee-rails >= 0
  • gon >= 0
  • jquery-datatables-rails >= 0
  • jquery-rails = 4.3.3
  • jquery-ui-rails >= 0
  • kaminari >= 0
  • listen >= 0
  • pg >= 0
  • rails = 5.2.0
  • ransack >= 0
  • sass-rails >= 0
challenge3/webapp/j-iwatsubo/Gemfile.lock rubygems
  • actioncable 5.2.0
  • actionmailer 5.2.0
  • actionpack 5.2.0
  • actionview 5.2.0
  • activejob 5.2.0
  • activemodel 5.2.0
  • activerecord 5.2.0
  • activestorage 5.2.0
  • activesupport 5.2.0
  • annotate 2.7.4
  • arel 9.0.0
  • better_errors 2.4.0
  • bootsnap 1.3.0
  • builder 3.2.4
  • byebug 10.0.2
  • chart-js-rails 0.1.4
  • coderay 1.1.2
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.6
  • crass 1.0.6
  • erubi 1.9.0
  • execjs 2.7.0
  • ffi 1.9.25
  • globalid 0.4.1
  • gon 6.2.0
  • i18n 1.8.2
  • jquery-datatables-rails 3.4.0
  • jquery-rails 4.3.3
  • jquery-ui-rails 6.0.1
  • kaminari 1.2.1
  • kaminari-actionview 1.2.1
  • kaminari-activerecord 1.2.1
  • kaminari-core 1.2.1
  • listen 3.1.5
  • loofah 2.5.0
  • mail 2.7.0
  • marcel 0.3.2
  • method_source 0.9.0
  • mimemagic 0.3.2
  • mini_mime 1.0.0
  • mini_portile2 2.5.0
  • minitest 5.14.1
  • msgpack 1.2.4
  • multi_json 1.13.1
  • nio4r 2.3.1
  • nokogiri 1.11.1
  • pg 1.0.0
  • polyamorous 1.3.3
  • racc 1.5.2
  • rack 2.2.3
  • rack-test 1.0.0
  • rails 5.2.0
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 5.2.0
  • rake 12.3.3
  • ransack 1.8.8
  • rb-fsevent 0.10.3
  • rb-inotify 0.9.10
  • request_store 1.4.1
  • ruby_dep 1.5.0
  • sass 3.5.6
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • sprockets 3.7.1
  • sprockets-rails 3.2.1
  • sqlite3 1.3.13
  • thor 0.20.0
  • thread_safe 0.3.6
  • tilt 2.0.8
  • tzinfo 1.2.7
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.5
challenge3/webapp/kei_fujikawa/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • activerecord-import >= 0
  • bootsnap >= 1.1.0
  • chart-js-rails >= 0
  • coffee-rails ~> 4.2
  • html2slim >= 0
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.2, >= 5.2.2.1
  • sass-rails ~> 5.0
  • slim-rails >= 0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/kei_fujikawa/Gemfile.lock rubygems
  • actioncable 5.2.2.1
  • actionmailer 5.2.2.1
  • actionpack 5.2.2.1
  • actionview 5.2.2.1
  • activejob 5.2.2.1
  • activemodel 5.2.2.1
  • activerecord 5.2.2.1
  • activerecord-import 1.0.1
  • activestorage 5.2.2.1
  • activesupport 5.2.2.1
  • addressable 2.6.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • bindex 0.7.0
  • bootsnap 1.4.3
  • builder 3.2.3
  • byebug 11.0.1
  • capybara 3.18.0
  • chart-js-rails 0.1.6
  • childprocess 1.0.1
  • chromedriver-helper 2.1.1
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.5
  • crass 1.0.4
  • erubi 1.8.0
  • execjs 2.7.0
  • ffi 1.10.0
  • globalid 0.4.2
  • hpricot 0.8.6
  • html2slim 0.2.0
  • i18n 1.6.0
  • io-like 0.3.0
  • jbuilder 2.8.0
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.10
  • multi_json 1.13.1
  • nio4r 2.3.1
  • nokogiri 1.10.3
  • pg 1.1.4
  • public_suffix 3.0.3
  • puma 3.12.1
  • rack 2.0.7
  • rack-test 1.1.0
  • rails 5.2.2.1
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.2.1
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • regexp_parser 1.4.0
  • ruby_dep 1.5.0
  • rubyzip 1.2.2
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • selenium-webdriver 3.142.0
  • slim 4.0.1
  • slim-rails 3.2.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • temple 0.8.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • uglifier 4.1.20
  • web-console 3.7.0
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
  • xpath 3.2.0
challenge3/webapp/keita_eguchi/Gemfile rubygems
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • rubocop >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • coffee-rails ~> 4.2
  • gon >= 0
  • jbuilder ~> 2.5
  • jquery-rails >= 0
  • mysql2 >= 0.4.4, < 0.6.0
  • puma ~> 3.11
  • rails ~> 5.2.3
  • rubocop >= 0
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • uglifier >= 1.3.0
challenge3/webapp/keita_eguchi/Gemfile.lock rubygems
  • actioncable 5.2.3
  • actionmailer 5.2.3
  • actionpack 5.2.3
  • actionview 5.2.3
  • activejob 5.2.3
  • activemodel 5.2.3
  • activerecord 5.2.3
  • activestorage 5.2.3
  • activesupport 5.2.3
  • addressable 2.7.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • ast 2.4.0
  • bindex 0.8.1
  • bootsnap 1.4.5
  • builder 3.2.4
  • byebug 11.1.0
  • capybara 3.30.0
  • childprocess 3.0.0
  • chromedriver-helper 2.1.1
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.5
  • crass 1.0.6
  • erubi 1.9.0
  • execjs 2.7.0
  • ffi 1.12.1
  • globalid 0.4.2
  • gon 6.2.1
  • i18n 1.8.2
  • io-like 0.3.0
  • jaro_winkler 1.5.4
  • jbuilder 2.9.1
  • jquery-rails 4.3.5
  • listen 3.1.5
  • loofah 2.4.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.14.0
  • msgpack 1.3.1
  • multi_json 1.14.1
  • mysql2 0.5.2
  • nio4r 2.5.2
  • nokogiri 1.10.7
  • parallel 1.19.1
  • parser 2.6.5.0
  • public_suffix 4.0.3
  • puma 3.12.1
  • rack 2.1.1
  • rack-test 1.1.0
  • rails 5.2.3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 5.2.3
  • rainbow 3.0.0
  • rake 13.0.1
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.1
  • regexp_parser 1.6.0
  • request_store 1.4.1
  • rubocop 0.78.0
  • ruby-progressbar 1.10.1
  • ruby_dep 1.5.0
  • rubyzip 2.0.0
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.1.0
  • selenium-webdriver 3.142.6
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tilt 2.0.10
  • turbolinks 5.2.1
  • turbolinks-source 5.2.0
  • tzinfo 1.2.6
  • uglifier 4.2.0
  • unicode-display_width 1.6.0
  • web-console 3.7.0
  • websocket-driver 0.7.1
  • websocket-extensions 0.1.4
  • xpath 3.2.0
challenge3/webapp/kenkaton/Gemfile rubygems
  • byebug >= 0 development
  • capybara ~> 2.13 development
  • listen >= 3.0.5, < 3.2 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootstrap-sass ~> 3.3.7
  • chartkick >= 0
  • coffee-rails ~> 4.2
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.12
  • rails ~> 5.1.5
  • rails_12factor >= 0
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/kenkaton/Gemfile.lock rubygems
  • actioncable 5.1.6
  • actionmailer 5.1.6
  • actionpack 5.1.6
  • actionview 5.1.6
  • activejob 5.1.6
  • activemodel 5.1.6
  • activerecord 5.1.6
  • activesupport 5.1.6
  • addressable 2.5.2
  • arel 8.0.0
  • autoprefixer-rails 8.5.0
  • bindex 0.5.0
  • bootstrap-sass 3.3.7
  • builder 3.2.3
  • byebug 10.0.2
  • capybara 2.18.0
  • chartkick 3.4.0
  • childprocess 0.9.0
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.0.5
  • crass 1.0.5
  • erubi 1.7.1
  • execjs 2.7.0
  • ffi 1.9.23
  • globalid 0.4.1
  • i18n 1.0.1
  • jbuilder 2.7.0
  • listen 3.1.5
  • loofah 2.3.1
  • mail 2.7.0
  • method_source 0.9.0
  • mini_mime 1.0.0
  • mini_portile2 2.5.0
  • minitest 5.11.3
  • multi_json 1.13.1
  • nio4r 2.3.1
  • nokogiri 1.11.1
  • pg 1.0.0
  • public_suffix 3.0.2
  • puma 3.12.6
  • racc 1.5.2
  • rack 2.2.3
  • rack-test 1.0.0
  • rails 5.1.6
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • rails_12factor 0.0.3
  • rails_serve_static_assets 0.0.5
  • rails_stdout_logging 0.0.5
  • railties 5.1.6
  • rake 13.0.1
  • rb-fsevent 0.10.3
  • rb-inotify 0.9.10
  • ruby_dep 1.5.0
  • rubyzip 1.3.0
  • sass 3.5.6
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • selenium-webdriver 3.12.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.1
  • sprockets-rails 3.2.1
  • thor 0.20.0
  • thread_safe 0.3.6
  • tilt 2.0.8
  • turbolinks 5.1.1
  • turbolinks-source 5.1.0
  • tzinfo 1.2.5
  • uglifier 4.1.10
  • web-console 3.6.2
  • websocket-driver 0.6.5
  • websocket-extensions 0.1.5
  • xpath 3.0.0
challenge3/webapp/kumaki/Gemfile rubygems
  • better_errors >= 0 development
  • binding_of_caller >= 0 development
  • factory_bot_rails ~> 4.10.0 development
  • listen >= 3.0.5, < 3.2 development
  • pry-byebug >= 0 development
  • pry-doc >= 0 development
  • pry-rails >= 0 development
  • rspec-rails ~> 3.8.0 development
  • rubocop >= 0 development
  • rubocop-rails >= 0 development
  • rubocop-rspec >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • annotate >= 0
  • bootsnap >= 1.1.0
  • bootstrap ~> 4.1.1
  • chartkick >= 0
  • jbuilder ~> 2.5
  • jquery-rails >= 0
  • kaminari >= 0
  • mysql2 >= 0.4.4, < 0.6.0
  • puma ~> 3.11
  • rails ~> 5.2.4
  • sass-rails ~> 5.0
  • slim-rails >= 0
  • uglifier >= 1.3.0
challenge3/webapp/kumaki/Gemfile.lock rubygems
  • 101 dependencies
challenge3/webapp/levelfour/Gemfile rubygems
  • capistrano ~> 3.2.1 development
  • capistrano-bundler >= 0 development
  • capistrano-rails >= 0 development
  • capistrano-rbenv >= 0 development
  • sdoc >= 0 development
  • bootbox-rails ~> 0.3
  • bootstrap-sass = 3.2.0
  • coffee-rails ~> 4.0.0
  • jbuilder ~> 1.2
  • jquery-rails >= 0
  • kaminari >= 0
  • lazy_high_charts >= 0
  • mathjax-rails >= 0
  • mysql2 >= 0
  • rails = 4.0.2
  • sass-rails ~> 4.0.0
  • turbolinks >= 0
  • uglifier >= 1.3.0
challenge3/webapp/levelfour/Gemfile.lock rubygems
  • actionmailer 4.0.2
  • actionpack 4.0.2
  • activemodel 4.0.2
  • activerecord 4.0.2
  • activerecord-deprecated_finders 1.0.3
  • activesupport 4.0.2
  • arel 4.0.2
  • bootbox-rails 0.3.0
  • bootstrap-sass 3.2.0.0
  • builder 3.1.4
  • capistrano 3.2.1
  • capistrano-bundler 1.1.2
  • capistrano-ext 1.2.1
  • capistrano-rails 1.1.1
  • capistrano-rbenv 2.0.2
  • capistrano-recipes 0.8.0
  • coffee-rails 4.0.1
  • coffee-script 2.2.0
  • coffee-script-source 1.7.0
  • colorize 0.7.3
  • erubis 2.7.0
  • execjs 2.2.1
  • hash-deep-merge 0.1.1
  • hike 1.2.3
  • i18n 0.6.9
  • jbuilder 1.5.3
  • jquery-rails 3.1.1
  • json 1.8.1
  • kaminari 0.16.1
  • lazy_high_charts 1.5.4
  • mail 2.5.4
  • mathjax-rails 2.3.0
  • mime-types 1.25.1
  • minitest 4.7.5
  • multi_json 1.10.1
  • mysql2 0.3.16
  • net-scp 1.2.1
  • net-ssh 2.9.1
  • polyglot 0.3.5
  • rack 1.5.2
  • rack-test 0.6.2
  • rails 4.0.2
  • railties 4.0.2
  • rake 10.3.2
  • rdoc 4.1.1
  • sass 3.2.19
  • sass-rails 4.0.3
  • sdoc 0.4.0
  • sprockets 2.11.0
  • sprockets-rails 2.0.1
  • sshkit 1.5.1
  • thor 0.19.1
  • thread_safe 0.3.4
  • tilt 1.4.1
  • treetop 1.4.15
  • turbolinks 2.2.2
  • tzinfo 0.3.39
  • uglifier 2.5.1
challenge3/webapp/liang/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • coffee-rails ~> 4.2
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.3
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/liang/Gemfile.lock rubygems
  • actioncable 5.2.4.3
  • actionmailer 5.2.4.3
  • actionpack 5.2.4.3
  • actionview 5.2.4.3
  • activejob 5.2.4.3
  • activemodel 5.2.4.3
  • activerecord 5.2.4.3
  • activestorage 5.2.4.3
  • activesupport 5.2.4.3
  • addressable 2.7.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • bindex 0.8.1
  • bootsnap 1.4.7
  • builder 3.2.4
  • byebug 11.1.3
  • capybara 3.33.0
  • childprocess 3.0.0
  • chromedriver-helper 2.1.1
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.6
  • crass 1.0.6
  • erubi 1.9.0
  • execjs 2.7.0
  • ffi 1.13.1
  • globalid 0.4.2
  • i18n 1.8.5
  • io-like 0.3.1
  • jbuilder 2.10.0
  • listen 3.1.5
  • loofah 2.6.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 1.0.0
  • mimemagic 0.3.5
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.14.1
  • msgpack 1.3.3
  • nio4r 2.5.2
  • nokogiri 1.10.10
  • pg 1.2.3
  • public_suffix 4.0.5
  • puma 3.12.6
  • rack 2.2.3
  • rack-test 1.1.0
  • rails 5.2.4.3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 5.2.4.3
  • rake 13.0.1
  • rb-fsevent 0.10.4
  • rb-inotify 0.10.1
  • regexp_parser 1.7.1
  • ruby_dep 1.5.0
  • rubyzip 2.3.0
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.1.0
  • selenium-webdriver 3.142.7
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tilt 2.0.10
  • turbolinks 5.2.1
  • turbolinks-source 5.2.0
  • tzinfo 1.2.7
  • uglifier 4.2.0
  • web-console 3.7.0
  • websocket-driver 0.7.3
  • websocket-extensions 0.1.5
  • xpath 3.2.0
challenge3/webapp/m_murotani/chart_example/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • mysql2 >= 0.4.4, < 0.6.0
  • puma ~> 3.12
  • rails ~> 5.2.0
  • sass-rails ~> 5.0
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/m_murotani/chart_example/Gemfile.lock rubygems
  • actioncable 5.2.1
  • actionmailer 5.2.1
  • actionpack 5.2.1
  • actionview 5.2.1
  • activejob 5.2.1
  • activemodel 5.2.1
  • activerecord 5.2.1
  • activestorage 5.2.1
  • activesupport 5.2.1
  • addressable 2.5.2
  • archive-zip 0.11.0
  • arel 9.0.0
  • bindex 0.5.0
  • bootsnap 1.3.2
  • builder 3.2.3
  • byebug 10.0.2
  • capybara 3.9.0
  • childprocess 0.9.0
  • chromedriver-helper 2.1.0
  • concurrent-ruby 1.0.5
  • crass 1.0.5
  • erubi 1.7.1
  • execjs 2.7.0
  • ffi 1.9.25
  • globalid 0.4.1
  • i18n 1.1.1
  • io-like 0.3.0
  • listen 3.1.5
  • loofah 2.3.1
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.0
  • mimemagic 0.3.2
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.4
  • mysql2 0.5.2
  • nio4r 2.3.1
  • nokogiri 1.10.8
  • public_suffix 3.0.3
  • puma 3.12.4
  • rack 2.2.3
  • rack-test 1.1.0
  • rails 5.2.1
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.1
  • rake 13.0.1
  • rb-fsevent 0.10.3
  • rb-inotify 0.9.10
  • ruby_dep 1.5.0
  • rubyzip 1.2.2
  • sass 3.6.0
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • selenium-webdriver 3.14.1
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 0.20.0
  • thread_safe 0.3.6
  • tilt 2.0.8
  • tzinfo 1.2.5
  • uglifier 4.1.19
  • web-console 3.7.0
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.5
  • xpath 3.1.0
challenge3/webapp/m_tanaka/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • factory_bot_rails ~> 4.11 development
  • listen >= 3.0.5, < 3.2 development
  • mysql2 >= 0.4.4, < 0.6.0 development
  • pry ~> 0.12.2 development
  • rspec-rails ~> 3.7 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • chartkick >= 0
  • gon >= 0
  • html2slim >= 0
  • jbuilder ~> 2.5
  • pg ~> 0.18.0
  • puma ~> 3.11
  • rails ~> 5.2.3
  • ransack >= 0
  • sass-rails ~> 5.0
  • seed-fu >= 0
  • slim-rails >= 0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/m_tanaka/Gemfile.lock rubygems
  • actioncable 5.2.3
  • actionmailer 5.2.3
  • actionpack 5.2.3
  • actionview 5.2.3
  • activejob 5.2.3
  • activemodel 5.2.3
  • activerecord 5.2.3
  • activestorage 5.2.3
  • activesupport 5.2.3
  • addressable 2.6.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • bindex 0.7.0
  • bootsnap 1.4.4
  • builder 3.2.3
  • byebug 11.0.1
  • capybara 3.18.0
  • chartkick 3.0.2
  • childprocess 1.0.1
  • chromedriver-helper 2.1.1
  • coderay 1.1.2
  • concurrent-ruby 1.1.5
  • crass 1.0.4
  • diff-lcs 1.3
  • erubi 1.8.0
  • execjs 2.7.0
  • factory_bot 4.11.1
  • factory_bot_rails 4.11.1
  • ffi 1.10.0
  • globalid 0.4.2
  • gon 6.2.1
  • hpricot 0.8.6
  • html2slim 0.2.0
  • i18n 1.6.0
  • io-like 0.3.0
  • jbuilder 2.8.0
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.10
  • multi_json 1.13.1
  • mysql2 0.5.2
  • nio4r 2.3.1
  • nokogiri 1.10.3
  • pg 0.18.4
  • pry 0.12.2
  • public_suffix 3.0.3
  • puma 3.12.1
  • rack 2.0.7
  • rack-test 1.1.0
  • rails 5.2.3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.3
  • rake 12.3.2
  • ransack 2.1.1
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • regexp_parser 1.4.0
  • request_store 1.4.1
  • rspec-core 3.8.0
  • rspec-expectations 3.8.3
  • rspec-mocks 3.8.0
  • rspec-rails 3.8.2
  • rspec-support 3.8.0
  • ruby_dep 1.5.0
  • rubyzip 1.2.2
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • seed-fu 2.3.9
  • selenium-webdriver 3.142.0
  • slim 4.0.1
  • slim-rails 3.2.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • temple 0.8.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • turbolinks 5.2.0
  • turbolinks-source 5.2.0
  • tzinfo 1.2.5
  • uglifier 4.1.20
  • web-console 3.7.0
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
  • xpath 3.2.0
challenge3/webapp/masayuki0812/Gemfile rubygems
  • rspec >= 0 development
  • rspec-rails >= 0 development
  • sdoc >= 0 development
  • jbuilder ~> 1.2
  • pg >= 0
  • rails = 4.0.0
  • rails_12factor >= 0
  • turbolinks >= 0
  • uglifier >= 1.3.0
challenge3/webapp/masayuki0812/Gemfile.lock rubygems
  • actionmailer 4.0.0
  • actionpack 4.0.0
  • activemodel 4.0.0
  • activerecord 4.0.0
  • activerecord-deprecated_finders 1.0.3
  • activesupport 4.0.0
  • arel 4.0.2
  • builder 3.1.4
  • coffee-rails 4.0.1
  • coffee-script 2.2.0
  • coffee-script-source 1.7.0
  • diff-lcs 1.2.5
  • erubis 2.7.0
  • execjs 2.0.2
  • hike 1.2.3
  • i18n 0.6.9
  • jbuilder 1.5.3
  • json 1.8.1
  • mail 2.5.4
  • mime-types 1.25.1
  • minitest 4.7.5
  • multi_json 1.9.2
  • pg 0.17.1
  • polyglot 0.3.4
  • rack 1.5.5
  • rack-test 0.6.2
  • rails 4.0.0
  • rails_12factor 0.0.2
  • rails_serve_static_assets 0.0.2
  • rails_stdout_logging 0.0.3
  • railties 4.0.0
  • rake 13.0.1
  • rdoc 4.1.1
  • rspec 2.14.1
  • rspec-core 2.14.8
  • rspec-expectations 2.14.5
  • rspec-mocks 2.14.6
  • rspec-rails 2.14.2
  • sdoc 0.4.0
  • sprockets 2.12.0
  • sprockets-rails 2.0.1
  • thor 0.19.1
  • thread_safe 0.3.3
  • tilt 1.4.1
  • treetop 1.4.15
  • turbolinks 2.2.2
  • tzinfo 0.3.39
  • uglifier 2.5.0
challenge3/webapp/masuda/web/Gemfile rubygems
  • byebug >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • bootsnap >= 1.4.2
  • pg ~> 1.1.4
  • puma ~> 3.11
  • rack-cors >= 0
  • rails ~> 6.0.0
  • tzinfo-data >= 0
challenge3/webapp/masuda/web/Gemfile.lock rubygems
  • actioncable 6.0.0
  • actionmailbox 6.0.0
  • actionmailer 6.0.0
  • actionpack 6.0.0
  • actiontext 6.0.0
  • actionview 6.0.0
  • activejob 6.0.0
  • activemodel 6.0.0
  • activerecord 6.0.0
  • activestorage 6.0.0
  • activesupport 6.0.0
  • bootsnap 1.4.5
  • builder 3.2.3
  • byebug 11.0.1
  • concurrent-ruby 1.1.5
  • crass 1.0.5
  • erubi 1.9.0
  • ffi 1.11.1
  • globalid 0.4.2
  • i18n 1.7.0
  • listen 3.1.5
  • loofah 2.3.1
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.12.2
  • msgpack 1.3.1
  • nio4r 2.5.2
  • nokogiri 1.10.4
  • pg 1.1.4
  • puma 3.12.1
  • rack 2.0.7
  • rack-cors 1.0.3
  • rack-test 1.1.0
  • rails 6.0.0
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 6.0.0
  • rake 13.0.0
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • ruby_dep 1.5.0
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 4.0.0
  • sprockets-rails 3.2.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tzinfo 1.2.5
  • websocket-driver 0.7.1
  • websocket-extensions 0.1.4
  • zeitwerk 2.2.0
challenge3/webapp/masuri/Gemfile rubygems
  • byebug >= 0 development
  • listen ~> 3.2 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.4.2
  • chartkick >= 0
  • groupdate >= 0
  • jbuilder ~> 2.7
  • mysql2 >= 0.4.4
  • puma ~> 4.1
  • rails ~> 6.0.3, >= 6.0.3.2
  • sass-rails >= 6
  • tzinfo-data >= 0
  • webpacker ~> 4.0
challenge3/webapp/masuri/Gemfile.lock rubygems
  • actioncable 6.0.3.2
  • actionmailbox 6.0.3.2
  • actionmailer 6.0.3.2
  • actionpack 6.0.3.2
  • actiontext 6.0.3.2
  • actionview 6.0.3.2
  • activejob 6.0.3.2
  • activemodel 6.0.3.2
  • activerecord 6.0.3.2
  • activestorage 6.0.3.2
  • activesupport 6.0.3.2
  • bindex 0.8.1
  • bootsnap 1.4.6
  • builder 3.2.4
  • byebug 11.1.3
  • chartkick 3.3.1
  • concurrent-ruby 1.1.6
  • crass 1.0.6
  • erubi 1.9.0
  • ffi 1.13.1
  • globalid 0.4.2
  • groupdate 5.0.0
  • i18n 1.8.3
  • jbuilder 2.10.0
  • listen 3.2.1
  • loofah 2.6.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 1.0.0
  • mimemagic 0.3.5
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.14.1
  • msgpack 1.3.3
  • mysql2 0.5.3
  • nio4r 2.5.2
  • nokogiri 1.10.9
  • puma 4.3.5
  • rack 2.2.3
  • rack-proxy 0.6.5
  • rack-test 1.1.0
  • rails 6.0.3.2
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 6.0.3.2
  • rake 13.0.1
  • rb-fsevent 0.10.4
  • rb-inotify 0.10.1
  • sass-rails 6.0.0
  • sassc 2.4.0
  • sassc-rails 2.1.2
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 4.0.2
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tilt 2.0.10
  • tzinfo 1.2.7
  • web-console 4.0.3
  • webpacker 4.2.2
  • websocket-driver 0.7.2
  • websocket-extensions 0.1.5
  • zeitwerk 2.3.0
challenge3/webapp/matsumoto/Gemfile rubygems
  • awesome_print >= 0 development
  • better_errors >= 0 development
  • binding_of_caller >= 0 development
  • byebug >= 0 development
  • guard >= 0 development
  • hirb >= 0 development
  • hirb-unicode >= 0 development
  • listen ~> 3.0.5 development
  • pry >= 0 development
  • pry-byebug >= 0 development
  • pry-doc >= 0 development
  • pry-rails >= 0 development
  • pry-stack_explorer >= 0 development
  • rails-controller-testing >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • tapp >= 0 development
  • web-console >= 0 development
  • coffee-rails ~> 4.2
  • jbuilder ~> 2.5
  • jquery-rails >= 0
  • lazy_high_charts >= 0
  • mysql2 ~> 0.4.4
  • pg >= 0
  • puma ~> 3.12
  • rails ~> 5.0.0
  • sass-rails ~> 5.0
  • slim-rails >= 0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/matsumoto/Gemfile.lock rubygems
  • actioncable 5.0.0
  • actionmailer 5.0.0
  • actionpack 5.0.0
  • actionview 5.0.0
  • activejob 5.0.0
  • activemodel 5.0.0
  • activerecord 5.0.0
  • activesupport 5.0.0
  • arel 7.1.1
  • awesome_print 1.7.0
  • better_errors 2.1.1
  • binding_of_caller 0.7.2
  • builder 3.2.3
  • byebug 9.0.5
  • coderay 1.1.1
  • coffee-rails 4.2.1
  • coffee-script 2.4.1
  • coffee-script-source 1.10.0
  • concurrent-ruby 1.1.5
  • crass 1.0.5
  • debug_inspector 0.0.2
  • erubis 2.7.0
  • execjs 2.7.0
  • ffi 1.9.14
  • formatador 0.2.5
  • globalid 0.3.7
  • guard 2.14.0
  • hash-deep-merge 0.1.1
  • hirb 0.7.3
  • hirb-unicode 0.0.5
  • i18n 0.9.5
  • jbuilder 2.6.0
  • jquery-rails 4.2.1
  • lazy_high_charts 1.5.5
  • listen 3.0.8
  • loofah 2.3.1
  • lumberjack 1.0.10
  • mail 2.6.4
  • method_source 0.8.2
  • mime-types 3.1
  • mime-types-data 3.2016.0521
  • mini_portile2 2.5.0
  • minitest 5.13.0
  • multi_json 1.12.1
  • mysql2 0.4.4
  • nenv 0.3.0
  • nio4r 1.2.1
  • nokogiri 1.11.1
  • notiffany 0.1.1
  • pg 0.18.4
  • pry 0.10.4
  • pry-byebug 3.4.0
  • pry-doc 0.9.0
  • pry-rails 0.3.4
  • pry-stack_explorer 0.4.9.2
  • puma 3.12.6
  • racc 1.5.2
  • rack 2.2.3
  • rack-test 0.6.3
  • rails 5.0.0
  • rails-controller-testing 1.0.1
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 5.0.0
  • rake 13.0.1
  • rb-fsevent 0.9.7
  • rb-inotify 0.9.7
  • sass 3.4.22
  • sass-rails 5.0.6
  • shellany 0.0.1
  • slim 3.0.7
  • slim-rails 3.1.1
  • slop 3.6.0
  • spring 1.7.2
  • spring-watcher-listen 2.0.0
  • sprockets 3.7.0
  • sprockets-rails 3.2.0
  • tapp 1.5.0
  • temple 0.7.7
  • thor 0.19.1
  • thread_safe 0.3.6
  • tilt 2.0.5
  • turbolinks 5.0.1
  • turbolinks-source 5.0.0
  • tzinfo 1.2.5
  • uglifier 3.0.2
  • unicode-display_width 0.1.1
  • web-console 3.3.1
  • websocket-driver 0.6.4
  • websocket-extensions 0.1.5
  • yard 0.9.20
challenge3/webapp/matsuura_shunsuke/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • bootsnap >= 1.1.0
  • chartkick >= 0
  • coffee-rails ~> 4.2
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.4, >= 5.2.4.3
  • sass-rails ~> 5.0
  • turbolinks ~> 5
  • tzinfo-data >= 0
  • uglifier >= 1.3.0
challenge3/webapp/matsuura_shunsuke/Gemfile.lock rubygems
  • actioncable 5.2.4.3
  • actionmailer 5.2.4.3
  • actionpack 5.2.4.3
  • actionview 5.2.4.3
  • activejob 5.2.4.3
  • activemodel 5.2.4.3
  • activerecord 5.2.4.3
  • activestorage 5.2.4.3
  • activesupport 5.2.4.3
  • addressable 2.7.0
  • archive-zip 0.12.0
  • arel 9.0.0
  • bindex 0.8.1
  • bootsnap 1.4.6
  • builder 3.2.4
  • byebug 11.1.3
  • capybara 3.32.2
  • chartkick 3.3.1
  • childprocess 3.0.0
  • chromedriver-helper 2.1.1
  • coffee-rails 4.2.2
  • coffee-script 2.4.1
  • coffee-script-source 1.12.2
  • concurrent-ruby 1.1.6
  • crass 1.0.6
  • erubi 1.9.0
  • execjs 2.7.0
  • ffi 1.12.2
  • globalid 0.4.2
  • i18n 1.8.2
  • io-like 0.3.1
  • jbuilder 2.10.0
  • listen 3.1.5
  • loofah 2.5.0
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 1.0.0
  • mimemagic 0.3.5
  • mini_mime 1.0.2
  • mini_portile2 2.4.0
  • minitest 5.14.1
  • msgpack 1.3.3
  • nio4r 2.5.2
  • nokogiri 1.10.9
  • pg 1.2.3
  • public_suffix 4.0.5
  • puma 3.12.6
  • rack 2.2.2
  • rack-test 1.1.0
  • rails 5.2.4.3
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.3.0
  • railties 5.2.4.3
  • rake 13.0.1
  • rb-fsevent 0.10.4
  • rb-inotify 0.10.1
  • regexp_parser 1.7.0
  • ruby_dep 1.5.0
  • rubyzip 2.3.0
  • sass 3.7.4
  • sass-listen 4.0.0
  • sass-rails 5.1.0
  • selenium-webdriver 3.142.7
  • spring 2.1.0
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 1.0.1
  • thread_safe 0.3.6
  • tilt 2.0.10
  • turbolinks 5.2.1
  • turbolinks-source 5.2.0
  • tzinfo 1.2.7
  • uglifier 4.2.0
  • web-console 3.7.0
  • websocket-driver 0.7.2
  • websocket-extensions 0.1.4
  • xpath 3.2.0
challenge3/webapp/minojiro/Gemfile rubygems
  • byebug >= 0 development
  • capybara >= 2.15 development
  • chromedriver-helper >= 0 development
  • listen >= 3.0.5, < 3.2 development
  • rb-readline >= 0 development
  • selenium-webdriver >= 0 development
  • spring >= 0 development
  • spring-watcher-listen ~> 2.0.0 development
  • web-console >= 3.3.0 development
  • activerecord-import >= 0
  • bootsnap >= 1.1.0
  • gon >= 0
  • jbuilder ~> 2.5
  • pg >= 0.18, < 2.0
  • puma ~> 3.11
  • rails ~> 5.2.2
  • sass-rails ~> 5.0
  • tzinfo-data >= 0
challenge3/webapp/minojiro/Gemfile.lock rubygems
  • actioncable 5.2.2
  • actionmailer 5.2.2
  • actionpack 5.2.2
  • actionview 5.2.2
  • activejob 5.2.2
  • activemodel 5.2.2
  • activerecord 5.2.2
  • activerecord-import 1.0.0
  • activestorage 5.2.2
  • activesupport 5.2.2
  • addressable 2.6.0
  • archive-zip 0.11.0
  • arel 9.0.0
  • bindex 0.5.0
  • bootsnap 1.4.0
  • builder 3.2.3
  • byebug 11.0.0
  • capybara 3.13.2
  • childprocess 0.9.0
  • chromedriver-helper 2.1.0
  • concurrent-ruby 1.1.4
  • crass 1.0.4
  • erubi 1.8.0
  • ffi 1.10.0
  • globalid 0.4.2
  • gon 6.2.1
  • i18n 1.5.3
  • io-like 0.3.0
  • jbuilder 2.8.0
  • listen 3.1.5
  • loofah 2.2.3
  • mail 2.7.1
  • marcel 0.3.3
  • method_source 0.9.2
  • mimemagic 0.3.3
  • mini_mime 1.0.1
  • mini_portile2 2.4.0
  • minitest 5.11.3
  • msgpack 1.2.6
  • multi_json 1.13.1
  • nio4r 2.3.1
  • nokogiri 1.10.1
  • pg 1.1.4
  • public_suffix 3.0.3
  • puma 3.12.0
  • rack 2.0.6
  • rack-test 1.1.0
  • rails 5.2.2
  • rails-dom-testing 2.0.3
  • rails-html-sanitizer 1.0.4
  • railties 5.2.2
  • rake 12.3.2
  • rb-fsevent 0.10.3
  • rb-inotify 0.10.0
  • rb-readline 0.5.5
  • regexp_parser 1.3.0
  • request_store 1.4.1
  • ruby_dep 1.5.0
  • rubyzip 1.2.2
  • sass 3.7.3
  • sass-listen 4.0.0
  • sass-rails 5.0.7
  • selenium-webdriver 3.141.0
  • spring 2.0.2
  • spring-watcher-listen 2.0.1
  • sprockets 3.7.2
  • sprockets-rails 3.2.1
  • thor 0.20.3
  • thread_safe 0.3.6
  • tilt 2.0.9
  • tzinfo 1.2.5
  • web-console 3.7.0
  • websocket-driver 0.7.0
  • websocket-extensions 0.1.3
  • xpath 3.2.0

Score: 9.152711259139547