granule 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +21 -0
- data/.gitignore +2 -0
- data/.rubocop.yml +8 -7
- data/Gemfile +2 -0
- data/README.md +112 -13
- data/Rakefile +2 -0
- data/bin/console +1 -0
- data/exe/granule +1 -2
- data/granule.gemspec +2 -0
- data/lib/granule/cli.rb +19 -4
- data/lib/granule/feature/devise_semantic/devise.en.yml +65 -0
- data/lib/granule/feature/devise_semantic/devise.rb +303 -0
- data/lib/granule/feature/devise_semantic/devise_create_users.rb +43 -0
- data/lib/granule/feature/devise_semantic/user.rb +8 -0
- data/lib/granule/feature/devise_semantic/views/users/confirmations/new.html.erb +16 -0
- data/lib/granule/feature/devise_semantic/views/users/mailer/confirmation_instructions.html.erb +5 -0
- data/lib/granule/feature/devise_semantic/views/users/mailer/email_changed.html.erb +7 -0
- data/lib/granule/feature/devise_semantic/views/users/mailer/password_change.html.erb +3 -0
- data/lib/granule/feature/devise_semantic/views/users/mailer/reset_password_instructions.html.erb +8 -0
- data/lib/granule/feature/devise_semantic/views/users/mailer/unlock_instructions.html.erb +7 -0
- data/lib/granule/feature/devise_semantic/views/users/passwords/edit.html.erb +25 -0
- data/lib/granule/feature/devise_semantic/views/users/passwords/new.html.erb +18 -0
- data/lib/granule/feature/devise_semantic/views/users/registrations/edit.html.erb +45 -0
- data/lib/granule/feature/devise_semantic/views/users/registrations/new.html.erb +31 -0
- data/lib/granule/feature/devise_semantic/views/users/sessions/new.html.erb +37 -0
- data/lib/granule/feature/devise_semantic/views/users/shared/_error_messages.html.erb +14 -0
- data/lib/granule/feature/devise_semantic/views/users/shared/_links.html.erb +25 -0
- data/lib/granule/feature/devise_semantic/views/users/show.html.erb +22 -0
- data/lib/granule/feature/devise_semantic/views/users/unlocks/new.html.erb +16 -0
- data/lib/granule/feature/devise_semantic.rb +58 -0
- data/lib/granule/feature/semantic_react/hello_react.jsx +340 -0
- data/lib/granule/feature/semantic_react/homes_controller.rb +5 -0
- data/lib/granule/feature/semantic_react/index.html.erb +0 -0
- data/lib/granule/feature/semantic_react.rb +50 -0
- data/lib/granule/new/base/.dockerignore.tt +5 -0
- data/lib/granule/new/base/.gitignore.tt +33 -0
- data/lib/granule/{templates → new/base}/.rubocop.yml.tt +0 -0
- data/lib/granule/new/base/Dockerfile.dev.tt +34 -0
- data/lib/granule/{templates → new/base}/Gemfile.tt +5 -8
- data/lib/granule/new/base/README.md.tt +21 -0
- data/lib/granule/new/base/database.yml.tt +21 -0
- data/lib/granule/new/base/docker-compose.yml.tt +83 -0
- data/lib/granule/new/base.rb +19 -0
- data/lib/granule/version.rb +4 -2
- data/lib/granule.rb +2 -1
- metadata +38 -8
- data/Gemfile.lock +0 -169
- data/lib/granule/template.rb +0 -10
| @@ -0,0 +1,83 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            version: '3.7'
         | 
| 3 | 
            +
             | 
| 4 | 
            +
            services:
         | 
| 5 | 
            +
              app: &app
         | 
| 6 | 
            +
                build:
         | 
| 7 | 
            +
                  context: .
         | 
| 8 | 
            +
                  dockerfile: ./Dockerfile.dev
         | 
| 9 | 
            +
                  args:
         | 
| 10 | 
            +
                    RUBY_VERSION: '2.6.5'
         | 
