SICP Pune Meetup
When
11th May 2019, 1700 hours
prathamesh at Prathameshs-MacBook-Pro in ~/Projects/sources/activerecord-jdbc-adapter on master [$] | |
$ java -version | |
java version "1.8.0_05" | |
Java(TM) SE Runtime Environment (build 1.8.0_05-b13) | |
Java HotSpot(TM) 64-Bit Server VM (build 25.5-b02, mixed mode) | |
prathamesh at Prathameshs-MacBook-Pro in ~/Projects/sources/activerecord-jdbc-adapter on master [$] | |
$ bundle exec rake appraisal:rails42 | |
>> BUNDLE_GEMFILE=/Users/prathamesh/Projects/sources/activerecord-jdbc-adapter/gemfiles/rails42.gemfile bundle exec /Users/prathamesh/.rbenv/versions/jruby-1.7.19/bin/rake |
inherit_from: .rubocop_todo.yml | |
require: | |
- rubocop-rspec | |
- rubocop-rails | |
- rubocop-performance | |
AllCops: | |
EnabledByDefault: true | |
TargetRubyVersion: 2.6.5 |
inherit_from: .rubocop_todo.yml | |
require: | |
- rubocop-rspec | |
- rubocop-rails | |
- rubocop-performance | |
AllCops: | |
EnabledByDefault: true | |
TargetRubyVersion: 2.6.5 |
sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo | |
sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key | |
sudo yum install jenkins | |
sudo service jenkins start/stop/restart | |
sudo service jenkins start | |
sudo usermod -s /bin/bash jenkins | |
sudo usermod -m /var/lib/jenkins jenkins | |
sudo su - jenkins | |
curl -L https://get.rvm.io | bash -s stable --rails --autolibs=enabled | |
vi /var/lib/jenkins/.bashrc |
{ | |
"admin.js": "/packs/js/admin-67dd60bc5c69e9e06cc3.js", | |
"admin.js.map": "/packs/js/admin-67dd60bc5c69e9e06cc3.js.map", | |
"application.js": "/packs/js/application-d351b587b51ad82444e4.js", | |
"application.js.map": "/packs/js/application-d351b587b51ad82444e4.js.map", | |
"entrypoints": { | |
"admin": { | |
"js": [ | |
"/packs/js/admin-67dd60bc5c69e9e06cc3.js" |
# This configuration was generated by | |
# `rubocop --auto-gen-config` | |
# on 2019-09-11 08:43:14 +0530 using RuboCop version 0.74.0. | |
# The point is for the user to remove these configuration records | |
# one by one as the offenses are removed from the code base. | |
# Note that changes in the inspected code, or installation of new | |
# versions of RuboCop, may require this file to be generated again. | |
# Offense count: 1 | |
# Cop supports --auto-correct. |
(define (square x) | |
(* x x)) | |
(define (sum-of-squares a b) | |
(+ (square a) (square b))) | |
(define (sum-of-squares-of-two-largest a b c) | |
(if (>= a b) | |
(sum-of-squares a (max b c)) | |
(sum-of-squares b (max a c)) |
11th May 2019, 1700 hours
sources/rails/railties upgrade-guide-- ✔ 2.6.0 16m | |
▶ bin/test test/generators/ | |
Run options: --seed 25553 | |
# Running: | |
...................................F | |
Failure: | |
Rails::Command::RoutesTest#test_rails_routes_with_controller_search_key [/Users/prathamesh/Projects/sources/rails/railties/test/commands/routes_test.rb:92]: |
E | |
Error: | |
PolymorphicPathRoutesTest#test_irregular_plural_url_helper_prefixed_with_edit: | |
ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true | |
/Users/prathamesh/Projects/sources/rails/actionpack/lib/action_dispatch/http/url.rb:63:in `full_url_for' | |
/Users/prathamesh/Projects/sources/rails/actionpack/lib/action_dispatch/http/url.rb:53:in `url_for' | |
/Users/prathamesh/Projects/sources/rails/actionpack/lib/action_dispatch/routing/route_set.rb:338:in `block in <class:RouteSet>' | |
/Users/prathamesh/Projects/sources/rails/actionpack/lib/action_dispatch/routing/route_set.rb:211:in `call' | |
/Users/prathamesh/Projects/sources/rails/actionpack/lib/action_dispatch/routing/route_set.rb:330:in `block (2 levels) in define_url_helper' |