epom_rails 0.4.2 → 0.4.5
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/lib/epom_rails/version.rb +1 -1
- data/test/test_helper.rb +11 -0
- metadata +2 -4
- data/test/dummy/config/initializers/epom.rb +0 -5
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: a66eca78be2769027bf296cf2036800e76bac79a
         | 
| 4 | 
            +
              data.tar.gz: e07c2bcbdd6b7196f01ffe044af39beb9fa82dd9
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: bffbbdd24cc8d264181757966b955e118edf315c45c25649d01d68b924d64527130fc87f397da82a4719e34602ff2d2ea06077e4309e9b061125e96b14a1c412
         | 
| 7 | 
            +
              data.tar.gz: 4a3bcfcd2f4fea8568acc422486d2f252028bb182db5d54bb2f8b4099d535639e0bd3662d26a8e9ea78eddee3954ed1030c7ae60f7344c3c8372496f58f9f867
         | 
    
        data/lib/epom_rails/version.rb
    CHANGED
    
    
    
        data/test/test_helper.rb
    CHANGED
    
    | @@ -22,4 +22,15 @@ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f } | |
| 22 22 | 
             
            if ActiveSupport::TestCase.respond_to?(:fixture_path=)
         | 
| 23 23 | 
             
              ActiveSupport::TestCase.fixture_path = File.expand_path("../dummy/test/fixtures", __FILE__)
         | 
| 24 24 | 
             
              ActiveSupport::TestCase.fixtures :all
         | 
| 25 | 
            +
            end
         | 
| 26 | 
            +
             | 
| 27 | 
            +
            Epom.configure do |config|
         | 
| 28 | 
            +
            	config.epom_server = 'https://n29.epom.com/'
         | 
| 29 | 
            +
            	config.username = ENV['username']
         | 
| 30 | 
            +
            	config.password = ENV['password']
         | 
| 31 | 
            +
             | 
| 32 | 
            +
            	config.proxy_address = ENV['proxy_address']
         | 
| 33 | 
            +
            	config.proxy_port = ENV['proxy_port']
         | 
| 34 | 
            +
            	config.proxy_user = ENV['proxy_user']
         | 
| 35 | 
            +
            	config.proxy_password = ENV['proxy_password']
         | 
| 25 36 | 
             
            end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: epom_rails
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.4. | 
| 4 | 
            +
              version: 0.4.5
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Adrian Chang
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2015-06- | 
| 11 | 
            +
            date: 2015-06-30 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: rails
         | 
| @@ -149,7 +149,6 @@ files: | |
| 149 149 | 
             
            - test/dummy/config/initializers/assets.rb
         | 
| 150 150 | 
             
            - test/dummy/config/initializers/backtrace_silencers.rb
         | 
| 151 151 | 
             
            - test/dummy/config/initializers/cookies_serializer.rb
         | 
| 152 | 
            -
            - test/dummy/config/initializers/epom.rb
         | 
| 153 152 | 
             
            - test/dummy/config/initializers/filter_parameter_logging.rb
         | 
| 154 153 | 
             
            - test/dummy/config/initializers/inflections.rb
         | 
| 155 154 | 
             
            - test/dummy/config/initializers/mime_types.rb
         | 
| @@ -276,7 +275,6 @@ test_files: | |
| 276 275 | 
             
            - test/dummy/config/initializers/mime_types.rb
         | 
| 277 276 | 
             
            - test/dummy/config/initializers/inflections.rb
         | 
| 278 277 | 
             
            - test/dummy/config/initializers/filter_parameter_logging.rb
         | 
| 279 | 
            -
            - test/dummy/config/initializers/epom.rb
         | 
| 280 278 | 
             
            - test/dummy/config/initializers/cookies_serializer.rb
         | 
| 281 279 | 
             
            - test/dummy/config/initializers/backtrace_silencers.rb
         | 
| 282 280 | 
             
            - test/dummy/config/initializers/assets.rb
         |