| 11 | 
            +
                    ALPINE_VERSION: '3.10'
         | 
| 12 | 
            +
                    BUNDLER_VERSION: '2.0.2'
         | 
| 13 | 
            +
                image: app-dev:1.0.0
         | 
| 14 | 
            +
                tmpfs:
         | 
| 15 | 
            +
                  - /tmp
         | 
| 16 | 
            +
             | 
| 17 | 
            +
              backend: &backend
         | 
| 18 | 
            +
                <<: *app
         | 
| 19 | 
            +
                stdin_open: true
         | 
| 20 | 
            +
                tty: true
         | 
| 21 | 
            +
                environment:
         | 
| 22 | 
            +
                  NODE_ENV: development
         | 
| 23 | 
            +
                  RAILS_ENV: ${RAILS_ENV:-development}
         | 
| 24 | 
            +
                  PSQL_HISTFILE: /app/log/.psql_history
         | 
| 25 | 
            +
                  WEBPACKER_DEV_SERVER_HOST: webpacker
         | 
| 26 | 
            +
                  EDITOR: vi
         | 
| 27 | 
            +
                volumes:
         | 
| 28 | 
            +
                  - .:/app:cached
         | 
| 29 | 
            +
                  - rails_cache:/app/tmp/cache
         | 
| 30 | 
            +
                  - bundle:/bundle
         | 
| 31 | 
            +
                  - node_modules:/app/node_modules
         | 
| 32 | 
            +
                  - packs:/app/public/packs
         | 
| 33 | 
            +
                depends_on:
         | 
| 34 | 
            +
                  - postgres
         | 
| 35 | 
            +
                  - webpacker
         | 
| 36 | 
            +
             | 
| 37 | 
            +
              runner:
         | 
| 38 | 
            +
                <<: *backend
         | 
| 39 | 
            +
                command: /bin/bash
         | 
| 40 | 
            +
                ports:
         | 
| 41 | 
            +
                  - '3000:3000'
         | 
| 42 | 
            +
                  - '3002:3002'
         | 
| 43 | 
            +
             | 
| 44 | 
            +
              rails:
         | 
| 45 | 
            +
                <<: *backend
         | 
| 46 | 
            +
                command: bundle exec rails server -b 0.0.0.0
         | 
| 47 | 
            +
                ports:
         | 
| 48 | 
            +
                  - '3000:3000'
         | 
| 49 | 
            +
             | 
| 50 | 
            +
              postgres:
         | 
| 51 | 
            +
                image: postgres:12-alpine
         | 
| 52 | 
            +
                environment:
         | 
| 53 | 
            +
                  POSTGRES_USER: postgres
         | 
| 54 | 
            +
                  POSTGRES_PASSWORD: postgres
         | 
| 55 | 
            +
                  PSQL_HISTFILE: /root/log/.psql_history
         | 
| 56 | 
            +
                ports:
         | 
| 57 | 
            +
                  - 5432:5432
         | 
| 58 | 
            +
                volumes:
         | 
| 59 | 
            +
                  - .psqlrc:/root/.psqlrc:ro
         | 
| 60 | 
            +
                  - postgres:/var/lib/postgresql/data
         | 
| 61 | 
            +
                  - ./log:/root/log:cached
         | 
| 62 | 
            +
             | 
| 63 | 
            +
              webpacker:
         | 
| 64 | 
            +
                <<: *app
         | 
| 65 | 
            +
                command: ./bin/webpack-dev-server
         | 
| 66 | 
            +
                ports:
         | 
| 67 | 
            +
                  - '3035:3035'
         | 
| 68 | 
            +
                volumes:
         | 
| 69 | 
            +
                  - .:/app:cached
         | 
| 70 | 
            +
                  - bundle:/bundle
         | 
| 71 | 
            +
                  - node_modules:/app/node_modules
         | 
| 72 | 
            +
                  - packs:/app/public/packs
         | 
| 73 | 
            +
                environment:
         | 
| 74 | 
            +
                  - NODE_ENV=${NODE_ENV:-development}
         | 
| 75 | 
            +
                  - RAILS_ENV=${RAILS_ENV:-development}
         | 
| 76 | 
            +
                  - WEBPACKER_DEV_SERVER_HOST=0.0.0.0
         | 
| 77 | 
            +
             | 
| 78 | 
            +
            volumes:
         | 
| 79 | 
            +
              postgres:
         | 
| 80 | 
            +
              bundle:
         | 
| 81 | 
            +
              node_modules:
         | 
| 82 | 
            +
              rails_cache:
         | 
| 83 | 
            +
              packs:
         | 
| @@ -0,0 +1,19 @@ | |
| 1 | 
            +
            # frozen_string_literal: true
         | 
| 2 | 
            +
             | 
| 3 | 
            +
            def call
         | 
| 4 | 
            +
              template 'Gemfile.tt', force: true
         | 
| 5 | 
            +
              template '.rubocop.yml.tt', force: true
         | 
| 6 | 
            +
              template '.dockerignore.tt', force: true
         | 
| 7 | 
            +
              template '.gitignore.tt', force: true
         | 
| 8 | 
            +
              template 'Dockerfile.dev.tt', force: true
         | 
| 9 | 
            +
              template 'docker-compose.yml.tt', force: true
         | 
| 10 | 
            +
              template 'README.md.tt', force: true
         | 
| 11 | 
            +
              template 'database.yml.tt', 'config/database.yml', force: true
         | 
| 12 | 
            +
              template 'database.yml.tt', 'config/database.sample.yml', force: true
         | 
| 13 | 
            +
            end
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            def source_paths
         | 
| 16 | 
            +
              [__dir__ + '/base']
         | 
| 17 | 
            +
            end
         | 
| 18 | 
            +
             | 
| 19 | 
            +
            call
         | 
    
        data/lib/granule/version.rb
    CHANGED
    
    
    
        data/lib/granule.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: granule
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.1. | 
| 4 | 
            +
              version: 0.1.7
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Alex Bykov
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2019- | 
| 11 | 
            +
            date: 2019-12-24 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         | 
| @@ -16,14 +16,14 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - '='
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version:  | 
| 19 | 
            +
                    version: 6.0.2
         | 
| 20 20 | 
             
              type: :runtime
         | 
| 21 21 | 
             
              prerelease: false
         | 
| 22 22 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 23 | 
             
                requirements:
         | 
| 24 24 | 
             
                - - '='
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version:  | 
| 26 | 
            +
                    version: 6.0.2
         | 
| 27 27 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 28 28 | 
             
              name: bundler
         | 
| 29 29 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -130,13 +130,13 @@ executables: | |
| 130 130 | 
             
            extensions: []
         | 
| 131 131 | 
             
            extra_rdoc_files: []
         | 
| 132 132 | 
             
            files:
         | 
| 133 | 
            +
            - ".github/workflows/ruby.yml"
         | 
| 133 134 | 
             
            - ".gitignore"
         | 
| 134 135 | 
             
            - ".rspec"
         | 
| 135 136 | 
             
            - ".rubocop.yml"
         | 
| 136 137 | 
             
            - ".travis.yml"
         | 
| 137 138 | 
             
            - CODE_OF_CONDUCT.md
         | 
| 138 139 | 
             
            - Gemfile
         | 
| 139 | 
            -
            - Gemfile.lock
         | 
| 140 140 | 
             
            - LICENSE.txt
         | 
| 141 141 | 
             
            - README.md
         | 
| 142 142 | 
             
            - Rakefile
         | 
| @@ -146,9 +146,39 @@ files: | |
| 146 146 | 
             
            - granule.gemspec
         | 
| 147 147 | 
             
            - lib/granule.rb
         | 
| 148 148 | 
             
            - lib/granule/cli.rb
         | 
| 149 | 
            -
            - lib/granule/ | 
| 150 | 
            -
            - lib/granule/ | 
| 151 | 
            -
            - lib/granule/ | 
| 149 | 
            +
            - lib/granule/feature/devise_semantic.rb
         | 
| 150 | 
            +
            - lib/granule/feature/devise_semantic/devise.en.yml
         | 
| 151 | 
            +
            - lib/granule/feature/devise_semantic/devise.rb
         | 
| 152 | 
            +
            - lib/granule/feature/devise_semantic/devise_create_users.rb
         | 
| 153 | 
            +
            - lib/granule/feature/devise_semantic/user.rb
         | 
| 154 | 
            +
            - lib/granule/feature/devise_semantic/views/users/confirmations/new.html.erb
         | 
| 155 | 
            +
            - lib/granule/feature/devise_semantic/views/users/mailer/confirmation_instructions.html.erb
         | 
| 156 | 
            +
            - lib/granule/feature/devise_semantic/views/users/mailer/email_changed.html.erb
         | 
| 157 | 
            +
            - lib/granule/feature/devise_semantic/views/users/mailer/password_change.html.erb
         | 
| 158 | 
            +
            - lib/granule/feature/devise_semantic/views/users/mailer/reset_password_instructions.html.erb
         | 
| 159 | 
            +
            - lib/granule/feature/devise_semantic/views/users/mailer/unlock_instructions.html.erb
         | 
| 160 | 
            +
            - lib/granule/feature/devise_semantic/views/users/passwords/edit.html.erb
         | 
| 161 | 
            +
            - lib/granule/feature/devise_semantic/views/users/passwords/new.html.erb
         | 
| 162 | 
            +
            - lib/granule/feature/devise_semantic/views/users/registrations/edit.html.erb
         | 
| 163 | 
            +
            - lib/granule/feature/devise_semantic/views/users/registrations/new.html.erb
         | 
| 164 | 
            +
            - lib/granule/feature/devise_semantic/views/users/sessions/new.html.erb
         | 
| 165 | 
            +
            - lib/granule/feature/devise_semantic/views/users/shared/_error_messages.html.erb
         | 
| 166 | 
            +
            - lib/granule/feature/devise_semantic/views/users/shared/_links.html.erb
         | 
| 167 | 
            +
            - lib/granule/feature/devise_semantic/views/users/show.html.erb
         | 
| 168 | 
            +
            - lib/granule/feature/devise_semantic/views/users/unlocks/new.html.erb
         | 
| 169 | 
            +
            - lib/granule/feature/semantic_react.rb
         | 
| 170 | 
            +
            - lib/granule/feature/semantic_react/hello_react.jsx
         | 
| 171 | 
            +
            - lib/granule/feature/semantic_react/homes_controller.rb
         | 
| 172 | 
            +
            - lib/granule/feature/semantic_react/index.html.erb
         | 
| 173 | 
            +
            - lib/granule/new/base.rb
         | 
| 174 | 
            +
            - lib/granule/new/base/.dockerignore.tt
         | 
| 175 | 
            +
            - lib/granule/new/base/.gitignore.tt
         | 
| 176 | 
            +
            - lib/granule/new/base/.rubocop.yml.tt
         | 
| 177 | 
            +
            - lib/granule/new/base/Dockerfile.dev.tt
         | 
| 178 | 
            +
            - lib/granule/new/base/Gemfile.tt
         | 
| 179 | 
            +
            - lib/granule/new/base/README.md.tt
         | 
| 180 | 
            +
            - lib/granule/new/base/database.yml.tt
         | 
| 181 | 
            +
            - lib/granule/new/base/docker-compose.yml.tt
         | 
| 152 182 | 
             
            - lib/granule/version.rb
         | 
| 153 183 | 
             
            homepage: http://github.com/leksster/granule
         | 
| 154 184 | 
             
            licenses:
         | 
    
        data/Gemfile.lock
    DELETED
    
    | @@ -1,169 +0,0 @@ | |
| 1 | 
            -
            PATH
         | 
| 2 | 
            -
              remote: .
         | 
| 3 | 
            -
              specs:
         | 
| 4 | 
            -
                granule (0.1.6)
         | 
| 5 | 
            -
                  rails (= 5.2.3)
         | 
| 6 | 
            -
             | 
| 7 | 
            -
            GEM
         | 
| 8 | 
            -
              remote: https://rubygems.org/
         | 
| 9 | 
            -
              specs:
         | 
| 10 | 
            -
                actioncable (5.2.3)
         | 
| 11 | 
            -
                  actionpack (= 5.2.3)
         | 
| 12 | 
            -
                  nio4r (~> 2.0)
         | 
| 13 | 
            -
                  websocket-driver (>= 0.6.1)
         | 
| 14 | 
            -
                actionmailer (5.2.3)
         | 
| 15 | 
            -
                  actionpack (= 5.2.3)
         | 
| 16 | 
            -
                  actionview (= 5.2.3)
         | 
| 17 | 
            -
                  activejob (= 5.2.3)
         | 
| 18 | 
            -
                  mail (~> 2.5, >= 2.5.4)
         | 
| 19 | 
            -
                  rails-dom-testing (~> 2.0)
         | 
| 20 | 
            -
                actionpack (5.2.3)
         | 
| 21 | 
            -
                  actionview (= 5.2.3)
         | 
| 22 | 
            -
                  activesupport (= 5.2.3)
         | 
| 23 | 
            -
                  rack (~> 2.0)
         | 
| 24 | 
            -
                  rack-test (>= 0.6.3)
         | 
| 25 | 
            -
                  rails-dom-testing (~> 2.0)
         | 
| 26 | 
            -
                  rails-html-sanitizer (~> 1.0, >= 1.0.2)
         | 
| 27 | 
            -
                actionview (5.2.3)
         | 
| 28 | 
            -
                  activesupport (= 5.2.3)
         | 
| 29 | 
            -
                  builder (~> 3.1)
         | 
| 30 | 
            -
                  erubi (~> 1.4)
         | 
| 31 | 
            -
                  rails-dom-testing (~> 2.0)
         | 
| 32 | 
            -
                  rails-html-sanitizer (~> 1.0, >= 1.0.3)
         | 
| 33 | 
            -
                activejob (5.2.3)
         | 
| 34 | 
            -
                  activesupport (= 5.2.3)
         | 
| 35 | 
            -
                  globalid (>= 0.3.6)
         | 
| 36 | 
            -
                activemodel (5.2.3)
         | 
| 37 | 
            -
                  activesupport (= 5.2.3)
         | 
| 38 | 
            -
                activerecord (5.2.3)
         | 
| 39 | 
            -
                  activemodel (= 5.2.3)
         | 
| 40 | 
            -
                  activesupport (= 5.2.3)
         | 
| 41 | 
            -
                  arel (>= 9.0)
         | 
| 42 | 
            -
                activestorage (5.2.3)
         | 
| 43 | 
            -
                  actionpack (= 5.2.3)
         | 
| 44 | 
            -
                  activerecord (= 5.2.3)
         | 
| 45 | 
            -
                  marcel (~> 0.3.1)
         | 
| 46 | 
            -
                activesupport (5.2.3)
         | 
| 47 | 
            -
                  concurrent-ruby (~> 1.0, >= 1.0.2)
         | 
| 48 | 
            -
                  i18n (>= 0.7, < 2)
         | 
| 49 | 
            -
                  minitest (~> 5.1)
         | 
| 50 | 
            -
                  tzinfo (~> 1.1)
         | 
| 51 | 
            -
                arel (9.0.0)
         | 
| 52 | 
            -
                ast (2.4.0)
         | 
| 53 | 
            -
                builder (3.2.3)
         | 
| 54 | 
            -
                coderay (1.1.2)
         | 
| 55 | 
            -
                concurrent-ruby (1.1.5)
         | 
| 56 | 
            -
                crass (1.0.4)
         | 
| 57 | 
            -
                diff-lcs (1.3)
         | 
| 58 | 
            -
                erubi (1.8.0)
         | 
| 59 | 
            -
                globalid (0.4.2)
         | 
| 60 | 
            -
                  activesupport (>= 4.2.0)
         | 
| 61 | 
            -
                i18n (1.6.0)
         | 
| 62 | 
            -
                  concurrent-ruby (~> 1.0)
         | 
| 63 | 
            -
                jaro_winkler (1.5.2)
         | 
| 64 | 
            -
                loofah (2.2.3)
         | 
| 65 | 
            -
                  crass (~> 1.0.2)
         | 
| 66 | 
            -
                  nokogiri (>= 1.5.9)
         | 
| 67 | 
            -
                mail (2.7.1)
         | 
| 68 | 
            -
                  mini_mime (>= 0.1.1)
         | 
| 69 | 
            -
                marcel (0.3.3)
         | 
| 70 | 
            -
                  mimemagic (~> 0.3.2)
         | 
| 71 | 
            -
                method_source (0.9.2)
         | 
| 72 | 
            -
                mimemagic (0.3.3)
         | 
| 73 | 
            -
                mini_mime (1.0.1)
         | 
| 74 | 
            -
                mini_portile2 (2.4.0)
         | 
| 75 | 
            -
                minitest (5.11.3)
         | 
| 76 | 
            -
                nio4r (2.3.1)
         | 
| 77 | 
            -
                nokogiri (1.10.3)
         | 
| 78 | 
            -
                  mini_portile2 (~> 2.4.0)
         | 
| 79 | 
            -
                parallel (1.17.0)
         | 
| 80 | 
            -
                parser (2.6.3.0)
         | 
| 81 | 
            -
                  ast (~> 2.4.0)
         | 
| 82 | 
            -
                pry (0.12.2)
         | 
| 83 | 
            -
                  coderay (~> 1.1.0)
         | 
| 84 | 
            -
                  method_source (~> 0.9.0)
         | 
| 85 | 
            -
                rack (2.0.7)
         | 
| 86 | 
            -
                rack-test (1.1.0)
         | 
| 87 | 
            -
                  rack (>= 1.0, < 3)
         | 
| 88 | 
            -
                rails (5.2.3)
         | 
| 89 | 
            -
                  actioncable (= 5.2.3)
         | 
| 90 | 
            -
                  actionmailer (= 5.2.3)
         | 
| 91 | 
            -
                  actionpack (= 5.2.3)
         | 
| 92 | 
            -
                  actionview (= 5.2.3)
         | 
| 93 | 
            -
                  activejob (= 5.2.3)
         | 
| 94 | 
            -
                  activemodel (= 5.2.3)
         | 
| 95 | 
            -
                  activerecord (= 5.2.3)
         | 
| 96 | 
            -
                  activestorage (= 5.2.3)
         | 
| 97 | 
            -
                  activesupport (= 5.2.3)
         | 
| 98 | 
            -
                  bundler (>= 1.3.0)
         | 
| 99 | 
            -
                  railties (= 5.2.3)
         | 
| 100 | 
            -
                  sprockets-rails (>= 2.0.0)
         | 
| 101 | 
            -
                rails-dom-testing (2.0.3)
         | 
| 102 | 
            -
                  activesupport (>= 4.2.0)
         | 
| 103 | 
            -
                  nokogiri (>= 1.6)
         | 
| 104 | 
            -
                rails-html-sanitizer (1.0.4)
         | 
| 105 | 
            -
                  loofah (~> 2.2, >= 2.2.2)
         | 
| 106 | 
            -
                railties (5.2.3)
         | 
| 107 | 
            -
                  actionpack (= 5.2.3)
         | 
| 108 | 
            -
                  activesupport (= 5.2.3)
         | 
| 109 | 
            -
                  method_source
         | 
| 110 | 
            -
                  rake (>= 0.8.7)
         | 
| 111 | 
            -
                  thor (>= 0.19.0, < 2.0)
         | 
| 112 | 
            -
                rainbow (3.0.0)
         | 
