Created
July 23, 2016 11:11
-
-
Save timriley/612fc0a06850504bce8fa02a742854a6 to your computer and use it in GitHub Desktop.
rspec output for new dry-web-roda app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/S/my_new_app $ ruby -v | |
ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15] | |
~/S/my_new_app $ bundle show | |
Gems included by the bundle: | |
* addressable (2.4.0) | |
* bundler (1.12.3) | |
* byebug (9.0.5) | |
* capybara (2.7.1) | |
* capybara-screenshot (1.0.13) | |
* cliver (0.3.2) | |
* coderay (1.1.1) | |
* concurrent-ruby (1.0.2) | |
* database_cleaner (1.5.3) | |
* diff-lcs (1.2.5) | |
* dry-auto_inject (0.3.0) | |
* dry-component (0.3.0) | |
* dry-configurable (0.1.7) | |
* dry-container (0.3.4) | |
* dry-equalizer (0.2.0) | |
* dry-logic (0.3.0) | |
* dry-matcher (0.5.0) | |
* dry-monads (0.0.2) | |
* dry-result_matcher (0.4.0) | |
* dry-transaction (0.8.0) | |
* dry-types (0.8.1) | |
* dry-validation (0.9.3) | |
* dry-view (0.1.1) | |
* dry-web (0.3.1) | |
* dry-web-roda (0.2.2) | |
* ffi (1.9.14) | |
* formatador (0.2.5) | |
* guard (2.14.0) | |
* guard-compat (1.2.1) | |
* guard-rspec (4.7.2) | |
* ice_nine (0.11.2) | |
* inflecto (0.0.2) | |
* launchy (2.4.3) | |
* listen (3.1.5) | |
* lumberjack (1.0.10) | |
* method_source (0.8.2) | |
* mime-types (3.1) | |
* mime-types-data (3.2016.0521) | |
* mini_portile2 (2.1.0) | |
* nenv (0.3.0) | |
* nokogiri (1.6.8) | |
* notiffany (0.1.0) | |
* pg (0.18.4) | |
* pkg-config (1.1.7) | |
* poltergeist (1.10.0) | |
* pry (0.10.4) | |
* pry-byebug (3.4.0) | |
* puma (3.5.2) | |
* rack (2.0.1) | |
* rack-test (0.6.3) | |
* rack_csrf (2.5.0) | |
* rake (11.2.2) | |
* rb-fsevent (0.9.7) | |
* rb-inotify (0.9.7) | |
* roda (2.16.0) | |
* roda-flow (0.3.0) | |
* rom (2.0.0 ba5119b) | |
* rom-mapper (0.3.0 5cc3714) | |
* rom-repository (0.3.0 b51b186) | |
* rom-sql (0.8.0 03d4fb4) | |
* rom-support (1.0.0 d43f92f) | |
* rspec (3.5.0) | |
* rspec-core (3.5.1) | |
* rspec-expectations (3.5.0) | |
* rspec-mocks (3.5.0) | |
* rspec-support (3.5.0) | |
* ruby_dep (1.3.1) | |
* sequel (4.36.0) | |
* shellany (0.0.1) | |
* shotgun (0.9.1) | |
* slim (3.0.7) | |
* slop (3.6.0) | |
* temple (0.7.7) | |
* thor (0.19.1) | |
* tilt (2.0.5) | |
* transproc (0.4.0) | |
* websocket-driver (0.6.4) | |
* websocket-extensions (0.1.2) | |
* wisper (1.6.1) | |
* xpath (2.0.0) | |
~/S/my_new_app $ cat spec/unit/foo_spec.rb | |
RSpec.describe "foo" do | |
it "works" do | |
end | |
end | |
~/S/my_new_app $ be rake spec | |
/Users/tim/.rbenv/versions/2.3.0/bin/ruby -I/Users/tim/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/rspec-core-3.5.1/lib:/Users/tim/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/rspec-support-3.5.0/lib /Users/tim/.rbenv/versions/2.3.0/lib/ruby/gems/2.3.0/gems/rspec-core-3.5.1/exe/rspec --pattern spec/\*\*\{,/\*/\*\*\}/\*_spec.rb | |
. | |
Finished in 0.00172 seconds (files took 0.09326 seconds to load) | |
1 example, 0 failures |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment