In your command-line run the following commands:
brew doctorbrew update
| CREATE TABLE "COMMODITY_UPDATES" | |
| ( "ID" NUMBER GENERATED ALWAYS AS IDENTITY MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE NOKEEP NOSCALE NOT NULL ENABLE, | |
| "COMMODITY_ID" NUMBER NOT NULL ENABLE, | |
| "PRICE" NUMBER NOT NULL ENABLE, | |
| "LOCATION_ID" NUMBER NOT NULL ENABLE, | |
| "TRANSACTION_TYPE_ID" NUMBER NOT NULL ENABLE, | |
| "OVER_UNDER_STOCK_TYPE_ID" NUMBER, | |
| "SC_VERSION_ID" NUMBER NOT NULL ENABLE, | |
| CONSTRAINT "COMMODITY_UPDATES_PK" PRIMARY KEY ("ID") |
| sudo yum install -y --enablerepo=ol7_ociyum_config oci-included-release-el7 |
In your command-line run the following commands:
brew doctorbrew updateEach of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| =Navigating= | |
| visit('/projects') | |
| visit(post_comments_path(post)) | |
| =Clicking links and buttons= | |
| click_link('id-of-link') | |
| click_link('Link Text') | |
| click_button('Save') | |
| click('Link Text') # Click either a link or a button | |
| click('Button Value') |
| require 'nokogiri' | |
| require 'open-uri' | |
| # this class will do a search for Movies in/around | |
| # a specified location. The location can be given as | |
| # a STRING: "Staten Island", a ZIP: 10017, or LATTITUDE/ | |
| # LONGITUDE: 40.741061, -73.989699 | |
| # It makes use of Nokogiri and open-uri | |
| class Movies |
| # What about including `pry`, `rspec` or `guard`? | |
| # They're loaded automatically as dependencies | |
| group :development, :test do | |
| # Annotates ActiveRecord Models, routes and others based on the database schema | |
| gem "annotate" | |
| # generates entity relationship diagrams based on Active Record models | |
| # Postscript bugs may be fixed with: |