| 113 | 
            -
                rake (10.5.0)
         | 
| 114 | 
            -
                rspec (3.8.0)
         | 
| 115 | 
            -
                  rspec-core (~> 3.8.0)
         | 
| 116 | 
            -
                  rspec-expectations (~> 3.8.0)
         | 
| 117 | 
            -
                  rspec-mocks (~> 3.8.0)
         | 
| 118 | 
            -
                rspec-core (3.8.0)
         | 
| 119 | 
            -
                  rspec-support (~> 3.8.0)
         | 
| 120 | 
            -
                rspec-expectations (3.8.3)
         | 
| 121 | 
            -
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 122 | 
            -
                  rspec-support (~> 3.8.0)
         | 
| 123 | 
            -
                rspec-mocks (3.8.0)
         | 
| 124 | 
            -
                  diff-lcs (>= 1.2.0, < 2.0)
         | 
| 125 | 
            -
                  rspec-support (~> 3.8.0)
         | 
| 126 | 
            -
                rspec-support (3.8.0)
         | 
| 127 | 
            -
                rubocop (0.71.0)
         | 
| 128 | 
            -
                  jaro_winkler (~> 1.5.1)
         | 
| 129 | 
            -
                  parallel (~> 1.10)
         | 
| 130 | 
            -
                  parser (>= 2.6)
         | 
| 131 | 
            -
                  rainbow (>= 2.2.2, < 4.0)
         | 
| 132 | 
            -
                  ruby-progressbar (~> 1.7)
         | 
| 133 | 
            -
                  unicode-display_width (>= 1.4.0, < 1.7)
         | 
| 134 | 
            -
                rubocop-performance (1.3.0)
         | 
| 135 | 
            -
                  rubocop (>= 0.68.0)
         | 
| 136 | 
            -
                rubocop-rspec (1.33.0)
         | 
| 137 | 
            -
                  rubocop (>= 0.60.0)
         | 
| 138 | 
            -
                ruby-progressbar (1.10.1)
         | 
| 139 | 
            -
                sprockets (3.7.2)
         | 
| 140 | 
            -
                  concurrent-ruby (~> 1.0)
         | 
| 141 | 
            -
                  rack (> 1, < 3)
         | 
| 142 | 
            -
                sprockets-rails (3.2.1)
         | 
| 143 | 
            -
                  actionpack (>= 4.0)
         | 
| 144 | 
            -
                  activesupport (>= 4.0)
         | 
| 145 | 
            -
                  sprockets (>= 3.0.0)
         | 
| 146 | 
            -
                thor (0.20.3)
         | 
| 147 | 
            -
                thread_safe (0.3.6)
         | 
| 148 | 
            -
                tzinfo (1.2.5)
         | 
| 149 | 
            -
                  thread_safe (~> 0.1)
         | 
| 150 | 
            -
                unicode-display_width (1.6.0)
         | 
| 151 | 
            -
                websocket-driver (0.7.0)
         | 
| 152 | 
            -
                  websocket-extensions (>= 0.1.0)
         | 
| 153 | 
            -
                websocket-extensions (0.1.3)
         | 
| 154 | 
            -
             | 
| 155 | 
            -
            PLATFORMS
         | 
| 156 | 
            -
              ruby
         | 
| 157 | 
            -
             | 
| 158 | 
            -
            DEPENDENCIES
         | 
| 159 | 
            -
              bundler (~> 2.0)
         | 
| 160 | 
            -
              granule!
         | 
| 161 | 
            -
              pry
         | 
| 162 | 
            -
              rake (~> 10.0)
         | 
| 163 | 
            -
              rspec (~> 3.0)
         | 
| 164 | 
            -
              rubocop
         | 
| 165 | 
            -
              rubocop-performance
         | 
| 166 | 
            -
              rubocop-rspec
         | 
| 167 | 
            -
             | 
| 168 | 
            -
            BUNDLED WITH
         | 
| 169 | 
            -
               2.0.1
         |