puppet 2.6.8 → 2.6.9
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.
Potentially problematic release.
This version of puppet might be problematic. Click here for more details.
- data/CHANGELOG +41 -0
- data/{README.rst → README.md} +17 -10
- data/conf/redhat/puppet.spec +93 -22
- data/ext/vim/README +2 -1
- data/ext/vim/ftplugin/puppet.vim +94 -0
- data/ext/vim/indent/puppet.vim +76 -0
- data/lib/puppet.rb +2 -3
- data/lib/puppet/application/agent.rb +3 -3
- data/lib/puppet/application/apply.rb +16 -5
- data/lib/puppet/configurer.rb +60 -56
- data/lib/puppet/configurer/fact_handler.rb +6 -1
- data/lib/puppet/defaults.rb +19 -0
- data/lib/puppet/file_serving/fileset.rb +1 -1
- data/lib/puppet/indirector/exec.rb +3 -3
- data/lib/puppet/indirector/queue.rb +1 -1
- data/lib/puppet/metatype/manager.rb +7 -20
- data/lib/puppet/parser/compiler.rb +17 -16
- data/lib/puppet/parser/resource.rb +18 -1
- data/lib/puppet/parser/scope.rb +2 -2
- data/lib/puppet/provider/mount/parsed.rb +1 -1
- data/lib/puppet/provider/naginator.rb +9 -1
- data/lib/puppet/provider/nameservice/directoryservice.rb +11 -8
- data/lib/puppet/provider/package/aptitude.rb +1 -0
- data/lib/puppet/rails/host.rb +7 -0
- data/lib/puppet/resource/catalog.rb +9 -3
- data/lib/puppet/transaction.rb +15 -26
- data/lib/puppet/transaction/report.rb +3 -3
- data/lib/puppet/type.rb +13 -24
- data/lib/puppet/util/queue.rb +1 -1
- data/lib/puppet/util/queue/stomp.rb +2 -2
- data/lib/puppet/util/settings/file_setting.rb +1 -0
- data/spec/integration/defaults_spec.rb +22 -0
- data/spec/integration/indirector/catalog/queue_spec.rb +2 -2
- data/spec/integration/type_spec.rb +11 -0
- data/spec/unit/application/agent_spec.rb +2 -2
- data/spec/unit/application/apply_spec.rb +62 -50
- data/spec/unit/configurer/fact_handler_spec.rb +43 -37
- data/spec/unit/configurer_spec.rb +404 -327
- data/spec/unit/file_serving/fileset_spec.rb +7 -0
- data/spec/unit/indirector/exec_spec.rb +4 -4
- data/spec/unit/indirector/node/exec_spec.rb +1 -1
- data/spec/unit/indirector/queue_spec.rb +4 -4
- data/spec/unit/node_spec.rb +1 -0
- data/spec/unit/parser/compiler_spec.rb +8 -46
- data/spec/unit/parser/resource_spec.rb +61 -3
- data/spec/unit/parser/scope_spec.rb +9 -3
- data/spec/unit/provider/nameservice/directoryservice_spec.rb +60 -0
- data/spec/unit/rails/host_spec.rb +8 -0
- data/spec/unit/resource/catalog_spec.rb +1 -1
- data/spec/unit/transaction/report_spec.rb +3 -3
- data/spec/unit/transaction_spec.rb +8 -2
- data/spec/unit/type_spec.rb +66 -0
- data/spec/unit/util/queue/stomp_spec.rb +10 -10
- data/spec/unit/util/settings/file_setting_spec.rb +4 -0
- metadata +1229 -1232
- data/README +0 -31
- data/lib/puppet/provider/nameservice/#directoryservice.rb# +0 -519
- data/lib/puppet/reference/#providers.rb# +0 -123
- data/spec/unit/indirector/certificate_status/#file_spec.rb# +0 -188
- data/spec/unit/resource/#type_collection_spec.rb# +0 -463
| @@ -64,26 +64,26 @@ describe 'Puppet::Util::Queue::Stomp', :if => Puppet.features.stomp? do | |
| 64 64 | 
             
                end
         | 
| 65 65 | 
             
              end
         | 
| 66 66 |  | 
| 67 | 
            -
              describe "when  | 
| 67 | 
            +
              describe "when publishing a message" do
         | 
| 68 68 | 
             
                before do
         | 
| 69 69 | 
             
                  @client = stub 'client'
         | 
| 70 70 | 
             
                  Stomp::Client.stubs(:new).returns @client
         | 
| 71 71 | 
             
                  @queue = Puppet::Util::Queue::Stomp.new
         | 
| 72 72 | 
             
                end
         | 
| 73 73 |  | 
| 74 | 
            -
                it "should  | 
| 75 | 
            -
                  @client.expects(: | 
| 76 | 
            -
                  @queue. | 
| 74 | 
            +
                it "should publish it to the queue client instance" do
         | 
| 75 | 
            +
                  @client.expects(:publish).with { |queue, msg, options| msg == "Smite!" }
         | 
| 76 | 
            +
                  @queue.publish_message('fooqueue', 'Smite!')
         | 
| 77 77 | 
             
                end
         | 
| 78 78 |  | 
| 79 | 
            -
                it "should  | 
| 80 | 
            -
                  @client.expects(: | 
| 81 | 
            -
                  @queue. | 
| 79 | 
            +
                it "should publish it to the transformed queue name" do
         | 
| 80 | 
            +
                  @client.expects(:publish).with { |queue, msg, options| queue == "/queue/fooqueue" }
         | 
| 81 | 
            +
                  @queue.publish_message('fooqueue', 'Smite!')
         | 
| 82 82 | 
             
                end
         | 
| 83 83 |  | 
| 84 | 
            -
                it "should  | 
| 85 | 
            -
                  @client.expects(: | 
| 86 | 
            -
                  @queue. | 
| 84 | 
            +
                it "should publish it as a persistent message" do
         | 
| 85 | 
            +
                  @client.expects(:publish).with { |queue, msg, options| options[:persistent] == true }
         | 
| 86 | 
            +
                  @queue.publish_message('fooqueue', 'Smite!')
         | 
| 87 87 | 
             
                end
         | 
| 88 88 | 
             
              end
         | 
| 89 89 |  | 
| @@ -249,6 +249,10 @@ describe Puppet::Util::Settings::FileSetting do | |
| 249 249 | 
             
                it "should tag the resource with 'settings'" do
         | 
| 250 250 | 
             
                  @file.to_resource.should be_tagged("settings")
         | 
| 251 251 | 
             
                end
         | 
| 252 | 
            +
             | 
| 253 | 
            +
                it "should set links to 'follow'" do
         | 
| 254 | 
            +
                  @file.to_resource[:links].should == :follow
         | 
| 255 | 
            +
                end
         | 
| 252 256 | 
             
              end
         | 
| 253 257 | 
             
            end
         | 
| 254 258 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,13 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification 
         | 
| 2 2 | 
             
            name: puppet
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version 
         | 
| 4 | 
            -
              hash:  | 
| 5 | 
            -
              prerelease:  | 
| 4 | 
            +
              hash: 5
         | 
| 5 | 
            +
              prerelease: 
         | 
| 6 6 | 
             
              segments: 
         | 
| 7 7 | 
             
              - 2
         | 
| 8 8 | 
             
              - 6
         | 
| 9 | 
            -
              -  | 
| 10 | 
            -
              version: 2.6. | 
| 9 | 
            +
              - 9
         | 
| 10 | 
            +
              version: 2.6.9
         | 
| 11 11 | 
             
            platform: ruby
         | 
| 12 12 | 
             
            authors: 
         | 
| 13 13 | 
             
            - Puppet Labs
         | 
| @@ -15,7 +15,7 @@ autorequire: | |
| 15 15 | 
             
            bindir: bin
         | 
| 16 16 | 
             
            cert_chain: []
         | 
| 17 17 |  | 
| 18 | 
            -
            date: 2011- | 
| 18 | 
            +
            date: 2011-06-21 00:00:00 -07:00
         | 
| 19 19 | 
             
            default_executable: 
         | 
| 20 20 | 
             
            dependencies: 
         | 
| 21 21 | 
             
            - !ruby/object:Gem::Dependency 
         | 
| @@ -37,1364 +37,1361 @@ dependencies: | |
| 37 37 | 
             
            description: Puppet, an automated configuration management tool
         | 
| 38 38 | 
             
            email: puppet@puppetlabs.com
         | 
| 39 39 | 
             
            executables: 
         | 
| 40 | 
            -
            - ralsh
         | 
| 41 40 | 
             
            - filebucket
         | 
| 42 | 
            -
            - puppetdoc
         | 
| 43 | 
            -
            - puppet
         | 
| 44 41 | 
             
            - pi
         | 
| 42 | 
            +
            - puppet
         | 
| 43 | 
            +
            - puppetdoc
         | 
| 44 | 
            +
            - ralsh
         | 
| 45 | 
            +
            - puppetca
         | 
| 45 46 | 
             
            - puppetd
         | 
| 47 | 
            +
            - puppetmasterd
         | 
| 46 48 | 
             
            - puppetqd
         | 
| 47 49 | 
             
            - puppetrun
         | 
| 48 | 
            -
            - puppetmasterd
         | 
| 49 | 
            -
            - puppetca
         | 
| 50 50 | 
             
            extensions: []
         | 
| 51 51 |  | 
| 52 52 | 
             
            extra_rdoc_files: []
         | 
| 53 53 |  | 
| 54 54 | 
             
            files: 
         | 
| 55 55 | 
             
            - CHANGELOG
         | 
| 56 | 
            -
            - Rakefile
         | 
| 57 | 
            -
            - README.rst
         | 
| 58 | 
            -
            - README
         | 
| 59 | 
            -
            - COPYING
         | 
| 60 56 | 
             
            - CHANGELOG.old
         | 
| 61 | 
            -
            -  | 
| 57 | 
            +
            - COPYING
         | 
| 62 58 | 
             
            - LICENSE
         | 
| 59 | 
            +
            - Rakefile
         | 
| 60 | 
            +
            - README.md
         | 
| 61 | 
            +
            - README.queueing
         | 
| 63 62 | 
             
            - install.rb
         | 
| 64 | 
            -
            - bin/ralsh
         | 
| 65 63 | 
             
            - bin/filebucket
         | 
| 66 | 
            -
            - bin/puppetdoc
         | 
| 67 | 
            -
            - bin/puppet
         | 
| 68 64 | 
             
            - bin/pi
         | 
| 69 | 
            -
            -  | 
| 70 | 
            -
            -  | 
| 71 | 
            -
            -  | 
| 72 | 
            -
            - lib/puppet/ | 
| 73 | 
            -
            - lib/puppet/ | 
| 74 | 
            -
            - lib/puppet/ | 
| 75 | 
            -
            - lib/puppet/ | 
| 76 | 
            -
            - lib/puppet/ | 
| 77 | 
            -
            - lib/puppet/ | 
| 78 | 
            -
            - lib/puppet/ | 
| 79 | 
            -
            - lib/puppet/ | 
| 80 | 
            -
            - lib/puppet/ | 
| 81 | 
            -
            - lib/puppet/ | 
| 82 | 
            -
            - lib/puppet/ | 
| 83 | 
            -
            - lib/puppet/ | 
| 84 | 
            -
            - lib/puppet/ | 
| 85 | 
            -
            - lib/puppet/ | 
| 86 | 
            -
            - lib/puppet/ | 
| 87 | 
            -
            - lib/puppet/ | 
| 88 | 
            -
            - lib/puppet/ | 
| 89 | 
            -
            - lib/puppet/ | 
| 90 | 
            -
            - lib/puppet/ | 
| 91 | 
            -
            - lib/puppet/ | 
| 92 | 
            -
            - lib/puppet/ | 
| 93 | 
            -
            - lib/puppet/ | 
| 94 | 
            -
            - lib/puppet/ | 
| 95 | 
            -
            - lib/puppet/type/zfs.rb
         | 
| 96 | 
            -
            - lib/puppet/type/cron.rb
         | 
| 97 | 
            -
            - lib/puppet/type/computer.rb
         | 
| 98 | 
            -
            - lib/puppet/type/nagios_contact.rb
         | 
| 99 | 
            -
            - lib/puppet/type/service.rb
         | 
| 100 | 
            -
            - lib/puppet/type/zpool.rb
         | 
| 101 | 
            -
            - lib/puppet/type/user.rb
         | 
| 102 | 
            -
            - lib/puppet/type/zone.rb
         | 
| 103 | 
            -
            - lib/puppet/type/macauthorization.rb
         | 
| 104 | 
            -
            - lib/puppet/type/group.rb
         | 
| 105 | 
            -
            - lib/puppet/type/nagios_servicegroup.rb
         | 
| 106 | 
            -
            - lib/puppet/type/augeas.rb
         | 
| 107 | 
            -
            - lib/puppet/type/nagios_host.rb
         | 
| 108 | 
            -
            - lib/puppet/type/ssh_authorized_key.rb
         | 
| 109 | 
            -
            - lib/puppet/type/resources.rb
         | 
| 110 | 
            -
            - lib/puppet/type/sshkey.rb
         | 
| 111 | 
            -
            - lib/puppet/type/selboolean.rb
         | 
| 112 | 
            -
            - lib/puppet/type/nagios_serviceescalation.rb
         | 
| 113 | 
            -
            - lib/puppet/type/component.rb
         | 
| 114 | 
            -
            - lib/puppet/type/mailalias.rb
         | 
| 115 | 
            -
            - lib/puppet/type/nagios_hostextinfo.rb
         | 
| 116 | 
            -
            - lib/puppet/type/mcx.rb
         | 
| 117 | 
            -
            - lib/puppet/type/k5login.rb
         | 
| 118 | 
            -
            - lib/puppet/type/exec.rb
         | 
| 119 | 
            -
            - lib/puppet/type/nagios_command.rb
         | 
| 120 | 
            -
            - lib/puppet/type/filebucket.rb
         | 
| 121 | 
            -
            - lib/puppet/type/tidy.rb
         | 
| 122 | 
            -
            - lib/puppet/type/nagios_service.rb
         | 
| 123 | 
            -
            - lib/puppet/type/nagios_hostgroup.rb
         | 
| 124 | 
            -
            - lib/puppet/type/maillist.rb
         | 
| 125 | 
            -
            - lib/puppet/type/whit.rb
         | 
| 126 | 
            -
            - lib/puppet/type/nagios_servicedependency.rb
         | 
| 127 | 
            -
            - lib/puppet/type/stage.rb
         | 
| 128 | 
            -
            - lib/puppet/type/port.rb
         | 
| 129 | 
            -
            - lib/puppet/provider/group/directoryservice.rb
         | 
| 130 | 
            -
            - lib/puppet/provider/group/groupadd.rb
         | 
| 131 | 
            -
            - lib/puppet/provider/group/ldap.rb
         | 
| 132 | 
            -
            - lib/puppet/provider/group/pw.rb
         | 
| 133 | 
            -
            - lib/puppet/provider/mount.rb
         | 
| 134 | 
            -
            - lib/puppet/provider/file/posix.rb
         | 
| 135 | 
            -
            - lib/puppet/provider/file/win32.rb
         | 
| 136 | 
            -
            - lib/puppet/provider/mount/parsed.rb
         | 
| 137 | 
            -
            - lib/puppet/provider/selmodule/semodule.rb
         | 
| 138 | 
            -
            - lib/puppet/provider/cron/crontab.rb
         | 
| 139 | 
            -
            - lib/puppet/provider/confine.rb
         | 
| 140 | 
            -
            - lib/puppet/provider/zone/solaris.rb
         | 
| 141 | 
            -
            - lib/puppet/provider/maillist/mailman.rb
         | 
| 142 | 
            -
            - lib/puppet/provider/package/yumhelper.py
         | 
| 143 | 
            -
            - lib/puppet/provider/package/urpmi.rb
         | 
| 144 | 
            -
            - lib/puppet/provider/package/portage.rb
         | 
| 145 | 
            -
            - lib/puppet/provider/package/gem.rb
         | 
| 146 | 
            -
            - lib/puppet/provider/package/apple.rb
         | 
| 147 | 
            -
            - lib/puppet/provider/package/macports.rb
         | 
| 148 | 
            -
            - lib/puppet/provider/package/aptrpm.rb
         | 
| 149 | 
            -
            - lib/puppet/provider/package/rpm.rb
         | 
| 150 | 
            -
            - lib/puppet/provider/package/zypper.rb
         | 
| 151 | 
            -
            - lib/puppet/provider/package/pkg.rb
         | 
| 152 | 
            -
            - lib/puppet/provider/package/yum.rb
         | 
| 153 | 
            -
            - lib/puppet/provider/package/hpux.rb
         | 
| 154 | 
            -
            - lib/puppet/provider/package/blastwave.rb
         | 
| 155 | 
            -
            - lib/puppet/provider/package/portupgrade.rb
         | 
| 156 | 
            -
            - lib/puppet/provider/package/fink.rb
         | 
| 157 | 
            -
            - lib/puppet/provider/package/sunfreeware.rb
         | 
| 158 | 
            -
            - lib/puppet/provider/package/rug.rb
         | 
| 159 | 
            -
            - lib/puppet/provider/package/nim.rb
         | 
| 160 | 
            -
            - lib/puppet/provider/package/aix.rb
         | 
| 161 | 
            -
            - lib/puppet/provider/package/appdmg.rb
         | 
| 162 | 
            -
            - lib/puppet/provider/package/ports.rb
         | 
| 163 | 
            -
            - lib/puppet/provider/package/apt.rb
         | 
| 164 | 
            -
            - lib/puppet/provider/package/pkgdmg.rb
         | 
| 165 | 
            -
            - lib/puppet/provider/package/openbsd.rb
         | 
| 166 | 
            -
            - lib/puppet/provider/package/up2date.rb
         | 
| 167 | 
            -
            - lib/puppet/provider/package/sun.rb
         | 
| 168 | 
            -
            - lib/puppet/provider/package/aptitude.rb
         | 
| 169 | 
            -
            - lib/puppet/provider/package/dpkg.rb
         | 
| 170 | 
            -
            - lib/puppet/provider/package/freebsd.rb
         | 
| 171 | 
            -
            - lib/puppet/provider/package.rb
         | 
| 172 | 
            -
            - lib/puppet/provider/confiner.rb
         | 
| 173 | 
            -
            - lib/puppet/provider/ldap.rb
         | 
| 174 | 
            -
            - lib/puppet/provider/selboolean/getsetsebool.rb
         | 
| 175 | 
            -
            - lib/puppet/provider/port/parsed.rb
         | 
| 176 | 
            -
            - lib/puppet/provider/user/directoryservice.rb
         | 
| 177 | 
            -
            - lib/puppet/provider/user/user_role_add.rb
         | 
| 178 | 
            -
            - lib/puppet/provider/user/useradd.rb
         | 
| 179 | 
            -
            - lib/puppet/provider/user/hpux.rb
         | 
| 180 | 
            -
            - lib/puppet/provider/user/ldap.rb
         | 
| 181 | 
            -
            - lib/puppet/provider/user/pw.rb
         | 
| 182 | 
            -
            - lib/puppet/provider/computer/computer.rb
         | 
| 183 | 
            -
            - lib/puppet/provider/mcx/mcxcontent.rb
         | 
| 184 | 
            -
            - lib/puppet/provider/nameservice.rb
         | 
| 185 | 
            -
            - lib/puppet/provider/parsedfile.rb
         | 
| 186 | 
            -
            - lib/puppet/provider/exec/posix.rb
         | 
| 187 | 
            -
            - lib/puppet/provider/exec/shell.rb
         | 
| 188 | 
            -
            - lib/puppet/provider/host/parsed.rb
         | 
| 189 | 
            -
            - lib/puppet/provider/zfs/solaris.rb
         | 
| 190 | 
            -
            - lib/puppet/provider/naginator.rb
         | 
| 191 | 
            -
            - lib/puppet/provider/confine_collection.rb
         | 
| 192 | 
            -
            - lib/puppet/provider/macauthorization/macauthorization.rb
         | 
| 193 | 
            -
            - lib/puppet/provider/service/redhat.rb
         | 
| 194 | 
            -
            - lib/puppet/provider/service/launchd.rb
         | 
| 195 | 
            -
            - lib/puppet/provider/service/init.rb
         | 
| 196 | 
            -
            - lib/puppet/provider/service/smf.rb
         | 
| 197 | 
            -
            - lib/puppet/provider/service/runit.rb
         | 
| 198 | 
            -
            - lib/puppet/provider/service/bsd.rb
         | 
| 199 | 
            -
            - lib/puppet/provider/service/daemontools.rb
         | 
| 200 | 
            -
            - lib/puppet/provider/service/base.rb
         | 
| 201 | 
            -
            - lib/puppet/provider/service/src.rb
         | 
| 202 | 
            -
            - lib/puppet/provider/service/gentoo.rb
         | 
| 203 | 
            -
            - lib/puppet/provider/service/debian.rb
         | 
| 204 | 
            -
            - lib/puppet/provider/service/freebsd.rb
         | 
| 205 | 
            -
            - lib/puppet/provider/ssh_authorized_key/parsed.rb
         | 
| 206 | 
            -
            - lib/puppet/provider/sshkey/parsed.rb
         | 
| 207 | 
            -
            - lib/puppet/provider/zpool/solaris.rb
         | 
| 208 | 
            -
            - lib/puppet/provider/confine/exists.rb
         | 
| 209 | 
            -
            - lib/puppet/provider/confine/false.rb
         | 
| 210 | 
            -
            - lib/puppet/provider/confine/variable.rb
         | 
| 211 | 
            -
            - lib/puppet/provider/confine/feature.rb
         | 
| 212 | 
            -
            - lib/puppet/provider/confine/true.rb
         | 
| 213 | 
            -
            - lib/puppet/provider/augeas/augeas.rb
         | 
| 214 | 
            -
            - lib/puppet/provider/nameservice/#directoryservice.rb#
         | 
| 215 | 
            -
            - lib/puppet/provider/nameservice/directoryservice.rb
         | 
| 216 | 
            -
            - lib/puppet/provider/nameservice/pw.rb
         | 
| 217 | 
            -
            - lib/puppet/provider/nameservice/objectadd.rb
         | 
| 218 | 
            -
            - lib/puppet/provider/mailalias/aliases.rb
         | 
| 65 | 
            +
            - bin/puppet
         | 
| 66 | 
            +
            - bin/puppetdoc
         | 
| 67 | 
            +
            - bin/ralsh
         | 
| 68 | 
            +
            - lib/puppet/agent/locker.rb
         | 
| 69 | 
            +
            - lib/puppet/agent.rb
         | 
| 70 | 
            +
            - lib/puppet/application/agent.rb
         | 
| 71 | 
            +
            - lib/puppet/application/apply.rb
         | 
| 72 | 
            +
            - lib/puppet/application/cert.rb
         | 
| 73 | 
            +
            - lib/puppet/application/describe.rb
         | 
| 74 | 
            +
            - lib/puppet/application/doc.rb
         | 
| 75 | 
            +
            - lib/puppet/application/filebucket.rb
         | 
| 76 | 
            +
            - lib/puppet/application/inspect.rb
         | 
| 77 | 
            +
            - lib/puppet/application/kick.rb
         | 
| 78 | 
            +
            - lib/puppet/application/master.rb
         | 
| 79 | 
            +
            - lib/puppet/application/queue.rb
         | 
| 80 | 
            +
            - lib/puppet/application/resource.rb
         | 
| 81 | 
            +
            - lib/puppet/application.rb
         | 
| 82 | 
            +
            - lib/puppet/configurer/downloader.rb
         | 
| 83 | 
            +
            - lib/puppet/configurer/fact_handler.rb
         | 
| 84 | 
            +
            - lib/puppet/configurer/plugin_handler.rb
         | 
| 85 | 
            +
            - lib/puppet/configurer.rb
         | 
| 86 | 
            +
            - lib/puppet/daemon.rb
         | 
| 87 | 
            +
            - lib/puppet/defaults.rb
         | 
| 88 | 
            +
            - lib/puppet/dsl/resource_api.rb
         | 
| 89 | 
            +
            - lib/puppet/dsl/resource_type_api.rb
         | 
| 90 | 
            +
            - lib/puppet/dsl.rb
         | 
| 219 91 | 
             
            - lib/puppet/error.rb
         | 
| 220 | 
            -
            - lib/puppet/ | 
| 221 | 
            -
            - lib/puppet/ | 
| 222 | 
            -
            - lib/puppet/rails/fact_value.rb
         | 
| 223 | 
            -
            - lib/puppet/rails/resource_tag.rb
         | 
| 224 | 
            -
            - lib/puppet/rails/fact_name.rb
         | 
| 225 | 
            -
            - lib/puppet/rails/inventory_node.rb
         | 
| 226 | 
            -
            - lib/puppet/rails/param_value.rb
         | 
| 227 | 
            -
            - lib/puppet/rails/benchmark.rb
         | 
| 228 | 
            -
            - lib/puppet/rails/puppet_tag.rb
         | 
| 229 | 
            -
            - lib/puppet/rails/database/003_add_environment_to_host.rb
         | 
| 230 | 
            -
            - lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
         | 
| 231 | 
            -
            - lib/puppet/rails/database/schema.rb
         | 
| 232 | 
            -
            - lib/puppet/rails/database/001_add_created_at_to_all_tables.rb
         | 
| 233 | 
            -
            - lib/puppet/rails/database/004_add_inventory_service_tables.rb
         | 
| 234 | 
            -
            - lib/puppet/rails/param_name.rb
         | 
| 235 | 
            -
            - lib/puppet/rails/source_file.rb
         | 
| 236 | 
            -
            - lib/puppet/rails/resource.rb
         | 
| 237 | 
            -
            - lib/puppet/rails.rb
         | 
| 238 | 
            -
            - lib/puppet/run.rb
         | 
| 239 | 
            -
            - lib/puppet/reports.rb
         | 
| 240 | 
            -
            - lib/puppet/external/event-loop/event-loop.rb
         | 
| 92 | 
            +
            - lib/puppet/external/base64.rb
         | 
| 93 | 
            +
            - lib/puppet/external/dot.rb
         | 
| 241 94 | 
             
            - lib/puppet/external/event-loop/better-definers.rb
         | 
| 95 | 
            +
            - lib/puppet/external/event-loop/event-loop.rb
         | 
| 242 96 | 
             
            - lib/puppet/external/event-loop/signal-system.rb
         | 
| 243 | 
            -
            - lib/puppet/external/lock.rb
         | 
| 244 97 | 
             
            - lib/puppet/external/event-loop.rb
         | 
| 98 | 
            +
            - lib/puppet/external/lock.rb
         | 
| 99 | 
            +
            - lib/puppet/external/nagios/base.rb
         | 
| 100 | 
            +
            - lib/puppet/external/nagios/grammar.ry
         | 
| 101 | 
            +
            - lib/puppet/external/nagios/makefile
         | 
| 102 | 
            +
            - lib/puppet/external/nagios/parser.rb
         | 
| 103 | 
            +
            - lib/puppet/external/nagios.rb
         | 
| 245 104 | 
             
            - lib/puppet/external/pson/common.rb
         | 
| 246 105 | 
             
            - lib/puppet/external/pson/pure/generator.rb
         | 
| 247 106 | 
             
            - lib/puppet/external/pson/pure/parser.rb
         | 
| 248 | 
            -
            - lib/puppet/external/pson/version.rb
         | 
| 249 107 | 
             
            - lib/puppet/external/pson/pure.rb
         | 
| 250 | 
            -
            - lib/puppet/external/ | 
| 251 | 
            -
            - lib/puppet/ | 
| 252 | 
            -
            - lib/puppet/ | 
| 253 | 
            -
            - lib/puppet/ | 
| 254 | 
            -
            - lib/puppet/ | 
| 255 | 
            -
            - lib/puppet/ | 
| 256 | 
            -
            - lib/puppet/ | 
| 257 | 
            -
            - lib/puppet/ | 
| 258 | 
            -
            - lib/puppet/ | 
| 259 | 
            -
            - lib/puppet/ | 
| 260 | 
            -
            - lib/puppet/ | 
| 261 | 
            -
            - lib/puppet/ | 
| 108 | 
            +
            - lib/puppet/external/pson/version.rb
         | 
| 109 | 
            +
            - lib/puppet/feature/base.rb
         | 
| 110 | 
            +
            - lib/puppet/feature/pson.rb
         | 
| 111 | 
            +
            - lib/puppet/feature/rack.rb
         | 
| 112 | 
            +
            - lib/puppet/feature/rails.rb
         | 
| 113 | 
            +
            - lib/puppet/feature/rubygems.rb
         | 
| 114 | 
            +
            - lib/puppet/feature/selinux.rb
         | 
| 115 | 
            +
            - lib/puppet/feature/stomp.rb
         | 
| 116 | 
            +
            - lib/puppet/feature/zlib.rb
         | 
| 117 | 
            +
            - lib/puppet/file_bucket/dipper.rb
         | 
| 118 | 
            +
            - lib/puppet/file_bucket/file/indirection_hooks.rb
         | 
| 119 | 
            +
            - lib/puppet/file_bucket/file.rb
         | 
| 120 | 
            +
            - lib/puppet/file_bucket.rb
         | 
| 262 121 | 
             
            - lib/puppet/file_collection/lookup.rb
         | 
| 263 | 
            -
            - lib/puppet/ | 
| 264 | 
            -
            - lib/puppet/ | 
| 265 | 
            -
            - lib/puppet/parser | 
| 266 | 
            -
            - lib/puppet/ | 
| 267 | 
            -
            - lib/puppet/ | 
| 268 | 
            -
            - lib/puppet/ | 
| 269 | 
            -
            - lib/puppet/ | 
| 270 | 
            -
            - lib/puppet/ | 
| 271 | 
            -
            - lib/puppet/ | 
| 272 | 
            -
            - lib/puppet/ | 
| 273 | 
            -
            - lib/puppet/ | 
| 274 | 
            -
            - lib/puppet/ | 
| 275 | 
            -
            - lib/puppet/ | 
| 276 | 
            -
            - lib/puppet/parser/functions/tag.rb
         | 
| 277 | 
            -
            - lib/puppet/parser/functions/search.rb
         | 
| 278 | 
            -
            - lib/puppet/parser/functions/require.rb
         | 
| 279 | 
            -
            - lib/puppet/parser/functions/fqdn_rand.rb
         | 
| 280 | 
            -
            - lib/puppet/parser/functions/md5.rb
         | 
| 281 | 
            -
            - lib/puppet/parser/functions/tagged.rb
         | 
| 282 | 
            -
            - lib/puppet/parser/functions/fail.rb
         | 
| 283 | 
            -
            - lib/puppet/parser/functions/file.rb
         | 
| 284 | 
            -
            - lib/puppet/parser/functions/extlookup.rb
         | 
| 285 | 
            -
            - lib/puppet/parser/functions/template.rb
         | 
| 286 | 
            -
            - lib/puppet/parser/functions/versioncmp.rb
         | 
| 287 | 
            -
            - lib/puppet/parser/functions/defined.rb
         | 
| 288 | 
            -
            - lib/puppet/parser/functions/sprintf.rb
         | 
| 289 | 
            -
            - lib/puppet/parser/functions/include.rb
         | 
| 290 | 
            -
            - lib/puppet/parser/functions/shellquote.rb
         | 
| 291 | 
            -
            - lib/puppet/parser/functions/regsubst.rb
         | 
| 292 | 
            -
            - lib/puppet/parser/functions/sha1.rb
         | 
| 293 | 
            -
            - lib/puppet/parser/functions/inline_template.rb
         | 
| 294 | 
            -
            - lib/puppet/parser/functions/realize.rb
         | 
| 295 | 
            -
            - lib/puppet/parser/functions/split.rb
         | 
| 296 | 
            -
            - lib/puppet/parser/resource/param.rb
         | 
| 297 | 
            -
            - lib/puppet/parser/parser_support.rb
         | 
| 298 | 
            -
            - lib/puppet/parser/collector.rb
         | 
| 299 | 
            -
            - lib/puppet/parser/type_loader.rb
         | 
| 300 | 
            -
            - lib/puppet/parser/ast/minus.rb
         | 
| 301 | 
            -
            - lib/puppet/parser/ast/in_operator.rb
         | 
| 302 | 
            -
            - lib/puppet/parser/ast/resource_override.rb
         | 
| 303 | 
            -
            - lib/puppet/parser/ast/tag.rb
         | 
| 304 | 
            -
            - lib/puppet/parser/ast/boolean_operator.rb
         | 
| 305 | 
            -
            - lib/puppet/parser/ast/function.rb
         | 
| 306 | 
            -
            - lib/puppet/parser/ast/vardef.rb
         | 
| 307 | 
            -
            - lib/puppet/parser/ast/casestatement.rb
         | 
| 308 | 
            -
            - lib/puppet/parser/ast/comparison_operator.rb
         | 
| 309 | 
            -
            - lib/puppet/parser/ast/nop.rb
         | 
| 310 | 
            -
            - lib/puppet/parser/ast/collection.rb
         | 
| 311 | 
            -
            - lib/puppet/parser/ast/resource_reference.rb
         | 
| 312 | 
            -
            - lib/puppet/parser/ast/astarray.rb
         | 
| 313 | 
            -
            - lib/puppet/parser/ast/branch.rb
         | 
| 314 | 
            -
            - lib/puppet/parser/ast/match_operator.rb
         | 
| 315 | 
            -
            - lib/puppet/parser/ast/else.rb
         | 
| 316 | 
            -
            - lib/puppet/parser/ast/arithmetic_operator.rb
         | 
| 317 | 
            -
            - lib/puppet/parser/ast/caseopt.rb
         | 
| 318 | 
            -
            - lib/puppet/parser/ast/asthash.rb
         | 
| 319 | 
            -
            - lib/puppet/parser/ast/selector.rb
         | 
| 320 | 
            -
            - lib/puppet/parser/ast/resource_defaults.rb
         | 
| 321 | 
            -
            - lib/puppet/parser/ast/not.rb
         | 
| 322 | 
            -
            - lib/puppet/parser/ast/ifstatement.rb
         | 
| 323 | 
            -
            - lib/puppet/parser/ast/resourceparam.rb
         | 
| 324 | 
            -
            - lib/puppet/parser/ast/resource.rb
         | 
| 325 | 
            -
            - lib/puppet/parser/ast/leaf.rb
         | 
| 326 | 
            -
            - lib/puppet/parser/ast/relationship.rb
         | 
| 327 | 
            -
            - lib/puppet/parser/ast/collexpr.rb
         | 
| 328 | 
            -
            - lib/puppet/parser/resource.rb
         | 
| 329 | 
            -
            - lib/puppet/parser/relationship.rb
         | 
| 330 | 
            -
            - lib/puppet/simple_graph.rb
         | 
| 331 | 
            -
            - lib/puppet/application/kick.rb
         | 
| 332 | 
            -
            - lib/puppet/application/master.rb
         | 
| 333 | 
            -
            - lib/puppet/application/queue.rb
         | 
| 334 | 
            -
            - lib/puppet/application/agent.rb
         | 
| 335 | 
            -
            - lib/puppet/application/inspect.rb
         | 
| 336 | 
            -
            - lib/puppet/application/describe.rb
         | 
| 337 | 
            -
            - lib/puppet/application/doc.rb
         | 
| 338 | 
            -
            - lib/puppet/application/cert.rb
         | 
| 339 | 
            -
            - lib/puppet/application/filebucket.rb
         | 
| 340 | 
            -
            - lib/puppet/application/resource.rb
         | 
| 341 | 
            -
            - lib/puppet/application/apply.rb
         | 
| 342 | 
            -
            - lib/puppet/metatype/manager.rb
         | 
| 343 | 
            -
            - lib/puppet/reports/log.rb
         | 
| 344 | 
            -
            - lib/puppet/reports/store.rb
         | 
| 345 | 
            -
            - lib/puppet/reports/tagmail.rb
         | 
| 346 | 
            -
            - lib/puppet/reports/http.rb
         | 
| 347 | 
            -
            - lib/puppet/reports/rrdgraph.rb
         | 
| 348 | 
            -
            - lib/puppet/ssl/certificate_authority/interface.rb
         | 
| 349 | 
            -
            - lib/puppet/ssl/host.rb
         | 
| 350 | 
            -
            - lib/puppet/ssl/certificate.rb
         | 
| 351 | 
            -
            - lib/puppet/ssl/certificate_authority.rb
         | 
| 352 | 
            -
            - lib/puppet/ssl/key.rb
         | 
| 353 | 
            -
            - lib/puppet/ssl/certificate_revocation_list.rb
         | 
| 354 | 
            -
            - lib/puppet/ssl/certificate_request.rb
         | 
| 355 | 
            -
            - lib/puppet/ssl/certificate_factory.rb
         | 
| 356 | 
            -
            - lib/puppet/ssl/inventory.rb
         | 
| 357 | 
            -
            - lib/puppet/ssl/base.rb
         | 
| 122 | 
            +
            - lib/puppet/file_collection.rb
         | 
| 123 | 
            +
            - lib/puppet/file_serving/base.rb
         | 
| 124 | 
            +
            - lib/puppet/file_serving/configuration/parser.rb
         | 
| 125 | 
            +
            - lib/puppet/file_serving/configuration.rb
         | 
| 126 | 
            +
            - lib/puppet/file_serving/content.rb
         | 
| 127 | 
            +
            - lib/puppet/file_serving/fileset.rb
         | 
| 128 | 
            +
            - lib/puppet/file_serving/indirection_hooks.rb
         | 
| 129 | 
            +
            - lib/puppet/file_serving/metadata.rb
         | 
| 130 | 
            +
            - lib/puppet/file_serving/mount/file.rb
         | 
| 131 | 
            +
            - lib/puppet/file_serving/mount/modules.rb
         | 
| 132 | 
            +
            - lib/puppet/file_serving/mount/plugins.rb
         | 
| 133 | 
            +
            - lib/puppet/file_serving/mount.rb
         | 
| 134 | 
            +
            - lib/puppet/file_serving/terminus_helper.rb
         | 
| 358 135 | 
             
            - lib/puppet/file_serving.rb
         | 
| 359 | 
            -
            - lib/puppet/ | 
| 360 | 
            -
            - lib/puppet/ | 
| 361 | 
            -
            - lib/puppet/ | 
| 362 | 
            -
            - lib/puppet/ | 
| 363 | 
            -
            - lib/puppet/ | 
| 364 | 
            -
            - lib/puppet/ | 
| 365 | 
            -
            - lib/puppet/ | 
| 366 | 
            -
            - lib/puppet/ | 
| 367 | 
            -
            - lib/puppet/ | 
| 368 | 
            -
            - lib/puppet/indirector.rb
         | 
| 369 | 
            -
            - lib/puppet/application.rb
         | 
| 370 | 
            -
            - lib/puppet/parser.rb
         | 
| 371 | 
            -
            - lib/puppet/dsl.rb
         | 
| 372 | 
            -
            - lib/puppet/transaction/event.rb
         | 
| 373 | 
            -
            - lib/puppet/transaction/event_manager.rb
         | 
| 374 | 
            -
            - lib/puppet/transaction/report.rb
         | 
| 375 | 
            -
            - lib/puppet/transaction/resource_harness.rb
         | 
| 376 | 
            -
            - lib/puppet/node/environment.rb
         | 
| 377 | 
            -
            - lib/puppet/node/facts.rb
         | 
| 378 | 
            -
            - lib/puppet/configurer.rb
         | 
| 379 | 
            -
            - lib/puppet/property/ordered_list.rb
         | 
| 380 | 
            -
            - lib/puppet/property/ensure.rb
         | 
| 381 | 
            -
            - lib/puppet/property/list.rb
         | 
| 382 | 
            -
            - lib/puppet/property/keyvalue.rb
         | 
| 383 | 
            -
            - lib/puppet/parameter/value.rb
         | 
| 384 | 
            -
            - lib/puppet/parameter/path.rb
         | 
| 385 | 
            -
            - lib/puppet/parameter/value_collection.rb
         | 
| 386 | 
            -
            - lib/puppet/util.rb
         | 
| 387 | 
            -
            - lib/puppet/agent.rb
         | 
| 388 | 
            -
            - lib/puppet/indirector/file_metadata/rest.rb
         | 
| 389 | 
            -
            - lib/puppet/indirector/file_metadata/file.rb
         | 
| 390 | 
            -
            - lib/puppet/indirector/file_metadata/file_server.rb
         | 
| 391 | 
            -
            - lib/puppet/indirector/file_content.rb
         | 
| 392 | 
            -
            - lib/puppet/indirector/status/rest.rb
         | 
| 393 | 
            -
            - lib/puppet/indirector/status/local.rb
         | 
| 394 | 
            -
            - lib/puppet/indirector/run/rest.rb
         | 
| 395 | 
            -
            - lib/puppet/indirector/run/local.rb
         | 
| 396 | 
            -
            - lib/puppet/indirector/rest.rb
         | 
| 397 | 
            -
            - lib/puppet/indirector/key/ca.rb
         | 
| 398 | 
            -
            - lib/puppet/indirector/key/file.rb
         | 
| 136 | 
            +
            - lib/puppet/indirector/active_record.rb
         | 
| 137 | 
            +
            - lib/puppet/indirector/catalog/active_record.rb
         | 
| 138 | 
            +
            - lib/puppet/indirector/catalog/compiler.rb
         | 
| 139 | 
            +
            - lib/puppet/indirector/catalog/queue.rb
         | 
| 140 | 
            +
            - lib/puppet/indirector/catalog/rest.rb
         | 
| 141 | 
            +
            - lib/puppet/indirector/catalog/yaml.rb
         | 
| 142 | 
            +
            - lib/puppet/indirector/certificate/ca.rb
         | 
| 143 | 
            +
            - lib/puppet/indirector/certificate/file.rb
         | 
| 144 | 
            +
            - lib/puppet/indirector/certificate/rest.rb
         | 
| 399 145 | 
             
            - lib/puppet/indirector/certificate_request/ca.rb
         | 
| 400 | 
            -
            - lib/puppet/indirector/certificate_request/rest.rb
         | 
| 401 146 | 
             
            - lib/puppet/indirector/certificate_request/file.rb
         | 
| 147 | 
            +
            - lib/puppet/indirector/certificate_request/rest.rb
         | 
| 402 148 | 
             
            - lib/puppet/indirector/certificate_revocation_list/ca.rb
         | 
| 403 | 
            -
            - lib/puppet/indirector/certificate_revocation_list/rest.rb
         | 
| 404 149 | 
             
            - lib/puppet/indirector/certificate_revocation_list/file.rb
         | 
| 150 | 
            +
            - lib/puppet/indirector/certificate_revocation_list/rest.rb
         | 
| 151 | 
            +
            - lib/puppet/indirector/code.rb
         | 
| 152 | 
            +
            - lib/puppet/indirector/couch.rb
         | 
| 153 | 
            +
            - lib/puppet/indirector/direct_file_server.rb
         | 
| 405 154 | 
             
            - lib/puppet/indirector/envelope.rb
         | 
| 406 | 
            -
            - lib/puppet/indirector/ | 
| 407 | 
            -
            - lib/puppet/indirector/facts/ | 
| 408 | 
            -
            - lib/puppet/indirector/facts/facter.rb
         | 
| 155 | 
            +
            - lib/puppet/indirector/exec.rb
         | 
| 156 | 
            +
            - lib/puppet/indirector/facts/active_record.rb
         | 
| 409 157 | 
             
            - lib/puppet/indirector/facts/couch.rb
         | 
| 410 | 
            -
            - lib/puppet/indirector/facts/ | 
| 158 | 
            +
            - lib/puppet/indirector/facts/facter.rb
         | 
| 159 | 
            +
            - lib/puppet/indirector/facts/inventory_active_record.rb
         | 
| 411 160 | 
             
            - lib/puppet/indirector/facts/memory.rb
         | 
| 412 | 
            -
            - lib/puppet/indirector/facts/ | 
| 413 | 
            -
            - lib/puppet/indirector/ | 
| 161 | 
            +
            - lib/puppet/indirector/facts/rest.rb
         | 
| 162 | 
            +
            - lib/puppet/indirector/facts/yaml.rb
         | 
| 414 163 | 
             
            - lib/puppet/indirector/file.rb
         | 
| 415 | 
            -
            - lib/puppet/indirector/ | 
| 416 | 
            -
            - lib/puppet/indirector/ | 
| 417 | 
            -
            - lib/puppet/indirector/report/yaml.rb
         | 
| 418 | 
            -
            - lib/puppet/indirector/node/rest.rb
         | 
| 419 | 
            -
            - lib/puppet/indirector/node/ldap.rb
         | 
| 420 | 
            -
            - lib/puppet/indirector/node/plain.rb
         | 
| 421 | 
            -
            - lib/puppet/indirector/node/yaml.rb
         | 
| 422 | 
            -
            - lib/puppet/indirector/node/exec.rb
         | 
| 423 | 
            -
            - lib/puppet/indirector/node/memory.rb
         | 
| 424 | 
            -
            - lib/puppet/indirector/node/active_record.rb
         | 
| 425 | 
            -
            - lib/puppet/indirector/ldap.rb
         | 
| 426 | 
            -
            - lib/puppet/indirector/code.rb
         | 
| 427 | 
            -
            - lib/puppet/indirector/file_content/rest.rb
         | 
| 164 | 
            +
            - lib/puppet/indirector/file_bucket_file/file.rb
         | 
| 165 | 
            +
            - lib/puppet/indirector/file_bucket_file/rest.rb
         | 
| 428 166 | 
             
            - lib/puppet/indirector/file_content/file.rb
         | 
| 429 167 | 
             
            - lib/puppet/indirector/file_content/file_server.rb
         | 
| 430 | 
            -
            - lib/puppet/indirector/ | 
| 168 | 
            +
            - lib/puppet/indirector/file_content/rest.rb
         | 
| 169 | 
            +
            - lib/puppet/indirector/file_content.rb
         | 
| 170 | 
            +
            - lib/puppet/indirector/file_metadata/file.rb
         | 
| 171 | 
            +
            - lib/puppet/indirector/file_metadata/file_server.rb
         | 
| 172 | 
            +
            - lib/puppet/indirector/file_metadata/rest.rb
         | 
| 431 173 | 
             
            - lib/puppet/indirector/file_metadata.rb
         | 
| 432 | 
            -
            - lib/puppet/indirector/ | 
| 433 | 
            -
            - lib/puppet/indirector/resource/rest.rb
         | 
| 174 | 
            +
            - lib/puppet/indirector/file_server.rb
         | 
| 434 175 | 
             
            - lib/puppet/indirector/indirection.rb
         | 
| 176 | 
            +
            - lib/puppet/indirector/key/ca.rb
         | 
| 177 | 
            +
            - lib/puppet/indirector/key/file.rb
         | 
| 178 | 
            +
            - lib/puppet/indirector/ldap.rb
         | 
| 179 | 
            +
            - lib/puppet/indirector/memory.rb
         | 
| 180 | 
            +
            - lib/puppet/indirector/node/active_record.rb
         | 
| 181 | 
            +
            - lib/puppet/indirector/node/exec.rb
         | 
| 182 | 
            +
            - lib/puppet/indirector/node/ldap.rb
         | 
| 183 | 
            +
            - lib/puppet/indirector/node/memory.rb
         | 
| 184 | 
            +
            - lib/puppet/indirector/node/plain.rb
         | 
| 185 | 
            +
            - lib/puppet/indirector/node/rest.rb
         | 
| 186 | 
            +
            - lib/puppet/indirector/node/yaml.rb
         | 
| 435 187 | 
             
            - lib/puppet/indirector/plain.rb
         | 
| 436 | 
            -
            - lib/puppet/indirector/ | 
| 437 | 
            -
            - lib/puppet/indirector/ | 
| 438 | 
            -
            - lib/puppet/indirector/ | 
| 439 | 
            -
            - lib/puppet/indirector/ | 
| 440 | 
            -
            - lib/puppet/indirector/ | 
| 441 | 
            -
            - lib/puppet/indirector/ | 
| 442 | 
            -
            - lib/puppet/indirector/ | 
| 443 | 
            -
            - lib/puppet/indirector/ | 
| 188 | 
            +
            - lib/puppet/indirector/queue.rb
         | 
| 189 | 
            +
            - lib/puppet/indirector/report/processor.rb
         | 
| 190 | 
            +
            - lib/puppet/indirector/report/rest.rb
         | 
| 191 | 
            +
            - lib/puppet/indirector/report/yaml.rb
         | 
| 192 | 
            +
            - lib/puppet/indirector/request.rb
         | 
| 193 | 
            +
            - lib/puppet/indirector/resource/ral.rb
         | 
| 194 | 
            +
            - lib/puppet/indirector/resource/rest.rb
         | 
| 195 | 
            +
            - lib/puppet/indirector/resource_type/parser.rb
         | 
| 196 | 
            +
            - lib/puppet/indirector/resource_type/rest.rb
         | 
| 444 197 | 
             
            - lib/puppet/indirector/resource_type.rb
         | 
| 445 | 
            -
            - lib/puppet/indirector/ | 
| 446 | 
            -
            - lib/puppet/indirector/ | 
| 447 | 
            -
            - lib/puppet/indirector/ | 
| 448 | 
            -
            - lib/puppet/indirector/ | 
| 449 | 
            -
            - lib/puppet/indirector/ | 
| 450 | 
            -
            - lib/puppet/indirector/ | 
| 451 | 
            -
            - lib/puppet/indirector/file_bucket_file/file.rb
         | 
| 198 | 
            +
            - lib/puppet/indirector/rest.rb
         | 
| 199 | 
            +
            - lib/puppet/indirector/run/local.rb
         | 
| 200 | 
            +
            - lib/puppet/indirector/run/rest.rb
         | 
| 201 | 
            +
            - lib/puppet/indirector/ssl_file.rb
         | 
| 202 | 
            +
            - lib/puppet/indirector/status/local.rb
         | 
| 203 | 
            +
            - lib/puppet/indirector/status/rest.rb
         | 
| 452 204 | 
             
            - lib/puppet/indirector/status.rb
         | 
| 453 | 
            -
            - lib/puppet/indirector/ | 
| 454 | 
            -
            - lib/puppet/indirector/ | 
| 455 | 
            -
            - lib/puppet/indirector | 
| 456 | 
            -
            - lib/puppet/ | 
| 457 | 
            -
            - lib/puppet/ | 
| 458 | 
            -
            - lib/puppet/ | 
| 459 | 
            -
            - lib/puppet/dsl/resource_api.rb
         | 
| 460 | 
            -
            - lib/puppet/dsl/resource_type_api.rb
         | 
| 461 | 
            -
            - lib/puppet/type.rb
         | 
| 462 | 
            -
            - lib/puppet/resource/type_collection_helper.rb
         | 
| 463 | 
            -
            - lib/puppet/resource/catalog.rb
         | 
| 464 | 
            -
            - lib/puppet/resource/type.rb
         | 
| 465 | 
            -
            - lib/puppet/resource/type_collection.rb
         | 
| 466 | 
            -
            - lib/puppet/resource/status.rb
         | 
| 467 | 
            -
            - lib/puppet/file_serving/mount.rb
         | 
| 468 | 
            -
            - lib/puppet/file_serving/mount/modules.rb
         | 
| 469 | 
            -
            - lib/puppet/file_serving/mount/file.rb
         | 
| 470 | 
            -
            - lib/puppet/file_serving/mount/plugins.rb
         | 
| 471 | 
            -
            - lib/puppet/file_serving/indirection_hooks.rb
         | 
| 472 | 
            -
            - lib/puppet/file_serving/content.rb
         | 
| 473 | 
            -
            - lib/puppet/file_serving/configuration/parser.rb
         | 
| 474 | 
            -
            - lib/puppet/file_serving/base.rb
         | 
| 475 | 
            -
            - lib/puppet/file_serving/metadata.rb
         | 
| 476 | 
            -
            - lib/puppet/file_serving/configuration.rb
         | 
| 477 | 
            -
            - lib/puppet/file_serving/terminus_helper.rb
         | 
| 478 | 
            -
            - lib/puppet/file_serving/fileset.rb
         | 
| 479 | 
            -
            - lib/puppet/daemon.rb
         | 
| 480 | 
            -
            - lib/puppet/network/server.rb
         | 
| 205 | 
            +
            - lib/puppet/indirector/terminus.rb
         | 
| 206 | 
            +
            - lib/puppet/indirector/yaml.rb
         | 
| 207 | 
            +
            - lib/puppet/indirector.rb
         | 
| 208 | 
            +
            - lib/puppet/metatype/manager.rb
         | 
| 209 | 
            +
            - lib/puppet/module.rb
         | 
| 210 | 
            +
            - lib/puppet/network/authconfig.rb
         | 
| 481 211 | 
             
            - lib/puppet/network/authorization.rb
         | 
| 482 | 
            -
            - lib/puppet/network/ | 
| 483 | 
            -
            - lib/puppet/network/http_server/webrick.rb
         | 
| 484 | 
            -
            - lib/puppet/network/http_server/mongrel.rb
         | 
| 485 | 
            -
            - lib/puppet/network/rest_authorization.rb
         | 
| 486 | 
            -
            - lib/puppet/network/rights.rb
         | 
| 212 | 
            +
            - lib/puppet/network/authstore.rb
         | 
| 487 213 | 
             
            - lib/puppet/network/client/ca.rb
         | 
| 488 214 | 
             
            - lib/puppet/network/client/file.rb
         | 
| 489 | 
            -
            - lib/puppet/network/client/runner.rb
         | 
| 490 | 
            -
            - lib/puppet/network/client/report.rb
         | 
| 491 215 | 
             
            - lib/puppet/network/client/proxy.rb
         | 
| 216 | 
            +
            - lib/puppet/network/client/report.rb
         | 
| 217 | 
            +
            - lib/puppet/network/client/runner.rb
         | 
| 492 218 | 
             
            - lib/puppet/network/client/status.rb
         | 
| 493 | 
            -
            - lib/puppet/network/ | 
| 494 | 
            -
            - lib/puppet/network/ | 
| 495 | 
            -
            - lib/puppet/network/http.rb
         | 
| 496 | 
            -
            - lib/puppet/network/authstore.rb
         | 
| 497 | 
            -
            - lib/puppet/network/http_pool.rb
         | 
| 219 | 
            +
            - lib/puppet/network/client.rb
         | 
| 220 | 
            +
            - lib/puppet/network/client_request.rb
         | 
| 498 221 | 
             
            - lib/puppet/network/format.rb
         | 
| 499 222 | 
             
            - lib/puppet/network/format_handler.rb
         | 
| 500 | 
            -
            - lib/puppet/network/ | 
| 501 | 
            -
            - lib/puppet/network/rest_controller.rb
         | 
| 502 | 
            -
            - lib/puppet/network/http/compression.rb
         | 
| 503 | 
            -
            - lib/puppet/network/http/webrick/rest.rb
         | 
| 504 | 
            -
            - lib/puppet/network/http/webrick.rb
         | 
| 505 | 
            -
            - lib/puppet/network/http/rack.rb
         | 
| 506 | 
            -
            - lib/puppet/network/http/rack/xmlrpc.rb
         | 
| 507 | 
            -
            - lib/puppet/network/http/rack/rest.rb
         | 
| 508 | 
            -
            - lib/puppet/network/http/rack/httphandler.rb
         | 
| 509 | 
            -
            - lib/puppet/network/http/mongrel.rb
         | 
| 510 | 
            -
            - lib/puppet/network/http/api/v1.rb
         | 
| 511 | 
            -
            - lib/puppet/network/http/api.rb
         | 
| 512 | 
            -
            - lib/puppet/network/http/handler.rb
         | 
| 513 | 
            -
            - lib/puppet/network/http/mongrel/rest.rb
         | 
| 223 | 
            +
            - lib/puppet/network/formats.rb
         | 
| 514 224 | 
             
            - lib/puppet/network/handler/ca.rb
         | 
| 515 | 
            -
            - lib/puppet/network/handler/ | 
| 516 | 
            -
            - lib/puppet/network/handler/runner.rb
         | 
| 225 | 
            +
            - lib/puppet/network/handler/filebucket.rb
         | 
| 517 226 | 
             
            - lib/puppet/network/handler/fileserver.rb
         | 
| 227 | 
            +
            - lib/puppet/network/handler/master.rb
         | 
| 518 228 | 
             
            - lib/puppet/network/handler/report.rb
         | 
| 519 | 
            -
            - lib/puppet/network/handler/ | 
| 229 | 
            +
            - lib/puppet/network/handler/runner.rb
         | 
| 520 230 | 
             
            - lib/puppet/network/handler/status.rb
         | 
| 521 | 
            -
            - lib/puppet/network/rest_authconfig.rb
         | 
| 522 | 
            -
            - lib/puppet/network/formats.rb
         | 
| 523 231 | 
             
            - lib/puppet/network/handler.rb
         | 
| 524 | 
            -
            - lib/puppet/network/ | 
| 232 | 
            +
            - lib/puppet/network/http/api/v1.rb
         | 
| 233 | 
            +
            - lib/puppet/network/http/api.rb
         | 
| 234 | 
            +
            - lib/puppet/network/http/compression.rb
         | 
| 235 | 
            +
            - lib/puppet/network/http/handler.rb
         | 
| 236 | 
            +
            - lib/puppet/network/http/mongrel/rest.rb
         | 
| 237 | 
            +
            - lib/puppet/network/http/mongrel.rb
         | 
| 238 | 
            +
            - lib/puppet/network/http/rack/httphandler.rb
         | 
| 239 | 
            +
            - lib/puppet/network/http/rack/rest.rb
         | 
| 240 | 
            +
            - lib/puppet/network/http/rack/xmlrpc.rb
         | 
| 241 | 
            +
            - lib/puppet/network/http/rack.rb
         | 
| 242 | 
            +
            - lib/puppet/network/http/webrick/rest.rb
         | 
| 243 | 
            +
            - lib/puppet/network/http/webrick.rb
         | 
| 244 | 
            +
            - lib/puppet/network/http.rb
         | 
| 245 | 
            +
            - lib/puppet/network/http_pool.rb
         | 
| 246 | 
            +
            - lib/puppet/network/http_server/mongrel.rb
         | 
| 247 | 
            +
            - lib/puppet/network/http_server/webrick.rb
         | 
| 248 | 
            +
            - lib/puppet/network/http_server.rb
         | 
| 249 | 
            +
            - lib/puppet/network/rest_authconfig.rb
         | 
| 250 | 
            +
            - lib/puppet/network/rest_authorization.rb
         | 
| 251 | 
            +
            - lib/puppet/network/rest_controller.rb
         | 
| 252 | 
            +
            - lib/puppet/network/rights.rb
         | 
| 253 | 
            +
            - lib/puppet/network/server.rb
         | 
| 254 | 
            +
            - lib/puppet/network/xmlrpc/client.rb
         | 
| 525 255 | 
             
            - lib/puppet/network/xmlrpc/processor.rb
         | 
| 256 | 
            +
            - lib/puppet/network/xmlrpc/server.rb
         | 
| 526 257 | 
             
            - lib/puppet/network/xmlrpc/webrick_servlet.rb
         | 
| 527 | 
            -
            - lib/puppet/network | 
| 528 | 
            -
            - lib/puppet/ | 
| 529 | 
            -
            - lib/puppet/ | 
| 530 | 
            -
            - lib/puppet/configurer/plugin_handler.rb
         | 
| 531 | 
            -
            - lib/puppet/parameter.rb
         | 
| 258 | 
            +
            - lib/puppet/network.rb
         | 
| 259 | 
            +
            - lib/puppet/node/environment.rb
         | 
| 260 | 
            +
            - lib/puppet/node/facts.rb
         | 
| 532 261 | 
             
            - lib/puppet/node.rb
         | 
| 262 | 
            +
            - lib/puppet/parameter/path.rb
         | 
| 263 | 
            +
            - lib/puppet/parameter/value.rb
         | 
| 264 | 
            +
            - lib/puppet/parameter/value_collection.rb
         | 
| 265 | 
            +
            - lib/puppet/parameter.rb
         | 
| 266 | 
            +
            - lib/puppet/parser/ast/arithmetic_operator.rb
         | 
| 267 | 
            +
            - lib/puppet/parser/ast/astarray.rb
         | 
| 268 | 
            +
            - lib/puppet/parser/ast/asthash.rb
         | 
| 269 | 
            +
            - lib/puppet/parser/ast/boolean_operator.rb
         | 
| 270 | 
            +
            - lib/puppet/parser/ast/branch.rb
         | 
| 271 | 
            +
            - lib/puppet/parser/ast/caseopt.rb
         | 
| 272 | 
            +
            - lib/puppet/parser/ast/casestatement.rb
         | 
| 273 | 
            +
            - lib/puppet/parser/ast/collection.rb
         | 
| 274 | 
            +
            - lib/puppet/parser/ast/collexpr.rb
         | 
| 275 | 
            +
            - lib/puppet/parser/ast/comparison_operator.rb
         | 
| 276 | 
            +
            - lib/puppet/parser/ast/else.rb
         | 
| 277 | 
            +
            - lib/puppet/parser/ast/function.rb
         | 
| 278 | 
            +
            - lib/puppet/parser/ast/ifstatement.rb
         | 
| 279 | 
            +
            - lib/puppet/parser/ast/in_operator.rb
         | 
| 280 | 
            +
            - lib/puppet/parser/ast/leaf.rb
         | 
| 281 | 
            +
            - lib/puppet/parser/ast/match_operator.rb
         | 
| 282 | 
            +
            - lib/puppet/parser/ast/minus.rb
         | 
| 283 | 
            +
            - lib/puppet/parser/ast/nop.rb
         | 
| 284 | 
            +
            - lib/puppet/parser/ast/not.rb
         | 
| 285 | 
            +
            - lib/puppet/parser/ast/relationship.rb
         | 
| 286 | 
            +
            - lib/puppet/parser/ast/resource.rb
         | 
| 287 | 
            +
            - lib/puppet/parser/ast/resource_defaults.rb
         | 
| 288 | 
            +
            - lib/puppet/parser/ast/resource_override.rb
         | 
| 289 | 
            +
            - lib/puppet/parser/ast/resource_reference.rb
         | 
| 290 | 
            +
            - lib/puppet/parser/ast/resourceparam.rb
         | 
| 291 | 
            +
            - lib/puppet/parser/ast/selector.rb
         | 
| 292 | 
            +
            - lib/puppet/parser/ast/tag.rb
         | 
| 293 | 
            +
            - lib/puppet/parser/ast/vardef.rb
         | 
| 294 | 
            +
            - lib/puppet/parser/ast.rb
         | 
| 295 | 
            +
            - lib/puppet/parser/collector.rb
         | 
| 296 | 
            +
            - lib/puppet/parser/compiler.rb
         | 
| 297 | 
            +
            - lib/puppet/parser/files.rb
         | 
| 298 | 
            +
            - lib/puppet/parser/functions/defined.rb
         | 
| 299 | 
            +
            - lib/puppet/parser/functions/extlookup.rb
         | 
| 300 | 
            +
            - lib/puppet/parser/functions/fail.rb
         | 
| 301 | 
            +
            - lib/puppet/parser/functions/file.rb
         | 
| 302 | 
            +
            - lib/puppet/parser/functions/fqdn_rand.rb
         | 
| 303 | 
            +
            - lib/puppet/parser/functions/generate.rb
         | 
| 304 | 
            +
            - lib/puppet/parser/functions/include.rb
         | 
| 305 | 
            +
            - lib/puppet/parser/functions/inline_template.rb
         | 
| 306 | 
            +
            - lib/puppet/parser/functions/md5.rb
         | 
| 307 | 
            +
            - lib/puppet/parser/functions/realize.rb
         | 
| 308 | 
            +
            - lib/puppet/parser/functions/regsubst.rb
         | 
| 309 | 
            +
            - lib/puppet/parser/functions/require.rb
         | 
| 310 | 
            +
            - lib/puppet/parser/functions/search.rb
         | 
| 311 | 
            +
            - lib/puppet/parser/functions/sha1.rb
         | 
| 312 | 
            +
            - lib/puppet/parser/functions/shellquote.rb
         | 
| 313 | 
            +
            - lib/puppet/parser/functions/split.rb
         | 
| 314 | 
            +
            - lib/puppet/parser/functions/sprintf.rb
         | 
| 315 | 
            +
            - lib/puppet/parser/functions/tag.rb
         | 
| 316 | 
            +
            - lib/puppet/parser/functions/tagged.rb
         | 
| 317 | 
            +
            - lib/puppet/parser/functions/template.rb
         | 
| 318 | 
            +
            - lib/puppet/parser/functions/versioncmp.rb
         | 
| 319 | 
            +
            - lib/puppet/parser/functions.rb
         | 
| 320 | 
            +
            - lib/puppet/parser/grammar.ra
         | 
| 321 | 
            +
            - lib/puppet/parser/lexer.rb
         | 
| 322 | 
            +
            - lib/puppet/parser/makefile
         | 
| 323 | 
            +
            - lib/puppet/parser/parser.rb
         | 
| 324 | 
            +
            - lib/puppet/parser/parser_support.rb
         | 
| 325 | 
            +
            - lib/puppet/parser/relationship.rb
         | 
| 326 | 
            +
            - lib/puppet/parser/resource/param.rb
         | 
| 327 | 
            +
            - lib/puppet/parser/resource.rb
         | 
| 328 | 
            +
            - lib/puppet/parser/scope.rb
         | 
| 329 | 
            +
            - lib/puppet/parser/templatewrapper.rb
         | 
| 330 | 
            +
            - lib/puppet/parser/type_loader.rb
         | 
| 331 | 
            +
            - lib/puppet/parser/yaml_trimmer.rb
         | 
| 332 | 
            +
            - lib/puppet/parser.rb
         | 
| 333 | 
            +
            - lib/puppet/property/ensure.rb
         | 
| 334 | 
            +
            - lib/puppet/property/keyvalue.rb
         | 
| 335 | 
            +
            - lib/puppet/property/list.rb
         | 
| 336 | 
            +
            - lib/puppet/property/ordered_list.rb
         | 
| 533 337 | 
             
            - lib/puppet/property.rb
         | 
| 534 | 
            -
            - lib/puppet/ | 
| 535 | 
            -
            - lib/puppet/ | 
| 536 | 
            -
            - lib/puppet/ | 
| 537 | 
            -
            - lib/puppet/ | 
| 538 | 
            -
            - lib/puppet/ | 
| 539 | 
            -
            - lib/puppet/ | 
| 540 | 
            -
            - lib/puppet/ | 
| 541 | 
            -
            - lib/puppet/ | 
| 542 | 
            -
            - lib/puppet/ | 
| 543 | 
            -
            - lib/puppet/ | 
| 544 | 
            -
            - lib/puppet/ | 
| 545 | 
            -
            - lib/puppet/ | 
| 546 | 
            -
            - lib/puppet/ | 
| 547 | 
            -
            - lib/puppet/ | 
| 548 | 
            -
            - lib/puppet/ | 
| 549 | 
            -
            - lib/puppet/ | 
| 550 | 
            -
            - lib/puppet/ | 
| 551 | 
            -
            - lib/puppet/ | 
| 552 | 
            -
            - lib/puppet/ | 
| 553 | 
            -
            - lib/puppet/ | 
| 554 | 
            -
            - lib/puppet/ | 
| 555 | 
            -
            - lib/puppet/ | 
| 556 | 
            -
            - lib/puppet/ | 
| 557 | 
            -
            - lib/puppet/ | 
| 558 | 
            -
            - lib/puppet/ | 
| 559 | 
            -
            - lib/puppet/ | 
| 560 | 
            -
            - lib/puppet/ | 
| 561 | 
            -
            - lib/puppet/ | 
| 562 | 
            -
            - lib/puppet/ | 
| 563 | 
            -
            - lib/puppet/ | 
| 564 | 
            -
            - lib/puppet/ | 
| 565 | 
            -
            - lib/puppet/ | 
| 566 | 
            -
            - lib/puppet/ | 
| 567 | 
            -
            - lib/puppet/ | 
| 568 | 
            -
            - lib/puppet/ | 
| 569 | 
            -
            - lib/puppet/ | 
| 570 | 
            -
            - lib/puppet/ | 
| 571 | 
            -
            - lib/puppet/ | 
| 572 | 
            -
            - lib/puppet/ | 
| 573 | 
            -
            - lib/puppet/ | 
| 574 | 
            -
            - lib/puppet/ | 
| 575 | 
            -
            - lib/puppet/ | 
| 576 | 
            -
            - lib/puppet/ | 
| 577 | 
            -
            - lib/puppet/ | 
| 578 | 
            -
            - lib/puppet/ | 
| 579 | 
            -
            - lib/puppet/ | 
| 580 | 
            -
            - lib/puppet/ | 
| 581 | 
            -
            - lib/puppet/ | 
| 582 | 
            -
            - lib/puppet/ | 
| 583 | 
            -
            - lib/puppet/ | 
| 584 | 
            -
            - lib/puppet/ | 
| 585 | 
            -
            - lib/puppet/ | 
| 586 | 
            -
            - lib/puppet/ | 
| 587 | 
            -
            - lib/puppet/ | 
| 588 | 
            -
            - lib/puppet/ | 
| 589 | 
            -
            - lib/puppet/ | 
| 590 | 
            -
            - lib/puppet/ | 
| 591 | 
            -
            - lib/puppet/ | 
| 592 | 
            -
            - lib/puppet/ | 
| 593 | 
            -
            - lib/puppet/ | 
| 594 | 
            -
            - lib/puppet/ | 
| 595 | 
            -
            - lib/puppet/ | 
| 596 | 
            -
            - lib/puppet/ | 
| 597 | 
            -
            - lib/puppet/ | 
| 598 | 
            -
            - lib/puppet/ | 
| 599 | 
            -
            - lib/puppet/ | 
| 600 | 
            -
            - lib/puppet/ | 
| 601 | 
            -
            - lib/puppet/ | 
| 602 | 
            -
            - lib/puppet/ | 
| 603 | 
            -
            - lib/puppet/ | 
| 604 | 
            -
            - lib/puppet/ | 
| 605 | 
            -
            - lib/puppet/ | 
| 606 | 
            -
            - lib/puppet/ | 
| 607 | 
            -
            - lib/puppet/ | 
| 608 | 
            -
            - lib/puppet/ | 
| 609 | 
            -
            - lib/puppet/ | 
| 610 | 
            -
            - lib/puppet/ | 
| 611 | 
            -
            - lib/puppet/ | 
| 612 | 
            -
            - lib/puppet/ | 
| 613 | 
            -
            - lib/puppet/ | 
| 614 | 
            -
            - lib/puppet/ | 
| 615 | 
            -
            - lib/puppet/ | 
| 616 | 
            -
            - lib/puppet/ | 
| 617 | 
            -
            - lib/puppet/provider.rb
         | 
| 618 | 
            -
            - lib/puppet/ | 
| 619 | 
            -
            - lib/puppet/ | 
| 620 | 
            -
            - lib/puppet/ | 
| 621 | 
            -
            - lib/puppet/ | 
| 622 | 
            -
            - lib/puppet/ | 
| 623 | 
            -
            - lib/puppet/ | 
| 624 | 
            -
            - lib/puppet/ | 
| 625 | 
            -
            - lib/puppet/ | 
| 626 | 
            -
            - lib/puppet/ | 
| 627 | 
            -
            - lib/puppet/ | 
| 628 | 
            -
            - lib/puppet/ | 
| 629 | 
            -
            - lib/puppet/ | 
| 630 | 
            -
            - lib/puppet/ | 
| 631 | 
            -
            - lib/puppet/ | 
| 632 | 
            -
            - lib/puppet/ | 
| 338 | 
            +
            - lib/puppet/provider/augeas/augeas.rb
         | 
| 339 | 
            +
            - lib/puppet/provider/computer/computer.rb
         | 
| 340 | 
            +
            - lib/puppet/provider/confine/exists.rb
         | 
| 341 | 
            +
            - lib/puppet/provider/confine/false.rb
         | 
| 342 | 
            +
            - lib/puppet/provider/confine/feature.rb
         | 
| 343 | 
            +
            - lib/puppet/provider/confine/true.rb
         | 
| 344 | 
            +
            - lib/puppet/provider/confine/variable.rb
         | 
| 345 | 
            +
            - lib/puppet/provider/confine.rb
         | 
| 346 | 
            +
            - lib/puppet/provider/confine_collection.rb
         | 
| 347 | 
            +
            - lib/puppet/provider/confiner.rb
         | 
| 348 | 
            +
            - lib/puppet/provider/cron/crontab.rb
         | 
| 349 | 
            +
            - lib/puppet/provider/exec/posix.rb
         | 
| 350 | 
            +
            - lib/puppet/provider/exec/shell.rb
         | 
| 351 | 
            +
            - lib/puppet/provider/file/posix.rb
         | 
| 352 | 
            +
            - lib/puppet/provider/file/win32.rb
         | 
| 353 | 
            +
            - lib/puppet/provider/group/directoryservice.rb
         | 
| 354 | 
            +
            - lib/puppet/provider/group/groupadd.rb
         | 
| 355 | 
            +
            - lib/puppet/provider/group/ldap.rb
         | 
| 356 | 
            +
            - lib/puppet/provider/group/pw.rb
         | 
| 357 | 
            +
            - lib/puppet/provider/host/parsed.rb
         | 
| 358 | 
            +
            - lib/puppet/provider/ldap.rb
         | 
| 359 | 
            +
            - lib/puppet/provider/macauthorization/macauthorization.rb
         | 
| 360 | 
            +
            - lib/puppet/provider/mailalias/aliases.rb
         | 
| 361 | 
            +
            - lib/puppet/provider/maillist/mailman.rb
         | 
| 362 | 
            +
            - lib/puppet/provider/mcx/mcxcontent.rb
         | 
| 363 | 
            +
            - lib/puppet/provider/mount/parsed.rb
         | 
| 364 | 
            +
            - lib/puppet/provider/mount.rb
         | 
| 365 | 
            +
            - lib/puppet/provider/naginator.rb
         | 
| 366 | 
            +
            - lib/puppet/provider/nameservice/directoryservice.rb
         | 
| 367 | 
            +
            - lib/puppet/provider/nameservice/objectadd.rb
         | 
| 368 | 
            +
            - lib/puppet/provider/nameservice/pw.rb
         | 
| 369 | 
            +
            - lib/puppet/provider/nameservice.rb
         | 
| 370 | 
            +
            - lib/puppet/provider/package/aix.rb
         | 
| 371 | 
            +
            - lib/puppet/provider/package/appdmg.rb
         | 
| 372 | 
            +
            - lib/puppet/provider/package/apple.rb
         | 
| 373 | 
            +
            - lib/puppet/provider/package/apt.rb
         | 
| 374 | 
            +
            - lib/puppet/provider/package/aptitude.rb
         | 
| 375 | 
            +
            - lib/puppet/provider/package/aptrpm.rb
         | 
| 376 | 
            +
            - lib/puppet/provider/package/blastwave.rb
         | 
| 377 | 
            +
            - lib/puppet/provider/package/dpkg.rb
         | 
| 378 | 
            +
            - lib/puppet/provider/package/fink.rb
         | 
| 379 | 
            +
            - lib/puppet/provider/package/freebsd.rb
         | 
| 380 | 
            +
            - lib/puppet/provider/package/gem.rb
         | 
| 381 | 
            +
            - lib/puppet/provider/package/hpux.rb
         | 
| 382 | 
            +
            - lib/puppet/provider/package/macports.rb
         | 
| 383 | 
            +
            - lib/puppet/provider/package/nim.rb
         | 
| 384 | 
            +
            - lib/puppet/provider/package/openbsd.rb
         | 
| 385 | 
            +
            - lib/puppet/provider/package/pkg.rb
         | 
| 386 | 
            +
            - lib/puppet/provider/package/pkgdmg.rb
         | 
| 387 | 
            +
            - lib/puppet/provider/package/portage.rb
         | 
| 388 | 
            +
            - lib/puppet/provider/package/ports.rb
         | 
| 389 | 
            +
            - lib/puppet/provider/package/portupgrade.rb
         | 
| 390 | 
            +
            - lib/puppet/provider/package/rpm.rb
         | 
| 391 | 
            +
            - lib/puppet/provider/package/rug.rb
         | 
| 392 | 
            +
            - lib/puppet/provider/package/sun.rb
         | 
| 393 | 
            +
            - lib/puppet/provider/package/sunfreeware.rb
         | 
| 394 | 
            +
            - lib/puppet/provider/package/up2date.rb
         | 
| 395 | 
            +
            - lib/puppet/provider/package/urpmi.rb
         | 
| 396 | 
            +
            - lib/puppet/provider/package/yum.rb
         | 
| 397 | 
            +
            - lib/puppet/provider/package/yumhelper.py
         | 
| 398 | 
            +
            - lib/puppet/provider/package/zypper.rb
         | 
| 399 | 
            +
            - lib/puppet/provider/package.rb
         | 
| 400 | 
            +
            - lib/puppet/provider/parsedfile.rb
         | 
| 401 | 
            +
            - lib/puppet/provider/port/parsed.rb
         | 
| 402 | 
            +
            - lib/puppet/provider/selboolean/getsetsebool.rb
         | 
| 403 | 
            +
            - lib/puppet/provider/selmodule/semodule.rb
         | 
| 404 | 
            +
            - lib/puppet/provider/service/base.rb
         | 
| 405 | 
            +
            - lib/puppet/provider/service/bsd.rb
         | 
| 406 | 
            +
            - lib/puppet/provider/service/daemontools.rb
         | 
| 407 | 
            +
            - lib/puppet/provider/service/debian.rb
         | 
| 408 | 
            +
            - lib/puppet/provider/service/freebsd.rb
         | 
| 409 | 
            +
            - lib/puppet/provider/service/gentoo.rb
         | 
| 410 | 
            +
            - lib/puppet/provider/service/init.rb
         | 
| 411 | 
            +
            - lib/puppet/provider/service/launchd.rb
         | 
| 412 | 
            +
            - lib/puppet/provider/service/redhat.rb
         | 
| 413 | 
            +
            - lib/puppet/provider/service/runit.rb
         | 
| 414 | 
            +
            - lib/puppet/provider/service/smf.rb
         | 
| 415 | 
            +
            - lib/puppet/provider/service/src.rb
         | 
| 416 | 
            +
            - lib/puppet/provider/ssh_authorized_key/parsed.rb
         | 
| 417 | 
            +
            - lib/puppet/provider/sshkey/parsed.rb
         | 
| 418 | 
            +
            - lib/puppet/provider/user/directoryservice.rb
         | 
| 419 | 
            +
            - lib/puppet/provider/user/hpux.rb
         | 
| 420 | 
            +
            - lib/puppet/provider/user/ldap.rb
         | 
| 421 | 
            +
            - lib/puppet/provider/user/pw.rb
         | 
| 422 | 
            +
            - lib/puppet/provider/user/user_role_add.rb
         | 
| 423 | 
            +
            - lib/puppet/provider/user/useradd.rb
         | 
| 424 | 
            +
            - lib/puppet/provider/zfs/solaris.rb
         | 
| 425 | 
            +
            - lib/puppet/provider/zone/solaris.rb
         | 
| 426 | 
            +
            - lib/puppet/provider/zpool/solaris.rb
         | 
| 427 | 
            +
            - lib/puppet/provider.rb
         | 
| 428 | 
            +
            - lib/puppet/rails/benchmark.rb
         | 
| 429 | 
            +
            - lib/puppet/rails/database/001_add_created_at_to_all_tables.rb
         | 
| 430 | 
            +
            - lib/puppet/rails/database/002_remove_duplicated_index_on_all_tables.rb
         | 
| 431 | 
            +
            - lib/puppet/rails/database/003_add_environment_to_host.rb
         | 
| 432 | 
            +
            - lib/puppet/rails/database/004_add_inventory_service_tables.rb
         | 
| 433 | 
            +
            - lib/puppet/rails/database/schema.rb
         | 
| 434 | 
            +
            - lib/puppet/rails/fact_name.rb
         | 
| 435 | 
            +
            - lib/puppet/rails/fact_value.rb
         | 
| 436 | 
            +
            - lib/puppet/rails/host.rb
         | 
| 437 | 
            +
            - lib/puppet/rails/inventory_fact.rb
         | 
| 438 | 
            +
            - lib/puppet/rails/inventory_node.rb
         | 
| 439 | 
            +
            - lib/puppet/rails/param_name.rb
         | 
| 440 | 
            +
            - lib/puppet/rails/param_value.rb
         | 
| 441 | 
            +
            - lib/puppet/rails/puppet_tag.rb
         | 
| 442 | 
            +
            - lib/puppet/rails/resource.rb
         | 
| 443 | 
            +
            - lib/puppet/rails/resource_tag.rb
         | 
| 444 | 
            +
            - lib/puppet/rails/source_file.rb
         | 
| 445 | 
            +
            - lib/puppet/rails.rb
         | 
| 446 | 
            +
            - lib/puppet/reference/configuration.rb
         | 
| 447 | 
            +
            - lib/puppet/reference/function.rb
         | 
| 448 | 
            +
            - lib/puppet/reference/indirection.rb
         | 
| 449 | 
            +
            - lib/puppet/reference/metaparameter.rb
         | 
| 450 | 
            +
            - lib/puppet/reference/network.rb
         | 
| 451 | 
            +
            - lib/puppet/reference/providers.rb
         | 
| 452 | 
            +
            - lib/puppet/reference/report.rb
         | 
| 453 | 
            +
            - lib/puppet/reference/type.rb
         | 
| 633 454 | 
             
            - lib/puppet/relationship.rb
         | 
| 455 | 
            +
            - lib/puppet/reports/http.rb
         | 
| 456 | 
            +
            - lib/puppet/reports/log.rb
         | 
| 457 | 
            +
            - lib/puppet/reports/rrdgraph.rb
         | 
| 458 | 
            +
            - lib/puppet/reports/store.rb
         | 
| 459 | 
            +
            - lib/puppet/reports/tagmail.rb
         | 
| 460 | 
            +
            - lib/puppet/reports.rb
         | 
| 461 | 
            +
            - lib/puppet/resource/catalog.rb
         | 
| 462 | 
            +
            - lib/puppet/resource/status.rb
         | 
| 463 | 
            +
            - lib/puppet/resource/type.rb
         | 
| 464 | 
            +
            - lib/puppet/resource/type_collection.rb
         | 
| 465 | 
            +
            - lib/puppet/resource/type_collection_helper.rb
         | 
| 466 | 
            +
            - lib/puppet/resource.rb
         | 
| 467 | 
            +
            - lib/puppet/run.rb
         | 
| 468 | 
            +
            - lib/puppet/simple_graph.rb
         | 
| 469 | 
            +
            - lib/puppet/ssl/base.rb
         | 
| 470 | 
            +
            - lib/puppet/ssl/certificate.rb
         | 
| 471 | 
            +
            - lib/puppet/ssl/certificate_authority/interface.rb
         | 
| 472 | 
            +
            - lib/puppet/ssl/certificate_authority.rb
         | 
| 473 | 
            +
            - lib/puppet/ssl/certificate_factory.rb
         | 
| 474 | 
            +
            - lib/puppet/ssl/certificate_request.rb
         | 
| 475 | 
            +
            - lib/puppet/ssl/certificate_revocation_list.rb
         | 
| 476 | 
            +
            - lib/puppet/ssl/host.rb
         | 
| 477 | 
            +
            - lib/puppet/ssl/inventory.rb
         | 
| 478 | 
            +
            - lib/puppet/ssl/key.rb
         | 
| 634 479 | 
             
            - lib/puppet/ssl.rb
         | 
| 635 | 
            -
            -  | 
| 636 | 
            -
            -  | 
| 637 | 
            -
            -  | 
| 638 | 
            -
            -  | 
| 639 | 
            -
            -  | 
| 640 | 
            -
            -  | 
| 641 | 
            -
            -  | 
| 642 | 
            -
            -  | 
| 643 | 
            -
            -  | 
| 644 | 
            -
            -  | 
| 645 | 
            -
            -  | 
| 646 | 
            -
            -  | 
| 647 | 
            -
            -  | 
| 648 | 
            -
            -  | 
| 649 | 
            -
            -  | 
| 650 | 
            -
            -  | 
| 651 | 
            -
            -  | 
| 652 | 
            -
            -  | 
| 653 | 
            -
            -  | 
| 654 | 
            -
            -  | 
| 655 | 
            -
            -  | 
| 656 | 
            -
            -  | 
| 657 | 
            -
            -  | 
| 658 | 
            -
            -  | 
| 659 | 
            -
            -  | 
| 660 | 
            -
            -  | 
| 661 | 
            -
            -  | 
| 662 | 
            -
            -  | 
| 663 | 
            -
            -  | 
| 664 | 
            -
            -  | 
| 665 | 
            -
            -  | 
| 666 | 
            -
            -  | 
| 667 | 
            -
            -  | 
| 668 | 
            -
            -  | 
| 669 | 
            -
            -  | 
| 670 | 
            -
            -  | 
| 671 | 
            -
            -  | 
| 672 | 
            -
            -  | 
| 673 | 
            -
            -  | 
| 674 | 
            -
            -  | 
| 675 | 
            -
            -  | 
| 676 | 
            -
            -  | 
| 677 | 
            -
            -  | 
| 678 | 
            -
            -  | 
| 679 | 
            -
            -  | 
| 680 | 
            -
            -  | 
| 681 | 
            -
            -  | 
| 682 | 
            -
            -  | 
| 683 | 
            -
            -  | 
| 684 | 
            -
            -  | 
| 685 | 
            -
            -  | 
| 686 | 
            -
            -  | 
| 687 | 
            -
            -  | 
| 688 | 
            -
            -  | 
| 689 | 
            -
            -  | 
| 690 | 
            -
            -  | 
| 691 | 
            -
            -  | 
| 692 | 
            -
            -  | 
| 693 | 
            -
            -  | 
| 694 | 
            -
            -  | 
| 695 | 
            -
            -  | 
| 696 | 
            -
            -  | 
| 697 | 
            -
            -  | 
| 698 | 
            -
            -  | 
| 699 | 
            -
            -  | 
| 700 | 
            -
            -  | 
| 701 | 
            -
            -  | 
| 702 | 
            -
            -  | 
| 703 | 
            -
            -  | 
| 704 | 
            -
            -  | 
| 705 | 
            -
            -  | 
| 706 | 
            -
            -  | 
| 707 | 
            -
            -  | 
| 708 | 
            -
            -  | 
| 709 | 
            -
            -  | 
| 710 | 
            -
            -  | 
| 711 | 
            -
            -  | 
| 712 | 
            -
            -  | 
| 713 | 
            -
            -  | 
| 714 | 
            -
            -  | 
| 715 | 
            -
            -  | 
| 716 | 
            -
            -  | 
| 717 | 
            -
            -  | 
| 718 | 
            -
            -  | 
| 719 | 
            -
            -  | 
| 720 | 
            -
            -  | 
| 721 | 
            -
            -  | 
| 722 | 
            -
            -  | 
| 723 | 
            -
            -  | 
| 724 | 
            -
            -  | 
| 725 | 
            -
            -  | 
| 726 | 
            -
            -  | 
| 727 | 
            -
            -  | 
| 728 | 
            -
            -  | 
| 729 | 
            -
            -  | 
| 730 | 
            -
            -  | 
| 731 | 
            -
            -  | 
| 732 | 
            -
            -  | 
| 733 | 
            -
            -  | 
| 734 | 
            -
            -  | 
| 735 | 
            -
            -  | 
| 736 | 
            -
            -  | 
| 737 | 
            -
            -  | 
| 738 | 
            -
            -  | 
| 739 | 
            -
            -  | 
| 740 | 
            -
            -  | 
| 741 | 
            -
            -  | 
| 742 | 
            -
            -  | 
| 743 | 
            -
            -  | 
| 744 | 
            -
            -  | 
| 745 | 
            -
            -  | 
| 746 | 
            -
            -  | 
| 747 | 
            -
            -  | 
| 480 | 
            +
            - lib/puppet/sslcertificates/ca.rb
         | 
| 481 | 
            +
            - lib/puppet/sslcertificates/certificate.rb
         | 
| 482 | 
            +
            - lib/puppet/sslcertificates/inventory.rb
         | 
| 483 | 
            +
            - lib/puppet/sslcertificates/monkey_patch.rb
         | 
| 484 | 
            +
            - lib/puppet/sslcertificates/support.rb
         | 
| 485 | 
            +
            - lib/puppet/sslcertificates.rb
         | 
| 486 | 
            +
            - lib/puppet/status.rb
         | 
| 487 | 
            +
            - lib/puppet/transaction/event.rb
         | 
| 488 | 
            +
            - lib/puppet/transaction/event_manager.rb
         | 
| 489 | 
            +
            - lib/puppet/transaction/report.rb
         | 
| 490 | 
            +
            - lib/puppet/transaction/resource_harness.rb
         | 
| 491 | 
            +
            - lib/puppet/transaction.rb
         | 
| 492 | 
            +
            - lib/puppet/transportable.rb
         | 
| 493 | 
            +
            - lib/puppet/type/augeas.rb
         | 
| 494 | 
            +
            - lib/puppet/type/component.rb
         | 
| 495 | 
            +
            - lib/puppet/type/computer.rb
         | 
| 496 | 
            +
            - lib/puppet/type/cron.rb
         | 
| 497 | 
            +
            - lib/puppet/type/exec.rb
         | 
| 498 | 
            +
            - lib/puppet/type/file/checksum.rb
         | 
| 499 | 
            +
            - lib/puppet/type/file/content.rb
         | 
| 500 | 
            +
            - lib/puppet/type/file/ctime.rb
         | 
| 501 | 
            +
            - lib/puppet/type/file/ensure.rb
         | 
| 502 | 
            +
            - lib/puppet/type/file/group.rb
         | 
| 503 | 
            +
            - lib/puppet/type/file/mode.rb
         | 
| 504 | 
            +
            - lib/puppet/type/file/mtime.rb
         | 
| 505 | 
            +
            - lib/puppet/type/file/owner.rb
         | 
| 506 | 
            +
            - lib/puppet/type/file/selcontext.rb
         | 
| 507 | 
            +
            - lib/puppet/type/file/source.rb
         | 
| 508 | 
            +
            - lib/puppet/type/file/target.rb
         | 
| 509 | 
            +
            - lib/puppet/type/file/type.rb
         | 
| 510 | 
            +
            - lib/puppet/type/file.rb
         | 
| 511 | 
            +
            - lib/puppet/type/filebucket.rb
         | 
| 512 | 
            +
            - lib/puppet/type/group.rb
         | 
| 513 | 
            +
            - lib/puppet/type/host.rb
         | 
| 514 | 
            +
            - lib/puppet/type/k5login.rb
         | 
| 515 | 
            +
            - lib/puppet/type/macauthorization.rb
         | 
| 516 | 
            +
            - lib/puppet/type/mailalias.rb
         | 
| 517 | 
            +
            - lib/puppet/type/maillist.rb
         | 
| 518 | 
            +
            - lib/puppet/type/mcx.rb
         | 
| 519 | 
            +
            - lib/puppet/type/mount.rb
         | 
| 520 | 
            +
            - lib/puppet/type/nagios_command.rb
         | 
| 521 | 
            +
            - lib/puppet/type/nagios_contact.rb
         | 
| 522 | 
            +
            - lib/puppet/type/nagios_contactgroup.rb
         | 
| 523 | 
            +
            - lib/puppet/type/nagios_host.rb
         | 
| 524 | 
            +
            - lib/puppet/type/nagios_hostdependency.rb
         | 
| 525 | 
            +
            - lib/puppet/type/nagios_hostescalation.rb
         | 
| 526 | 
            +
            - lib/puppet/type/nagios_hostextinfo.rb
         | 
| 527 | 
            +
            - lib/puppet/type/nagios_hostgroup.rb
         | 
| 528 | 
            +
            - lib/puppet/type/nagios_service.rb
         | 
| 529 | 
            +
            - lib/puppet/type/nagios_servicedependency.rb
         | 
| 530 | 
            +
            - lib/puppet/type/nagios_serviceescalation.rb
         | 
| 531 | 
            +
            - lib/puppet/type/nagios_serviceextinfo.rb
         | 
| 532 | 
            +
            - lib/puppet/type/nagios_servicegroup.rb
         | 
| 533 | 
            +
            - lib/puppet/type/nagios_timeperiod.rb
         | 
| 534 | 
            +
            - lib/puppet/type/notify.rb
         | 
| 535 | 
            +
            - lib/puppet/type/package.rb
         | 
| 536 | 
            +
            - lib/puppet/type/port.rb
         | 
| 537 | 
            +
            - lib/puppet/type/resources.rb
         | 
| 538 | 
            +
            - lib/puppet/type/schedule.rb
         | 
| 539 | 
            +
            - lib/puppet/type/selboolean.rb
         | 
| 540 | 
            +
            - lib/puppet/type/selmodule.rb
         | 
| 541 | 
            +
            - lib/puppet/type/service.rb
         | 
| 542 | 
            +
            - lib/puppet/type/ssh_authorized_key.rb
         | 
| 543 | 
            +
            - lib/puppet/type/sshkey.rb
         | 
| 544 | 
            +
            - lib/puppet/type/stage.rb
         | 
| 545 | 
            +
            - lib/puppet/type/tidy.rb
         | 
| 546 | 
            +
            - lib/puppet/type/user.rb
         | 
| 547 | 
            +
            - lib/puppet/type/whit.rb
         | 
| 548 | 
            +
            - lib/puppet/type/yumrepo.rb
         | 
| 549 | 
            +
            - lib/puppet/type/zfs.rb
         | 
| 550 | 
            +
            - lib/puppet/type/zone.rb
         | 
| 551 | 
            +
            - lib/puppet/type/zpool.rb
         | 
| 552 | 
            +
            - lib/puppet/type.rb
         | 
| 553 | 
            +
            - lib/puppet/util/autoload/file_cache.rb
         | 
| 554 | 
            +
            - lib/puppet/util/autoload.rb
         | 
| 555 | 
            +
            - lib/puppet/util/backups.rb
         | 
| 556 | 
            +
            - lib/puppet/util/cacher.rb
         | 
| 557 | 
            +
            - lib/puppet/util/checksums.rb
         | 
| 558 | 
            +
            - lib/puppet/util/classgen.rb
         | 
| 559 | 
            +
            - lib/puppet/util/command_line/filebucket
         | 
| 560 | 
            +
            - lib/puppet/util/command_line/pi
         | 
| 561 | 
            +
            - lib/puppet/util/command_line/puppet
         | 
| 562 | 
            +
            - lib/puppet/util/command_line/puppetca
         | 
| 563 | 
            +
            - lib/puppet/util/command_line/puppetd
         | 
| 564 | 
            +
            - lib/puppet/util/command_line/puppetdoc
         | 
| 565 | 
            +
            - lib/puppet/util/command_line/puppetmasterd
         | 
| 566 | 
            +
            - lib/puppet/util/command_line/puppetqd
         | 
| 567 | 
            +
            - lib/puppet/util/command_line/puppetrun
         | 
| 568 | 
            +
            - lib/puppet/util/command_line/ralsh
         | 
| 569 | 
            +
            - lib/puppet/util/command_line.rb
         | 
| 570 | 
            +
            - lib/puppet/util/constant_inflector.rb
         | 
| 571 | 
            +
            - lib/puppet/util/diff.rb
         | 
| 572 | 
            +
            - lib/puppet/util/docs.rb
         | 
| 573 | 
            +
            - lib/puppet/util/errors.rb
         | 
| 574 | 
            +
            - lib/puppet/util/execution.rb
         | 
| 575 | 
            +
            - lib/puppet/util/execution_stub.rb
         | 
| 576 | 
            +
            - lib/puppet/util/feature.rb
         | 
| 577 | 
            +
            - lib/puppet/util/file_locking.rb
         | 
| 578 | 
            +
            - lib/puppet/util/fileparsing.rb
         | 
| 579 | 
            +
            - lib/puppet/util/filetype.rb
         | 
| 580 | 
            +
            - lib/puppet/util/graph.rb
         | 
| 581 | 
            +
            - lib/puppet/util/inifile.rb
         | 
| 582 | 
            +
            - lib/puppet/util/inline_docs.rb
         | 
| 583 | 
            +
            - lib/puppet/util/instance_loader.rb
         | 
| 584 | 
            +
            - lib/puppet/util/ldap/connection.rb
         | 
| 585 | 
            +
            - lib/puppet/util/ldap/generator.rb
         | 
| 586 | 
            +
            - lib/puppet/util/ldap/manager.rb
         | 
| 587 | 
            +
            - lib/puppet/util/ldap.rb
         | 
| 588 | 
            +
            - lib/puppet/util/loadedfile.rb
         | 
| 589 | 
            +
            - lib/puppet/util/log/destination.rb
         | 
| 590 | 
            +
            - lib/puppet/util/log/destinations.rb
         | 
| 591 | 
            +
            - lib/puppet/util/log.rb
         | 
| 592 | 
            +
            - lib/puppet/util/log_paths.rb
         | 
| 593 | 
            +
            - lib/puppet/util/logging.rb
         | 
| 594 | 
            +
            - lib/puppet/util/metaid.rb
         | 
| 595 | 
            +
            - lib/puppet/util/methodhelper.rb
         | 
| 596 | 
            +
            - lib/puppet/util/metric.rb
         | 
| 597 | 
            +
            - lib/puppet/util/monkey_patches.rb
         | 
| 598 | 
            +
            - lib/puppet/util/nagios_maker.rb
         | 
| 599 | 
            +
            - lib/puppet/util/package.rb
         | 
| 600 | 
            +
            - lib/puppet/util/pidlock.rb
         | 
| 601 | 
            +
            - lib/puppet/util/plugins.rb
         | 
| 602 | 
            +
            - lib/puppet/util/posix.rb
         | 
| 603 | 
            +
            - lib/puppet/util/provider_features.rb
         | 
| 604 | 
            +
            - lib/puppet/util/pson.rb
         | 
| 605 | 
            +
            - lib/puppet/util/queue/stomp.rb
         | 
| 606 | 
            +
            - lib/puppet/util/queue.rb
         | 
| 607 | 
            +
            - lib/puppet/util/rails/cache_accumulator.rb
         | 
| 608 | 
            +
            - lib/puppet/util/rails/collection_merger.rb
         | 
| 609 | 
            +
            - lib/puppet/util/rails/reference_serializer.rb
         | 
| 610 | 
            +
            - lib/puppet/util/rdoc/code_objects.rb
         | 
| 611 | 
            +
            - lib/puppet/util/rdoc/generators/puppet_generator.rb
         | 
| 612 | 
            +
            - lib/puppet/util/rdoc/generators/template/puppet/puppet.rb
         | 
| 613 | 
            +
            - lib/puppet/util/rdoc/parser.rb
         | 
| 614 | 
            +
            - lib/puppet/util/rdoc.rb
         | 
| 615 | 
            +
            - lib/puppet/util/reference.rb
         | 
| 616 | 
            +
            - lib/puppet/util/resource_template.rb
         | 
| 617 | 
            +
            - lib/puppet/util/run_mode.rb
         | 
| 618 | 
            +
            - lib/puppet/util/selinux.rb
         | 
| 619 | 
            +
            - lib/puppet/util/settings/boolean_setting.rb
         | 
| 620 | 
            +
            - lib/puppet/util/settings/file_setting.rb
         | 
| 621 | 
            +
            - lib/puppet/util/settings/setting.rb
         | 
| 622 | 
            +
            - lib/puppet/util/settings.rb
         | 
| 623 | 
            +
            - lib/puppet/util/storage.rb
         | 
| 624 | 
            +
            - lib/puppet/util/subclass_loader.rb
         | 
| 625 | 
            +
            - lib/puppet/util/suidmanager.rb
         | 
| 626 | 
            +
            - lib/puppet/util/tagging.rb
         | 
| 627 | 
            +
            - lib/puppet/util/user_attr.rb
         | 
| 628 | 
            +
            - lib/puppet/util/warnings.rb
         | 
| 629 | 
            +
            - lib/puppet/util/zaml.rb
         | 
| 630 | 
            +
            - lib/puppet/util.rb
         | 
| 631 | 
            +
            - lib/puppet.rb
         | 
| 632 | 
            +
            - conf/auth.conf
         | 
| 633 | 
            +
            - conf/epm.list
         | 
| 634 | 
            +
            - conf/freebsd/puppetd
         | 
| 635 | 
            +
            - conf/freebsd/puppetmasterd
         | 
| 636 | 
            +
            - conf/gentoo/conf.d/puppet
         | 
| 637 | 
            +
            - conf/gentoo/conf.d/puppetmaster
         | 
| 638 | 
            +
            - conf/gentoo/init.d/puppet
         | 
| 639 | 
            +
            - conf/gentoo/init.d/puppetmaster
         | 
| 640 | 
            +
            - conf/gentoo/puppet/fileserver.conf
         | 
| 641 | 
            +
            - conf/gentoo/puppet/puppet.conf
         | 
| 642 | 
            +
            - conf/namespaceauth.conf
         | 
| 643 | 
            +
            - conf/osx/createpackage.sh
         | 
| 644 | 
            +
            - conf/osx/PackageInfo.plist
         | 
| 645 | 
            +
            - conf/osx/preflight
         | 
| 646 | 
            +
            - conf/puppet-queue.conf
         | 
| 647 | 
            +
            - conf/redhat/client.init
         | 
| 648 | 
            +
            - conf/redhat/client.sysconfig
         | 
| 649 | 
            +
            - conf/redhat/fileserver.conf
         | 
| 650 | 
            +
            - conf/redhat/logrotate
         | 
| 651 | 
            +
            - conf/redhat/puppet.conf
         | 
| 652 | 
            +
            - conf/redhat/puppet.spec
         | 
| 653 | 
            +
            - conf/redhat/rundir-perms.patch
         | 
| 654 | 
            +
            - conf/redhat/server.init
         | 
| 655 | 
            +
            - conf/redhat/server.sysconfig
         | 
| 656 | 
            +
            - conf/solaris/pkginfo
         | 
| 657 | 
            +
            - conf/solaris/smf/puppetd.xml
         | 
| 658 | 
            +
            - conf/solaris/smf/puppetmasterd.xml
         | 
| 659 | 
            +
            - conf/solaris/smf/svc-puppetd
         | 
| 660 | 
            +
            - conf/solaris/smf/svc-puppetmasterd
         | 
| 661 | 
            +
            - conf/suse/client.init
         | 
| 662 | 
            +
            - conf/suse/fileserver.conf
         | 
| 663 | 
            +
            - conf/suse/logrotate
         | 
| 664 | 
            +
            - conf/suse/puppet.conf
         | 
| 665 | 
            +
            - conf/suse/puppet.spec
         | 
| 666 | 
            +
            - conf/suse/server.init
         | 
| 667 | 
            +
            - man/man5/puppet.conf.5
         | 
| 668 | 
            +
            - man/man8/filebucket.8
         | 
| 669 | 
            +
            - man/man8/pi.8
         | 
| 670 | 
            +
            - man/man8/puppet.8
         | 
| 671 | 
            +
            - man/man8/puppetca.8
         | 
| 672 | 
            +
            - man/man8/puppetd.8
         | 
| 673 | 
            +
            - man/man8/puppetdoc.8
         | 
| 674 | 
            +
            - man/man8/puppetmasterd.8
         | 
| 675 | 
            +
            - man/man8/puppetqd.8
         | 
| 676 | 
            +
            - man/man8/puppetrun.8
         | 
| 677 | 
            +
            - man/man8/ralsh.8
         | 
| 678 | 
            +
            - examples/allatonce
         | 
| 679 | 
            +
            - examples/assignments
         | 
| 680 | 
            +
            - examples/components
         | 
| 681 | 
            +
            - examples/etc/init.d/sleeper
         | 
| 682 | 
            +
            - examples/etc/otherfile
         | 
| 683 | 
            +
            - examples/etc/puppet/fileserver.conf
         | 
| 684 | 
            +
            - examples/etc/puppet/namespaceauth.conf
         | 
| 685 | 
            +
            - examples/etc/puppet/puppet.conf
         | 
| 686 | 
            +
            - examples/etc/puppet/tagmail.conf
         | 
| 687 | 
            +
            - examples/execs
         | 
| 688 | 
            +
            - examples/file.bl
         | 
| 689 | 
            +
            - examples/filedefaults
         | 
| 690 | 
            +
            - examples/fileparsing
         | 
| 691 | 
            +
            - examples/filerecursion
         | 
| 692 | 
            +
            - examples/functions
         | 
| 693 | 
            +
            - examples/groups
         | 
| 694 | 
            +
            - examples/head
         | 
| 695 | 
            +
            - examples/importing
         | 
| 696 | 
            +
            - examples/mac_automount.pp
         | 
| 697 | 
            +
            - examples/mac_dscl.pp
         | 
| 698 | 
            +
            - examples/mac_dscl_revert.pp
         | 
| 699 | 
            +
            - examples/mac_pkgdmg.pp
         | 
| 700 | 
            +
            - examples/mcx_dock_absent.pp
         | 
| 701 | 
            +
            - examples/mcx_dock_default.pp
         | 
| 702 | 
            +
            - examples/mcx_dock_full.pp
         | 
| 703 | 
            +
            - examples/mcx_dock_invalid.pp
         | 
| 704 | 
            +
            - examples/mcx_nogroup.pp
         | 
| 705 | 
            +
            - examples/mcx_notexists_absent.pp
         | 
| 706 | 
            +
            - examples/modules/sample-module/lib/puppet/parser/functions/hostname_to_dn.rb
         | 
| 707 | 
            +
            - examples/modules/sample-module/manifests/init.pp
         | 
| 708 | 
            +
            - examples/modules/sample-module/README.txt
         | 
| 709 | 
            +
            - examples/modules/sample-module/templates/sample.erb
         | 
| 710 | 
            +
            - examples/modules/sample-module.pp
         | 
| 711 | 
            +
            - examples/nodes
         | 
| 712 | 
            +
            - examples/one
         | 
| 713 | 
            +
            - examples/relationships
         | 
| 714 | 
            +
            - examples/selectors
         | 
| 715 | 
            +
            - examples/simpletests
         | 
| 716 | 
            +
            - examples/svncommit
         | 
| 717 | 
            +
            - ext/autotest/config
         | 
| 718 | 
            +
            - ext/autotest/Rakefile
         | 
| 719 | 
            +
            - ext/autotest/readme.rst
         | 
| 720 | 
            +
            - ext/dbfix.sql
         | 
| 721 | 
            +
            - ext/emacs/puppet-mode-init.el
         | 
| 722 | 
            +
            - ext/emacs/puppet-mode.el
         | 
| 723 | 
            +
            - ext/envpuppet
         | 
| 724 | 
            +
            - ext/ldap/puppet.schema
         | 
| 725 | 
            +
            - ext/logcheck/puppet
         | 
| 748 726 | 
             
            - ext/nagios/check_puppet.rb
         | 
| 749 727 | 
             
            - ext/nagios/naggen
         | 
| 750 | 
            -
            -  | 
| 751 | 
            -
            -  | 
| 752 | 
            -
            -  | 
| 753 | 
            -
            -  | 
| 754 | 
            -
            -  | 
| 755 | 
            -
            -  | 
| 756 | 
            -
            -  | 
| 757 | 
            -
            -  | 
| 728 | 
            +
            - ext/puppet-load.rb
         | 
| 729 | 
            +
            - ext/puppet-test
         | 
| 730 | 
            +
            - ext/puppetlisten/puppetlisten.rb
         | 
| 731 | 
            +
            - ext/puppetlisten/puppetrun.rb
         | 
| 732 | 
            +
            - ext/puppetstoredconfigclean.rb
         | 
| 733 | 
            +
            - ext/pure_ruby_dsl/dsl_test.rb
         | 
| 734 | 
            +
            - ext/rack/files/apache2.conf
         | 
| 735 | 
            +
            - ext/rack/files/config.ru
         | 
| 736 | 
            +
            - ext/rack/manifest.pp
         | 
| 737 | 
            +
            - ext/rack/README
         | 
| 738 | 
            +
            - ext/regexp_nodes/classes/databases
         | 
| 739 | 
            +
            - ext/regexp_nodes/classes/webservers
         | 
| 740 | 
            +
            - ext/regexp_nodes/parameters/environment/prod
         | 
| 741 | 
            +
            - ext/regexp_nodes/parameters/environment/qa
         | 
| 742 | 
            +
            - ext/regexp_nodes/regexp_nodes.rb
         | 
| 743 | 
            +
            - ext/vim/ftdetect/puppet.vim
         | 
| 744 | 
            +
            - ext/vim/ftplugin/puppet.vim
         | 
| 745 | 
            +
            - ext/vim/indent/puppet.vim
         | 
| 746 | 
            +
            - ext/vim/README
         | 
| 747 | 
            +
            - ext/vim/syntax/puppet.vim
         | 
| 748 | 
            +
            - ext/yaml_nodes.rb
         | 
| 749 | 
            +
            - tasks/rake/changelog.rake
         | 
| 750 | 
            +
            - tasks/rake/ci.rake
         | 
| 751 | 
            +
            - tasks/rake/dailybuild.rake
         | 
| 758 752 | 
             
            - tasks/rake/gem.rake
         | 
| 759 | 
            -
            -  | 
| 760 | 
            -
            -  | 
| 761 | 
            -
            -  | 
| 762 | 
            -
            -  | 
| 763 | 
            -
            -  | 
| 764 | 
            -
            - test/ | 
| 765 | 
            -
            - test/ | 
| 766 | 
            -
            - test/ | 
| 767 | 
            -
            - test/data/ | 
| 768 | 
            -
            - test/data/ | 
| 769 | 
            -
            - test/data/ | 
| 770 | 
            -
            - test/data/ | 
| 771 | 
            -
            - test/data/ | 
| 772 | 
            -
            - test/data/ | 
| 773 | 
            -
            - test/data/providers/mount/parsed/hpux.mount
         | 
| 774 | 
            -
            - test/data/providers/mount/parsed/aix.mount
         | 
| 775 | 
            -
            - test/data/providers/mount/parsed/darwin.mount
         | 
| 776 | 
            -
            - test/data/providers/mount/parsed/linux.mount
         | 
| 777 | 
            -
            - test/data/providers/cron/crontab.envNname
         | 
| 778 | 
            -
            - test/data/providers/cron/crontab_sample_records.yaml
         | 
| 779 | 
            -
            - test/data/providers/cron/crontab_multiple_with_env.yaml
         | 
| 780 | 
            -
            - test/data/providers/cron/crontab_collections.yaml
         | 
| 781 | 
            -
            - test/data/providers/cron/crontab.multirecords
         | 
| 753 | 
            +
            - tasks/rake/git_workflow.rake
         | 
| 754 | 
            +
            - tasks/rake/metrics.rake
         | 
| 755 | 
            +
            - tasks/rake/sign.rake
         | 
| 756 | 
            +
            - tasks/rake/testbranch.rake
         | 
| 757 | 
            +
            - tasks/rake/yard.rake
         | 
| 758 | 
            +
            - test/certmgr/certmgr.rb
         | 
| 759 | 
            +
            - test/certmgr/inventory.rb
         | 
| 760 | 
            +
            - test/certmgr/support.rb
         | 
| 761 | 
            +
            - test/data/failers/badclassnoparam
         | 
| 762 | 
            +
            - test/data/failers/badclassparam
         | 
| 763 | 
            +
            - test/data/failers/badcompnoparam
         | 
| 764 | 
            +
            - test/data/failers/badcompparam
         | 
| 765 | 
            +
            - test/data/failers/badtypeparam
         | 
| 766 | 
            +
            - test/data/failers/noobjectrvalue
         | 
| 782 767 | 
             
            - test/data/providers/cron/crontab.allthree
         | 
| 783 768 | 
             
            - test/data/providers/cron/crontab.envNcomment
         | 
| 769 | 
            +
            - test/data/providers/cron/crontab.envNname
         | 
| 770 | 
            +
            - test/data/providers/cron/crontab.multirecords
         | 
| 771 | 
            +
            - test/data/providers/cron/crontab_collections.yaml
         | 
| 772 | 
            +
            - test/data/providers/cron/crontab_multiple_with_env.yaml
         | 
| 773 | 
            +
            - test/data/providers/cron/crontab_sample_records.yaml
         | 
| 784 774 | 
             
            - test/data/providers/cron/examples/freebsd
         | 
| 785 | 
            -
            - test/data/providers/cron/examples/openbsd
         | 
| 786 775 | 
             
            - test/data/providers/cron/examples/one
         | 
| 776 | 
            +
            - test/data/providers/cron/examples/openbsd
         | 
| 777 | 
            +
            - test/data/providers/mailalias/aliases/test1
         | 
| 778 | 
            +
            - test/data/providers/mount/parsed/aix.mount
         | 
| 779 | 
            +
            - test/data/providers/mount/parsed/darwin.mount
         | 
| 780 | 
            +
            - test/data/providers/mount/parsed/hpux.mount
         | 
| 781 | 
            +
            - test/data/providers/mount/parsed/linux.mount
         | 
| 782 | 
            +
            - test/data/providers/mount/parsed/solaris.mount
         | 
| 787 783 | 
             
            - test/data/providers/package/testpackages.yaml
         | 
| 788 | 
            -
            - test/data/providers/ssh_authorized_key/parsed/authorized_keys2
         | 
| 789 | 
            -
            - test/data/providers/ssh_authorized_key/parsed/authorized_keys1
         | 
| 790 784 | 
             
            - test/data/providers/ssh_authorized_key/parsed/authorized_keys
         | 
| 791 | 
            -
            - test/data/providers/ | 
| 792 | 
            -
            - test/data/ | 
| 793 | 
            -
            - test/data/reports/tagmail_failers.conf
         | 
| 785 | 
            +
            - test/data/providers/ssh_authorized_key/parsed/authorized_keys1
         | 
| 786 | 
            +
            - test/data/providers/ssh_authorized_key/parsed/authorized_keys2
         | 
| 794 787 | 
             
            - test/data/reports/1.yaml
         | 
| 795 788 | 
             
            - test/data/reports/2.yaml
         | 
| 796 | 
            -
            - test/data/ | 
| 797 | 
            -
            - test/data/ | 
| 798 | 
            -
            - test/data/ | 
| 799 | 
            -
            - test/data/failers/badtypeparam
         | 
| 800 | 
            -
            - test/data/failers/noobjectrvalue
         | 
| 801 | 
            -
            - test/data/failers/badcompnoparam
         | 
| 802 | 
            -
            - test/data/snippets/implicititeration
         | 
| 803 | 
            -
            - test/data/snippets/arraytrailingcomma.pp
         | 
| 804 | 
            -
            - test/data/snippets/tagged.pp
         | 
| 805 | 
            -
            - test/data/snippets/casestatement.pp
         | 
| 806 | 
            -
            - test/data/snippets/singlequote.pp
         | 
| 807 | 
            -
            - test/data/snippets/fqparents.pp
         | 
| 808 | 
            -
            - test/data/snippets/multipleinstances
         | 
| 809 | 
            -
            - test/data/snippets/ifexpression.pp
         | 
| 810 | 
            -
            - test/data/snippets/tag.pp
         | 
| 789 | 
            +
            - test/data/reports/tagmail_failers.conf
         | 
| 790 | 
            +
            - test/data/reports/tagmail_passers.conf
         | 
| 791 | 
            +
            - test/data/snippets/aliastest.pp
         | 
| 811 792 | 
             
            - test/data/snippets/append.pp
         | 
| 812 | 
            -
            - test/data/snippets/selectorvalues.pp
         | 
| 813 | 
            -
            - test/data/snippets/subclass_name_duplication.pp
         | 
| 814 | 
            -
            - test/data/snippets/funccomma.pp
         | 
| 815 793 | 
             
            - test/data/snippets/argumentdefaults
         | 
| 816 | 
            -
            - test/data/snippets/ | 
| 817 | 
            -
            - test/data/snippets/ | 
| 818 | 
            -
            - test/data/snippets/ | 
| 819 | 
            -
            - test/data/snippets/ | 
| 820 | 
            -
            - test/data/snippets/singleary.pp
         | 
| 821 | 
            -
            - test/data/snippets/emptyexec.pp
         | 
| 822 | 
            -
            - test/data/snippets/emptyifelse.pp
         | 
| 823 | 
            -
            - test/data/snippets/classpathtest
         | 
| 824 | 
            -
            - test/data/snippets/scopetest
         | 
| 794 | 
            +
            - test/data/snippets/arithmetic_expression.pp
         | 
| 795 | 
            +
            - test/data/snippets/arraytrailingcomma.pp
         | 
| 796 | 
            +
            - test/data/snippets/casestatement.pp
         | 
| 797 | 
            +
            - test/data/snippets/classheirarchy.pp
         | 
| 825 798 | 
             
            - test/data/snippets/classincludes.pp
         | 
| 826 | 
            -
            - test/data/snippets/ | 
| 827 | 
            -
            - test/data/snippets/falsevalues.pp
         | 
| 799 | 
            +
            - test/data/snippets/classpathtest
         | 
| 828 800 | 
             
            - test/data/snippets/collection.pp
         | 
| 829 | 
            -
            - test/data/snippets/ | 
| 830 | 
            -
            - test/data/snippets/classheirarchy.pp
         | 
| 831 | 
            -
            - test/data/snippets/hash.pp
         | 
| 801 | 
            +
            - test/data/snippets/collection_override.pp
         | 
| 832 802 | 
             
            - test/data/snippets/collection_within_virtual_definitions.pp
         | 
| 833 | 
            -
            - test/data/snippets/ | 
| 834 | 
            -
            - test/data/snippets/ | 
| 835 | 
            -
            - test/data/snippets/ | 
| 836 | 
            -
            - test/data/snippets/virtualresources.pp
         | 
| 803 | 
            +
            - test/data/snippets/componentmetaparams.pp
         | 
| 804 | 
            +
            - test/data/snippets/componentrequire.pp
         | 
| 805 | 
            +
            - test/data/snippets/deepclassheirarchy.pp
         | 
| 837 806 | 
             
            - test/data/snippets/defineoverrides.pp
         | 
| 838 807 | 
             
            - test/data/snippets/emptyclass.pp
         | 
| 808 | 
            +
            - test/data/snippets/emptyexec.pp
         | 
| 809 | 
            +
            - test/data/snippets/emptyifelse.pp
         | 
| 810 | 
            +
            - test/data/snippets/falsevalues.pp
         | 
| 811 | 
            +
            - test/data/snippets/filecreate
         | 
| 812 | 
            +
            - test/data/snippets/fqdefinition.pp
         | 
| 813 | 
            +
            - test/data/snippets/fqparents.pp
         | 
| 814 | 
            +
            - test/data/snippets/funccomma.pp
         | 
| 815 | 
            +
            - test/data/snippets/hash.pp
         | 
| 816 | 
            +
            - test/data/snippets/ifexpression.pp
         | 
| 817 | 
            +
            - test/data/snippets/implicititeration
         | 
| 839 818 | 
             
            - test/data/snippets/multilinecomments.pp
         | 
| 819 | 
            +
            - test/data/snippets/multipleclass.pp
         | 
| 820 | 
            +
            - test/data/snippets/multipleinstances
         | 
| 821 | 
            +
            - test/data/snippets/multisubs.pp
         | 
| 822 | 
            +
            - test/data/snippets/namevartest
         | 
| 823 | 
            +
            - test/data/snippets/scopetest
         | 
| 824 | 
            +
            - test/data/snippets/selectorvalues.pp
         | 
| 840 825 | 
             
            - test/data/snippets/simpledefaults
         | 
| 841 826 | 
             
            - test/data/snippets/simpleselector
         | 
| 842 | 
            -
            - test/data/snippets/ | 
| 843 | 
            -
            - test/data/snippets/ | 
| 844 | 
            -
            - test/data/snippets/ | 
| 845 | 
            -
            - test/ | 
| 846 | 
            -
            - test/ | 
| 847 | 
            -
            - test/ | 
| 848 | 
            -
            - test/ | 
| 849 | 
            -
            - test/ | 
| 850 | 
            -
            - test/ | 
| 851 | 
            -
            - test/ | 
| 852 | 
            -
            - test/ | 
| 853 | 
            -
            - test/ | 
| 854 | 
            -
            - test/ | 
| 855 | 
            -
            - test/ | 
| 856 | 
            -
            - test/ | 
| 857 | 
            -
            - test/ | 
| 858 | 
            -
            - test/ | 
| 859 | 
            -
            - test/ | 
| 860 | 
            -
            - test/ | 
| 861 | 
            -
            - test/ | 
| 862 | 
            -
            - test/ | 
| 863 | 
            -
            - test/ral/providers/cron/crontab.rb
         | 
| 864 | 
            -
            - test/ral/providers/package/aptrpm.rb
         | 
| 865 | 
            -
            - test/ral/providers/package/aptitude.rb
         | 
| 866 | 
            -
            - test/ral/providers/package.rb
         | 
| 867 | 
            -
            - test/ral/providers/user.rb
         | 
| 868 | 
            -
            - test/ral/providers/port/parsed.rb
         | 
| 869 | 
            -
            - test/ral/providers/user/useradd.rb
         | 
| 870 | 
            -
            - test/ral/providers/group.rb
         | 
| 871 | 
            -
            - test/ral/providers/nameservice.rb
         | 
| 872 | 
            -
            - test/ral/providers/parsedfile.rb
         | 
| 873 | 
            -
            - test/ral/providers/host/parsed.rb
         | 
| 874 | 
            -
            - test/ral/providers/service/base.rb
         | 
| 875 | 
            -
            - test/ral/providers/sshkey/parsed.rb
         | 
| 876 | 
            -
            - test/ral/providers/provider.rb
         | 
| 877 | 
            -
            - test/ral/providers/mailalias/aliases.rb
         | 
| 878 | 
            -
            - test/ral/manager/type.rb
         | 
| 879 | 
            -
            - test/ral/manager/manager.rb
         | 
| 880 | 
            -
            - test/ral/manager/instances.rb
         | 
| 881 | 
            -
            - test/ral/manager/attributes.rb
         | 
| 882 | 
            -
            - test/ral/manager/provider.rb
         | 
| 883 | 
            -
            - test/language/functions.rb
         | 
| 884 | 
            -
            - test/language/scope.rb
         | 
| 827 | 
            +
            - test/data/snippets/singleary.pp
         | 
| 828 | 
            +
            - test/data/snippets/singlequote.pp
         | 
| 829 | 
            +
            - test/data/snippets/singleselector.pp
         | 
| 830 | 
            +
            - test/data/snippets/subclass_name_duplication.pp
         | 
| 831 | 
            +
            - test/data/snippets/tag.pp
         | 
| 832 | 
            +
            - test/data/snippets/tagged.pp
         | 
| 833 | 
            +
            - test/data/snippets/virtualresources.pp
         | 
| 834 | 
            +
            - test/data/types/hosts/1
         | 
| 835 | 
            +
            - test/data/types/hosts/2
         | 
| 836 | 
            +
            - test/data/types/hosts/solaris
         | 
| 837 | 
            +
            - test/data/types/mailalias/file1
         | 
| 838 | 
            +
            - test/data/types/mount/freebsd.fstab
         | 
| 839 | 
            +
            - test/data/types/mount/linux.fstab
         | 
| 840 | 
            +
            - test/data/types/mount/solaris.fstab
         | 
| 841 | 
            +
            - test/data/types/port/1
         | 
| 842 | 
            +
            - test/data/types/port/darwin
         | 
| 843 | 
            +
            - test/data/types/ssh_authorized_key/1
         | 
| 844 | 
            +
            - test/data/types/sshkey/1
         | 
| 845 | 
            +
            - test/data/types/yumrepos/fedora-devel.repo
         | 
| 846 | 
            +
            - test/data/types/yumrepos/fedora.repo
         | 
| 847 | 
            +
            - test/language/ast/variable.rb
         | 
| 885 848 | 
             
            - test/language/ast.rb
         | 
| 849 | 
            +
            - test/language/functions.rb
         | 
| 886 850 | 
             
            - test/language/parser.rb
         | 
| 851 | 
            +
            - test/language/scope.rb
         | 
| 887 852 | 
             
            - test/language/snippets.rb
         | 
| 888 853 | 
             
            - test/language/transportable.rb
         | 
| 889 | 
            -
            - test/ | 
| 890 | 
            -
            - test/ | 
| 891 | 
            -
            - test/lib/ | 
| 892 | 
            -
            - test/lib/puppettest/railstesting.rb
         | 
| 893 | 
            -
            - test/lib/puppettest/parsertesting.rb
         | 
| 894 | 
            -
            - test/lib/puppettest/filetesting.rb
         | 
| 854 | 
            +
            - test/lib/puppettest/certificates.rb
         | 
| 855 | 
            +
            - test/lib/puppettest/exetest.rb
         | 
| 856 | 
            +
            - test/lib/puppettest/fakes.rb
         | 
| 895 857 | 
             
            - test/lib/puppettest/fileparsing.rb
         | 
| 896 | 
            -
            - test/lib/puppettest/ | 
| 897 | 
            -
            - test/lib/puppettest/ | 
| 858 | 
            +
            - test/lib/puppettest/filetesting.rb
         | 
| 859 | 
            +
            - test/lib/puppettest/parsertesting.rb
         | 
| 860 | 
            +
            - test/lib/puppettest/railstesting.rb
         | 
| 898 861 | 
             
            - test/lib/puppettest/reporttesting.rb
         | 
| 899 | 
            -
            - test/lib/puppettest/ | 
| 862 | 
            +
            - test/lib/puppettest/resourcetesting.rb
         | 
| 863 | 
            +
            - test/lib/puppettest/runnable_test.rb
         | 
| 864 | 
            +
            - test/lib/puppettest/servertest.rb
         | 
| 900 865 | 
             
            - test/lib/puppettest/support/assertions.rb
         | 
| 901 | 
            -
            - test/lib/puppettest/support/utils.rb
         | 
| 902 866 | 
             
            - test/lib/puppettest/support/helpers.rb
         | 
| 903 867 | 
             
            - test/lib/puppettest/support/resources.rb
         | 
| 904 | 
            -
            - test/lib/puppettest/ | 
| 905 | 
            -
            - test/lib/puppettest/servertest.rb
         | 
| 868 | 
            +
            - test/lib/puppettest/support/utils.rb
         | 
| 906 869 | 
             
            - test/lib/puppettest/support.rb
         | 
| 907 | 
            -
            - test/lib/puppettest/ | 
| 908 | 
            -
            - test/lib/puppettest/exetest.rb
         | 
| 870 | 
            +
            - test/lib/puppettest/testcase.rb
         | 
| 909 871 | 
             
            - test/lib/puppettest.rb
         | 
| 910 872 | 
             
            - test/lib/rake/puppet_test_loader.rb
         | 
| 911 873 | 
             
            - test/lib/rake/puppet_testtask.rb
         | 
| 912 | 
            -
            - test/ | 
| 913 | 
            -
            - test/ | 
| 914 | 
            -
            - test/puppet/defaults.rb
         | 
| 915 | 
            -
            - test/test
         | 
| 874 | 
            +
            - test/lib/stubba.rb
         | 
| 875 | 
            +
            - test/network/authconfig.rb
         | 
| 916 876 | 
             
            - test/network/authorization.rb
         | 
| 917 | 
            -
            - test/network/ | 
| 918 | 
            -
            - test/network/rights.rb
         | 
| 919 | 
            -
            - test/network/server/webrick.rb
         | 
| 920 | 
            -
            - test/network/server/mongrel_test.rb
         | 
| 877 | 
            +
            - test/network/authstore.rb
         | 
| 921 878 | 
             
            - test/network/client/ca.rb
         | 
| 922 879 | 
             
            - test/network/client/dipper.rb
         | 
| 923 | 
            -
            - test/network/ | 
| 924 | 
            -
            - test/network/authstore.rb
         | 
| 880 | 
            +
            - test/network/client_request.rb
         | 
| 925 881 | 
             
            - test/network/handler/ca.rb
         | 
| 926 | 
            -
            - test/network/handler/master.rb
         | 
| 927 | 
            -
            - test/network/handler/runner.rb
         | 
| 928 882 | 
             
            - test/network/handler/fileserver.rb
         | 
| 883 | 
            +
            - test/network/handler/master.rb
         | 
| 929 884 | 
             
            - test/network/handler/report.rb
         | 
| 930 | 
            -
            - test/network/ | 
| 931 | 
            -
            - test/network/ | 
| 932 | 
            -
            - test/network/ | 
| 933 | 
            -
            - test/network/ | 
| 934 | 
            -
            - test/ | 
| 935 | 
            -
            - test/ | 
| 936 | 
            -
            - test/ | 
| 937 | 
            -
            - test/ | 
| 938 | 
            -
            - test/ | 
| 885 | 
            +
            - test/network/handler/runner.rb
         | 
| 886 | 
            +
            - test/network/rights.rb
         | 
| 887 | 
            +
            - test/network/server/mongrel_test.rb
         | 
| 888 | 
            +
            - test/network/server/webrick.rb
         | 
| 889 | 
            +
            - test/network/xmlrpc/client.rb
         | 
| 890 | 
            +
            - test/network/xmlrpc/processor.rb
         | 
| 891 | 
            +
            - test/network/xmlrpc/server.rb
         | 
| 892 | 
            +
            - test/network/xmlrpc/webrick_servlet.rb
         | 
| 893 | 
            +
            - test/other/provider.rb
         | 
| 894 | 
            +
            - test/other/puppet.rb
         | 
| 895 | 
            +
            - test/other/relationships.rb
         | 
| 896 | 
            +
            - test/other/report.rb
         | 
| 897 | 
            +
            - test/other/transactions.rb
         | 
| 898 | 
            +
            - test/puppet/defaults.rb
         | 
| 899 | 
            +
            - test/puppet/errortest.rb
         | 
| 900 | 
            +
            - test/puppet/tc_suidmanager.rb
         | 
| 901 | 
            +
            - test/rails/rails.rb
         | 
| 902 | 
            +
            - test/rails/railsparameter.rb
         | 
| 903 | 
            +
            - test/Rakefile
         | 
| 904 | 
            +
            - test/ral/manager/attributes.rb
         | 
| 905 | 
            +
            - test/ral/manager/instances.rb
         | 
| 906 | 
            +
            - test/ral/manager/manager.rb
         | 
| 907 | 
            +
            - test/ral/manager/provider.rb
         | 
| 908 | 
            +
            - test/ral/manager/type.rb
         | 
| 909 | 
            +
            - test/ral/providers/cron/crontab.rb
         | 
| 910 | 
            +
            - test/ral/providers/group.rb
         | 
| 911 | 
            +
            - test/ral/providers/host/parsed.rb
         | 
| 912 | 
            +
            - test/ral/providers/mailalias/aliases.rb
         | 
| 913 | 
            +
            - test/ral/providers/nameservice.rb
         | 
| 914 | 
            +
            - test/ral/providers/package/aptitude.rb
         | 
| 915 | 
            +
            - test/ral/providers/package/aptrpm.rb
         | 
| 916 | 
            +
            - test/ral/providers/package.rb
         | 
| 917 | 
            +
            - test/ral/providers/parsedfile.rb
         | 
| 918 | 
            +
            - test/ral/providers/port/parsed.rb
         | 
| 919 | 
            +
            - test/ral/providers/provider.rb
         | 
| 920 | 
            +
            - test/ral/providers/service/base.rb
         | 
| 921 | 
            +
            - test/ral/providers/sshkey/parsed.rb
         | 
| 922 | 
            +
            - test/ral/providers/user/useradd.rb
         | 
| 923 | 
            +
            - test/ral/providers/user.rb
         | 
| 924 | 
            +
            - test/ral/type/cron.rb
         | 
| 925 | 
            +
            - test/ral/type/exec.rb
         | 
| 926 | 
            +
            - test/ral/type/file/target.rb
         | 
| 927 | 
            +
            - test/ral/type/file.rb
         | 
| 928 | 
            +
            - test/ral/type/fileignoresource.rb
         | 
| 929 | 
            +
            - test/ral/type/filesources.rb
         | 
| 930 | 
            +
            - test/ral/type/host.rb
         | 
| 931 | 
            +
            - test/ral/type/mailalias.rb
         | 
| 932 | 
            +
            - test/ral/type/port.rb
         | 
| 933 | 
            +
            - test/ral/type/resources.rb
         | 
| 934 | 
            +
            - test/ral/type/service.rb
         | 
| 935 | 
            +
            - test/ral/type/sshkey.rb
         | 
| 936 | 
            +
            - test/ral/type/user.rb
         | 
| 937 | 
            +
            - test/ral/type/yumrepo.rb
         | 
| 938 | 
            +
            - test/ral/type/zone.rb
         | 
| 939 | 
            +
            - test/README
         | 
| 940 | 
            +
            - test/test
         | 
| 939 941 | 
             
            - test/util/classgen.rb
         | 
| 942 | 
            +
            - test/util/execution.rb
         | 
| 940 943 | 
             
            - test/util/fileparsing.rb
         | 
| 941 | 
            -
            - test/util/ | 
| 942 | 
            -
            - test/util/ | 
| 944 | 
            +
            - test/util/inifile.rb
         | 
| 945 | 
            +
            - test/util/instance_loader.rb
         | 
| 946 | 
            +
            - test/util/log.rb
         | 
| 943 947 | 
             
            - test/util/metrics.rb
         | 
| 948 | 
            +
            - test/util/package.rb
         | 
| 949 | 
            +
            - test/util/pidlock.rb
         | 
| 950 | 
            +
            - test/util/settings.rb
         | 
| 951 | 
            +
            - test/util/storage.rb
         | 
| 944 952 | 
             
            - test/util/subclass_loader.rb
         | 
| 945 953 | 
             
            - test/util/utiltest.rb
         | 
| 946 | 
            -
            -  | 
| 947 | 
            -
            -  | 
| 948 | 
            -
            -  | 
| 949 | 
            -
            -  | 
| 950 | 
            -
            -  | 
| 951 | 
            -
            -  | 
| 952 | 
            -
            -  | 
| 953 | 
            -
            -  | 
| 954 | 
            -
            -  | 
| 955 | 
            -
            - spec/ | 
| 956 | 
            -
            - spec/ | 
| 957 | 
            -
            - spec/ | 
| 958 | 
            -
            - spec/ | 
| 959 | 
            -
            - spec/ | 
| 960 | 
            -
            - spec/ | 
| 961 | 
            -
            - spec/ | 
| 962 | 
            -
            - spec/ | 
| 963 | 
            -
            - spec/ | 
| 964 | 
            -
            - spec/ | 
| 965 | 
            -
            - spec/ | 
| 966 | 
            -
            - spec/ | 
| 967 | 
            -
            - spec/ | 
| 968 | 
            -
            - spec/ | 
| 969 | 
            -
            - spec/ | 
| 970 | 
            -
            - spec/ | 
| 971 | 
            -
            - spec/ | 
| 972 | 
            -
            - spec/ | 
| 973 | 
            -
            - spec/ | 
| 974 | 
            -
            - spec/ | 
| 975 | 
            -
            - spec/ | 
| 976 | 
            -
            - spec/ | 
| 977 | 
            -
            - spec/ | 
| 978 | 
            -
            - spec/ | 
| 979 | 
            -
            - spec/ | 
| 980 | 
            -
            - spec/ | 
| 981 | 
            -
            - spec/ | 
| 982 | 
            -
            - spec/ | 
| 983 | 
            -
            - spec/ | 
| 984 | 
            -
            - spec/ | 
| 985 | 
            -
            - spec/ | 
| 986 | 
            -
            - spec/ | 
| 987 | 
            -
            - spec/ | 
| 988 | 
            -
            - spec/ | 
| 989 | 
            -
            - spec/ | 
| 990 | 
            -
            - spec/ | 
| 991 | 
            -
            - spec/ | 
| 992 | 
            -
            - spec/ | 
| 993 | 
            -
            - spec/ | 
| 994 | 
            -
            - spec/ | 
| 995 | 
            -
            - spec/ | 
| 996 | 
            -
            - spec/ | 
| 997 | 
            -
            - spec/ | 
| 954 | 
            +
            - spec/fixtures/unit/provider/mount/mount-output.aix.txt
         | 
| 955 | 
            +
            - spec/fixtures/yaml/report0.25.x.yaml
         | 
| 956 | 
            +
            - spec/fixtures/yaml/report2.6.x.yaml
         | 
| 957 | 
            +
            - spec/fixtures/yaml/test.local.yaml
         | 
| 958 | 
            +
            - spec/integration/application/apply_spec.rb
         | 
| 959 | 
            +
            - spec/integration/application/doc_spec.rb
         | 
| 960 | 
            +
            - spec/integration/configurer_spec.rb
         | 
| 961 | 
            +
            - spec/integration/defaults_spec.rb
         | 
| 962 | 
            +
            - spec/integration/file_serving/content_spec.rb
         | 
| 963 | 
            +
            - spec/integration/file_serving/fileset_spec.rb
         | 
| 964 | 
            +
            - spec/integration/file_serving/metadata_spec.rb
         | 
| 965 | 
            +
            - spec/integration/file_serving/terminus_helper_spec.rb
         | 
| 966 | 
            +
            - spec/integration/indirector/bucket_file/rest_spec.rb
         | 
| 967 | 
            +
            - spec/integration/indirector/catalog/compiler_spec.rb
         | 
| 968 | 
            +
            - spec/integration/indirector/catalog/queue_spec.rb
         | 
| 969 | 
            +
            - spec/integration/indirector/certificate/rest_spec.rb
         | 
| 970 | 
            +
            - spec/integration/indirector/certificate_request/rest_spec.rb
         | 
| 971 | 
            +
            - spec/integration/indirector/certificate_revocation_list/rest_spec.rb
         | 
| 972 | 
            +
            - spec/integration/indirector/direct_file_server_spec.rb
         | 
| 973 | 
            +
            - spec/integration/indirector/file_content/file_server_spec.rb
         | 
| 974 | 
            +
            - spec/integration/indirector/file_metadata/file_server_spec.rb
         | 
| 975 | 
            +
            - spec/integration/indirector/node/ldap_spec.rb
         | 
| 976 | 
            +
            - spec/integration/indirector/report/rest_spec.rb
         | 
| 977 | 
            +
            - spec/integration/network/client_spec.rb
         | 
| 978 | 
            +
            - spec/integration/network/formats_spec.rb
         | 
| 979 | 
            +
            - spec/integration/network/handler_spec.rb
         | 
| 980 | 
            +
            - spec/integration/network/server/mongrel_spec.rb
         | 
| 981 | 
            +
            - spec/integration/network/server/webrick_spec.rb
         | 
| 982 | 
            +
            - spec/integration/node/environment_spec.rb
         | 
| 983 | 
            +
            - spec/integration/node/facts_spec.rb
         | 
| 984 | 
            +
            - spec/integration/node_spec.rb
         | 
| 985 | 
            +
            - spec/integration/parser/collector_spec.rb
         | 
| 986 | 
            +
            - spec/integration/parser/compiler_spec.rb
         | 
| 987 | 
            +
            - spec/integration/parser/functions/require_spec.rb
         | 
| 988 | 
            +
            - spec/integration/parser/functions_spec.rb
         | 
| 989 | 
            +
            - spec/integration/parser/parser_spec.rb
         | 
| 990 | 
            +
            - spec/integration/parser/ruby_manifest_spec.rb
         | 
| 991 | 
            +
            - spec/integration/provider/mailalias/aliases_spec.rb
         | 
| 992 | 
            +
            - spec/integration/provider/mount_spec.rb
         | 
| 993 | 
            +
            - spec/integration/provider/package_spec.rb
         | 
| 994 | 
            +
            - spec/integration/provider/service/init_spec.rb
         | 
| 995 | 
            +
            - spec/integration/reference/providers_spec.rb
         | 
| 996 | 
            +
            - spec/integration/reports_spec.rb
         | 
| 997 | 
            +
            - spec/integration/resource/catalog_spec.rb
         | 
| 998 | 
            +
            - spec/integration/resource/type_collection_spec.rb
         | 
| 999 | 
            +
            - spec/integration/ssl/certificate_authority_spec.rb
         | 
| 1000 | 
            +
            - spec/integration/ssl/certificate_request_spec.rb
         | 
| 1001 | 
            +
            - spec/integration/ssl/certificate_revocation_list_spec.rb
         | 
| 1002 | 
            +
            - spec/integration/ssl/host_spec.rb
         | 
| 1003 | 
            +
            - spec/integration/transaction/report_spec.rb
         | 
| 1004 | 
            +
            - spec/integration/transaction_spec.rb
         | 
| 1005 | 
            +
            - spec/integration/type/file_spec.rb
         | 
| 1006 | 
            +
            - spec/integration/type/package_spec.rb
         | 
| 1007 | 
            +
            - spec/integration/type/tidy_spec.rb
         | 
| 1008 | 
            +
            - spec/integration/type_spec.rb
         | 
| 1009 | 
            +
            - spec/integration/util/autoload_spec.rb
         | 
| 1010 | 
            +
            - spec/integration/util/feature_spec.rb
         | 
| 1011 | 
            +
            - spec/integration/util/file_locking_spec.rb
         | 
| 1012 | 
            +
            - spec/integration/util/rdoc/parser_spec.rb
         | 
| 1013 | 
            +
            - spec/integration/util/settings_spec.rb
         | 
| 1014 | 
            +
            - spec/lib/puppet_spec/files.rb
         | 
| 1015 | 
            +
            - spec/lib/puppet_spec/verbose.rb
         | 
| 1016 | 
            +
            - spec/monkey_patches/alias_should_to_must.rb
         | 
| 1017 | 
            +
            - spec/monkey_patches/publicize_methods.rb
         | 
| 1018 | 
            +
            - spec/shared_behaviours/file_server_terminus.rb
         | 
| 1019 | 
            +
            - spec/shared_behaviours/file_serving.rb
         | 
| 1020 | 
            +
            - spec/shared_behaviours/memory_terminus.rb
         | 
| 1021 | 
            +
            - spec/shared_behaviours/path_parameters.rb
         | 
| 1022 | 
            +
            - spec/spec.opts
         | 
| 1023 | 
            +
            - spec/spec_helper.rb
         | 
| 1024 | 
            +
            - spec/unit/agent/locker_spec.rb
         | 
| 1025 | 
            +
            - spec/unit/agent_spec.rb
         | 
| 1026 | 
            +
            - spec/unit/application/agent_spec.rb
         | 
| 1027 | 
            +
            - spec/unit/application/apply_spec.rb
         | 
| 1028 | 
            +
            - spec/unit/application/cert_spec.rb
         | 
| 1029 | 
            +
            - spec/unit/application/describe_spec.rb
         | 
| 1030 | 
            +
            - spec/unit/application/doc_spec.rb
         | 
| 1031 | 
            +
            - spec/unit/application/filebucket_spec.rb
         | 
| 1032 | 
            +
            - spec/unit/application/inspect_spec.rb
         | 
| 1033 | 
            +
            - spec/unit/application/kick_spec.rb
         | 
| 1034 | 
            +
            - spec/unit/application/master_spec.rb
         | 
| 1035 | 
            +
            - spec/unit/application/queue_spec.rb
         | 
| 1036 | 
            +
            - spec/unit/application/resource_spec.rb
         | 
| 1037 | 
            +
            - spec/unit/application_spec.rb
         | 
| 1038 | 
            +
            - spec/unit/configurer/downloader_spec.rb
         | 
| 1039 | 
            +
            - spec/unit/configurer/fact_handler_spec.rb
         | 
| 1040 | 
            +
            - spec/unit/configurer/plugin_handler_spec.rb
         | 
| 1041 | 
            +
            - spec/unit/configurer_spec.rb
         | 
| 1042 | 
            +
            - spec/unit/daemon_spec.rb
         | 
| 1043 | 
            +
            - spec/unit/dsl/resource_api_spec.rb
         | 
| 1044 | 
            +
            - spec/unit/dsl/resource_type_api_spec.rb
         | 
| 1045 | 
            +
            - spec/unit/file_bucket/dipper_spec.rb
         | 
| 1046 | 
            +
            - spec/unit/file_bucket/file_spec.rb
         | 
| 1047 | 
            +
            - spec/unit/file_collection/lookup_spec.rb
         | 
| 1048 | 
            +
            - spec/unit/file_collection_spec.rb
         | 
| 1049 | 
            +
            - spec/unit/file_serving/base_spec.rb
         | 
| 1050 | 
            +
            - spec/unit/file_serving/configuration/parser_spec.rb
         | 
| 1051 | 
            +
            - spec/unit/file_serving/configuration_spec.rb
         | 
| 1052 | 
            +
            - spec/unit/file_serving/content_spec.rb
         | 
| 1053 | 
            +
            - spec/unit/file_serving/fileset_spec.rb
         | 
| 1054 | 
            +
            - spec/unit/file_serving/indirection_hooks_spec.rb
         | 
| 1055 | 
            +
            - spec/unit/file_serving/metadata_spec.rb
         | 
| 1056 | 
            +
            - spec/unit/file_serving/mount/file_spec.rb
         | 
| 1057 | 
            +
            - spec/unit/file_serving/mount/modules_spec.rb
         | 
| 1058 | 
            +
            - spec/unit/file_serving/mount/plugins_spec.rb
         | 
| 1059 | 
            +
            - spec/unit/file_serving/mount_spec.rb
         | 
| 1060 | 
            +
            - spec/unit/file_serving/terminus_helper_spec.rb
         | 
| 1061 | 
            +
            - spec/unit/indirector/active_record_spec.rb
         | 
| 1062 | 
            +
            - spec/unit/indirector/catalog/active_record_spec.rb
         | 
| 1063 | 
            +
            - spec/unit/indirector/catalog/compiler_spec.rb
         | 
| 1064 | 
            +
            - spec/unit/indirector/catalog/queue_spec.rb
         | 
| 1065 | 
            +
            - spec/unit/indirector/catalog/rest_spec.rb
         | 
| 1066 | 
            +
            - spec/unit/indirector/catalog/yaml_spec.rb
         | 
| 1067 | 
            +
            - spec/unit/indirector/certificate/ca_spec.rb
         | 
| 1068 | 
            +
            - spec/unit/indirector/certificate/file_spec.rb
         | 
| 1069 | 
            +
            - spec/unit/indirector/certificate/rest_spec.rb
         | 
| 1070 | 
            +
            - spec/unit/indirector/certificate_request/ca_spec.rb
         | 
| 1071 | 
            +
            - spec/unit/indirector/certificate_request/file_spec.rb
         | 
| 1072 | 
            +
            - spec/unit/indirector/certificate_request/rest_spec.rb
         | 
| 1073 | 
            +
            - spec/unit/indirector/certificate_revocation_list/ca_spec.rb
         | 
| 1074 | 
            +
            - spec/unit/indirector/certificate_revocation_list/file_spec.rb
         | 
| 1075 | 
            +
            - spec/unit/indirector/certificate_revocation_list/rest_spec.rb
         | 
| 1076 | 
            +
            - spec/unit/indirector/code_spec.rb
         | 
| 1077 | 
            +
            - spec/unit/indirector/direct_file_server_spec.rb
         | 
| 1078 | 
            +
            - spec/unit/indirector/envelope_spec.rb
         | 
| 1079 | 
            +
            - spec/unit/indirector/exec_spec.rb
         | 
| 1080 | 
            +
            - spec/unit/indirector/facts/active_record_spec.rb
         | 
| 1081 | 
            +
            - spec/unit/indirector/facts/couch_spec.rb
         | 
| 1082 | 
            +
            - spec/unit/indirector/facts/facter_spec.rb
         | 
| 1083 | 
            +
            - spec/unit/indirector/facts/inventory_active_record_spec.rb
         | 
| 1084 | 
            +
            - spec/unit/indirector/facts/rest_spec.rb
         | 
| 1085 | 
            +
            - spec/unit/indirector/facts/yaml_spec.rb
         | 
| 1086 | 
            +
            - spec/unit/indirector/file_bucket_file/file_spec.rb
         | 
| 1087 | 
            +
            - spec/unit/indirector/file_bucket_file/rest_spec.rb
         | 
| 1088 | 
            +
            - spec/unit/indirector/file_content/file_server_spec.rb
         | 
| 1089 | 
            +
            - spec/unit/indirector/file_content/file_spec.rb
         | 
| 1090 | 
            +
            - spec/unit/indirector/file_content/rest_spec.rb
         | 
| 1091 | 
            +
            - spec/unit/indirector/file_metadata/file_server_spec.rb
         | 
| 1092 | 
            +
            - spec/unit/indirector/file_metadata/file_spec.rb
         | 
| 1093 | 
            +
            - spec/unit/indirector/file_metadata/rest_spec.rb
         | 
| 1094 | 
            +
            - spec/unit/indirector/file_server_spec.rb
         | 
| 1095 | 
            +
            - spec/unit/indirector/file_spec.rb
         | 
| 1096 | 
            +
            - spec/unit/indirector/indirection_spec.rb
         | 
| 1097 | 
            +
            - spec/unit/indirector/key/ca_spec.rb
         | 
| 1098 | 
            +
            - spec/unit/indirector/key/file_spec.rb
         | 
| 1099 | 
            +
            - spec/unit/indirector/ldap_spec.rb
         | 
| 1100 | 
            +
            - spec/unit/indirector/memory_spec.rb
         | 
| 1101 | 
            +
            - spec/unit/indirector/node/active_record_spec.rb
         | 
| 1102 | 
            +
            - spec/unit/indirector/node/exec_spec.rb
         | 
| 1103 | 
            +
            - spec/unit/indirector/node/ldap_spec.rb
         | 
| 1104 | 
            +
            - spec/unit/indirector/node/memory_spec.rb
         | 
| 1105 | 
            +
            - spec/unit/indirector/node/plain_spec.rb
         | 
| 1106 | 
            +
            - spec/unit/indirector/node/rest_spec.rb
         | 
| 1107 | 
            +
            - spec/unit/indirector/node/yaml_spec.rb
         | 
| 1108 | 
            +
            - spec/unit/indirector/plain_spec.rb
         | 
| 1109 | 
            +
            - spec/unit/indirector/queue_spec.rb
         | 
| 1110 | 
            +
            - spec/unit/indirector/report/processor_spec.rb
         | 
| 1111 | 
            +
            - spec/unit/indirector/report/rest_spec.rb
         | 
| 1112 | 
            +
            - spec/unit/indirector/report/yaml_spec.rb
         | 
| 1113 | 
            +
            - spec/unit/indirector/request_spec.rb
         | 
| 1114 | 
            +
            - spec/unit/indirector/resource/ral_spec.rb
         | 
| 1115 | 
            +
            - spec/unit/indirector/resource/rest_spec.rb
         | 
| 1116 | 
            +
            - spec/unit/indirector/resource_type/parser_spec.rb
         | 
| 1117 | 
            +
            - spec/unit/indirector/resource_type/rest_spec.rb
         | 
| 1118 | 
            +
            - spec/unit/indirector/rest_spec.rb
         | 
| 1119 | 
            +
            - spec/unit/indirector/run/local_spec.rb
         | 
| 1120 | 
            +
            - spec/unit/indirector/run/rest_spec.rb
         | 
| 1121 | 
            +
            - spec/unit/indirector/ssl_file_spec.rb
         | 
| 1122 | 
            +
            - spec/unit/indirector/status/rest_spec.rb
         | 
| 1123 | 
            +
            - spec/unit/indirector/terminus_spec.rb
         | 
| 1124 | 
            +
            - spec/unit/indirector/yaml_spec.rb
         | 
| 1125 | 
            +
            - spec/unit/indirector_spec.rb
         | 
| 1126 | 
            +
            - spec/unit/module_spec.rb
         | 
| 1127 | 
            +
            - spec/unit/network/authconfig_spec.rb
         | 
| 1128 | 
            +
            - spec/unit/network/authstore_spec.rb
         | 
| 1129 | 
            +
            - spec/unit/network/client_spec.rb
         | 
| 1130 | 
            +
            - spec/unit/network/format_handler_spec.rb
         | 
| 1131 | 
            +
            - spec/unit/network/format_spec.rb
         | 
| 1132 | 
            +
            - spec/unit/network/formats_spec.rb
         | 
| 1133 | 
            +
            - spec/unit/network/handler/fileserver_spec.rb
         | 
| 1134 | 
            +
            - spec/unit/network/http/api/v1_spec.rb
         | 
| 1135 | 
            +
            - spec/unit/network/http/compression_spec.rb
         | 
| 1136 | 
            +
            - spec/unit/network/http/handler_spec.rb
         | 
| 1137 | 
            +
            - spec/unit/network/http/mongrel/rest_spec.rb
         | 
| 1138 | 
            +
            - spec/unit/network/http/mongrel/xmlrpc_spec.rb
         | 
| 1139 | 
            +
            - spec/unit/network/http/mongrel_spec.rb
         | 
| 1140 | 
            +
            - spec/unit/network/http/rack/rest_spec.rb
         | 
| 1141 | 
            +
            - spec/unit/network/http/rack/xmlrpc_spec.rb
         | 
| 1142 | 
            +
            - spec/unit/network/http/rack_spec.rb
         | 
| 1143 | 
            +
            - spec/unit/network/http/webrick/rest_spec.rb
         | 
| 1144 | 
            +
            - spec/unit/network/http/webrick/xmlrpc_spec.rb
         | 
| 1145 | 
            +
            - spec/unit/network/http/webrick_spec.rb
         | 
| 1146 | 
            +
            - spec/unit/network/http_pool_spec.rb
         | 
| 1147 | 
            +
            - spec/unit/network/http_spec.rb
         | 
| 1148 | 
            +
            - spec/unit/network/rest_authconfig_spec.rb
         | 
| 1149 | 
            +
            - spec/unit/network/rest_authorization_spec.rb
         | 
| 1150 | 
            +
            - spec/unit/network/rights_spec.rb
         | 
| 1151 | 
            +
            - spec/unit/network/server_spec.rb
         | 
| 1152 | 
            +
            - spec/unit/network/xmlrpc/client_spec.rb
         | 
| 1153 | 
            +
            - spec/unit/node/environment_spec.rb
         | 
| 1154 | 
            +
            - spec/unit/node/facts_spec.rb
         | 
| 1155 | 
            +
            - spec/unit/node_spec.rb
         | 
| 1156 | 
            +
            - spec/unit/other/selinux_spec.rb
         | 
| 1157 | 
            +
            - spec/unit/other/transbucket_spec.rb
         | 
| 1158 | 
            +
            - spec/unit/other/transobject_spec.rb
         | 
| 1159 | 
            +
            - spec/unit/parameter/path_spec.rb
         | 
| 1160 | 
            +
            - spec/unit/parameter/value_collection_spec.rb
         | 
| 1161 | 
            +
            - spec/unit/parameter/value_spec.rb
         | 
| 1162 | 
            +
            - spec/unit/parameter_spec.rb
         | 
| 1163 | 
            +
            - spec/unit/parser/ast/arithmetic_operator_spec.rb
         | 
| 1164 | 
            +
            - spec/unit/parser/ast/astarray_spec.rb
         | 
| 1165 | 
            +
            - spec/unit/parser/ast/asthash_spec.rb
         | 
| 1166 | 
            +
            - spec/unit/parser/ast/boolean_operator_spec.rb
         | 
| 1167 | 
            +
            - spec/unit/parser/ast/casestatement_spec.rb
         | 
| 1168 | 
            +
            - spec/unit/parser/ast/collection_spec.rb
         | 
| 1169 | 
            +
            - spec/unit/parser/ast/collexpr_spec.rb
         | 
| 1170 | 
            +
            - spec/unit/parser/ast/comparison_operator_spec.rb
         | 
| 1171 | 
            +
            - spec/unit/parser/ast/function_spec.rb
         | 
| 1172 | 
            +
            - spec/unit/parser/ast/ifstatement_spec.rb
         | 
| 1173 | 
            +
            - spec/unit/parser/ast/in_operator_spec.rb
         | 
| 1174 | 
            +
            - spec/unit/parser/ast/leaf_spec.rb
         | 
| 1175 | 
            +
            - spec/unit/parser/ast/match_operator_spec.rb
         | 
| 1176 | 
            +
            - spec/unit/parser/ast/minus_spec.rb
         | 
| 1177 | 
            +
            - spec/unit/parser/ast/nop_spec.rb
         | 
| 1178 | 
            +
            - spec/unit/parser/ast/not_spec.rb
         | 
| 1179 | 
            +
            - spec/unit/parser/ast/relationship_spec.rb
         | 
| 1180 | 
            +
            - spec/unit/parser/ast/resource_defaults_spec.rb
         | 
| 1181 | 
            +
            - spec/unit/parser/ast/resource_override_spec.rb
         | 
| 1182 | 
            +
            - spec/unit/parser/ast/resource_reference_spec.rb
         | 
| 1183 | 
            +
            - spec/unit/parser/ast/resource_spec.rb
         | 
| 1184 | 
            +
            - spec/unit/parser/ast/selector_spec.rb
         | 
| 1185 | 
            +
            - spec/unit/parser/ast/vardef_spec.rb
         | 
| 1186 | 
            +
            - spec/unit/parser/ast_spec.rb
         | 
| 1187 | 
            +
            - spec/unit/parser/collector_spec.rb
         | 
| 1188 | 
            +
            - spec/unit/parser/compiler_spec.rb
         | 
| 1189 | 
            +
            - spec/unit/parser/files_spec.rb
         | 
| 1190 | 
            +
            - spec/unit/parser/functions/defined_spec.rb
         | 
| 1191 | 
            +
            - spec/unit/parser/functions/extlookup_spec.rb
         | 
| 1192 | 
            +
            - spec/unit/parser/functions/fqdn_rand_spec.rb
         | 
| 1193 | 
            +
            - spec/unit/parser/functions/generate_spec.rb
         | 
| 1194 | 
            +
            - spec/unit/parser/functions/include_spec.rb
         | 
| 1195 | 
            +
            - spec/unit/parser/functions/inline_template_spec.rb
         | 
| 1196 | 
            +
            - spec/unit/parser/functions/realize_spec.rb
         | 
| 1197 | 
            +
            - spec/unit/parser/functions/regsubst_spec.rb
         | 
| 1198 | 
            +
            - spec/unit/parser/functions/require_spec.rb
         | 
| 1199 | 
            +
            - spec/unit/parser/functions/shellquote_spec.rb
         | 
| 1200 | 
            +
            - spec/unit/parser/functions/split_spec.rb
         | 
| 1201 | 
            +
            - spec/unit/parser/functions/sprintf_spec.rb
         | 
| 1202 | 
            +
            - spec/unit/parser/functions/tag_spec.rb
         | 
| 1203 | 
            +
            - spec/unit/parser/functions/template_spec.rb
         | 
| 1204 | 
            +
            - spec/unit/parser/functions/versioncmp_spec.rb
         | 
| 1205 | 
            +
            - spec/unit/parser/functions_spec.rb
         | 
| 1206 | 
            +
            - spec/unit/parser/lexer_spec.rb
         | 
| 1207 | 
            +
            - spec/unit/parser/parser_spec.rb
         | 
| 1208 | 
            +
            - spec/unit/parser/relationship_spec.rb
         | 
| 1209 | 
            +
            - spec/unit/parser/resource_spec.rb
         | 
| 1210 | 
            +
            - spec/unit/parser/scope_spec.rb
         | 
| 1211 | 
            +
            - spec/unit/parser/templatewrapper_spec.rb
         | 
| 1212 | 
            +
            - spec/unit/parser/type_loader_spec.rb
         | 
| 1213 | 
            +
            - spec/unit/property/ensure_spec.rb
         | 
| 1214 | 
            +
            - spec/unit/property/keyvalue_spec.rb
         | 
| 1215 | 
            +
            - spec/unit/property/list_spec.rb
         | 
| 1216 | 
            +
            - spec/unit/property/ordered_list_spec.rb
         | 
| 1217 | 
            +
            - spec/unit/property_spec.rb
         | 
| 1218 | 
            +
            - spec/unit/provider/augeas/augeas_spec.rb
         | 
| 1219 | 
            +
            - spec/unit/provider/confine/exists_spec.rb
         | 
| 1220 | 
            +
            - spec/unit/provider/confine/false_spec.rb
         | 
| 1221 | 
            +
            - spec/unit/provider/confine/feature_spec.rb
         | 
| 1222 | 
            +
            - spec/unit/provider/confine/true_spec.rb
         | 
| 1223 | 
            +
            - spec/unit/provider/confine/variable_spec.rb
         | 
| 1224 | 
            +
            - spec/unit/provider/confine_collection_spec.rb
         | 
| 1225 | 
            +
            - spec/unit/provider/confine_spec.rb
         | 
| 998 1226 | 
             
            - spec/unit/provider/confiner_spec.rb
         | 
| 1227 | 
            +
            - spec/unit/provider/exec/posix_spec.rb
         | 
| 1228 | 
            +
            - spec/unit/provider/exec/shell_spec.rb
         | 
| 1229 | 
            +
            - spec/unit/provider/group/groupadd_spec.rb
         | 
| 1230 | 
            +
            - spec/unit/provider/group/ldap_spec.rb
         | 
| 1231 | 
            +
            - spec/unit/provider/ldap_spec.rb
         | 
| 1232 | 
            +
            - spec/unit/provider/macauthorization_spec.rb
         | 
| 1233 | 
            +
            - spec/unit/provider/mcx/mcxcontent_spec.rb
         | 
| 999 1234 | 
             
            - spec/unit/provider/mount/parsed_spec.rb
         | 
| 1000 | 
            -
            - spec/unit/provider/ | 
| 1235 | 
            +
            - spec/unit/provider/mount_spec.rb
         | 
| 1236 | 
            +
            - spec/unit/provider/naginator_spec.rb
         | 
| 1237 | 
            +
            - spec/unit/provider/nameservice/directoryservice_spec.rb
         | 
| 1238 | 
            +
            - spec/unit/provider/package/aix_spec.rb
         | 
| 1239 | 
            +
            - spec/unit/provider/package/apt_spec.rb
         | 
| 1240 | 
            +
            - spec/unit/provider/package/dpkg_spec.rb
         | 
| 1001 1241 | 
             
            - spec/unit/provider/package/freebsd_spec.rb
         | 
| 1002 | 
            -
            - spec/unit/provider/package/macports_spec.rb
         | 
| 1003 1242 | 
             
            - spec/unit/provider/package/gem_spec.rb
         | 
| 1004 | 
            -
            - spec/unit/provider/package/dpkg_spec.rb
         | 
| 1005 | 
            -
            - spec/unit/provider/package/nim_spec.rb
         | 
| 1006 1243 | 
             
            - spec/unit/provider/package/hpux_spec.rb
         | 
| 1007 | 
            -
            - spec/unit/provider/package/ | 
| 1008 | 
            -
            - spec/unit/provider/package/ | 
| 1009 | 
            -
            - spec/unit/provider/package/zypper_spec.rb
         | 
| 1010 | 
            -
            - spec/unit/provider/package/pkgdmg_spec.rb
         | 
| 1244 | 
            +
            - spec/unit/provider/package/macports_spec.rb
         | 
| 1245 | 
            +
            - spec/unit/provider/package/nim_spec.rb
         | 
| 1011 1246 | 
             
            - spec/unit/provider/package/pkg_spec.rb
         | 
| 1247 | 
            +
            - spec/unit/provider/package/pkgdmg_spec.rb
         | 
| 1248 | 
            +
            - spec/unit/provider/package/zypper_spec.rb
         | 
| 1249 | 
            +
            - spec/unit/provider/parsedfile_spec.rb
         | 
| 1012 1250 | 
             
            - spec/unit/provider/selboolean_spec.rb
         | 
| 1013 | 
            -
            - spec/unit/provider/ldap_spec.rb
         | 
| 1014 | 
            -
            - spec/unit/provider/user/hpux_spec.rb
         | 
| 1015 | 
            -
            - spec/unit/provider/user/user_role_add_spec.rb
         | 
| 1016 | 
            -
            - spec/unit/provider/user/ldap_spec.rb
         | 
| 1017 | 
            -
            - spec/unit/provider/user/useradd_spec.rb
         | 
| 1018 1251 | 
             
            - spec/unit/provider/selmodule-example.pp
         | 
| 1019 | 
            -
            - spec/unit/provider/ | 
| 1020 | 
            -
            - spec/unit/provider/ | 
| 1021 | 
            -
            - spec/unit/provider/ | 
| 1022 | 
            -
            - spec/unit/provider/parsedfile_spec.rb
         | 
| 1023 | 
            -
            - spec/unit/provider/zfs/solaris_spec.rb
         | 
| 1024 | 
            -
            - spec/unit/provider/macauthorization_spec.rb
         | 
| 1025 | 
            -
            - spec/unit/provider/confine_spec.rb
         | 
| 1252 | 
            +
            - spec/unit/provider/selmodule_spec.rb
         | 
| 1253 | 
            +
            - spec/unit/provider/service/daemontools_spec.rb
         | 
| 1254 | 
            +
            - spec/unit/provider/service/debian_spec.rb
         | 
| 1026 1255 | 
             
            - spec/unit/provider/service/freebsd_spec.rb
         | 
| 1027 | 
            -
            - spec/unit/provider/service/src_spec.rb
         | 
| 1028 | 
            -
            - spec/unit/provider/service/runit_spec.rb
         | 
| 1029 | 
            -
            - spec/unit/provider/service/launchd_spec.rb
         | 
| 1030 1256 | 
             
            - spec/unit/provider/service/init_spec.rb
         | 
| 1031 | 
            -
            - spec/unit/provider/service/ | 
| 1257 | 
            +
            - spec/unit/provider/service/launchd_spec.rb
         | 
| 1032 1258 | 
             
            - spec/unit/provider/service/redhat_spec.rb
         | 
| 1033 | 
            -
            - spec/unit/provider/service/ | 
| 1259 | 
            +
            - spec/unit/provider/service/runit_spec.rb
         | 
| 1260 | 
            +
            - spec/unit/provider/service/src_spec.rb
         | 
| 1034 1261 | 
             
            - spec/unit/provider/ssh_authorized_key/parsed_spec.rb
         | 
| 1035 | 
            -
            - spec/unit/provider/confine_collection_spec.rb
         | 
| 1036 1262 | 
             
            - spec/unit/provider/sshkey/parsed_spec.rb
         | 
| 1263 | 
            +
            - spec/unit/provider/user/hpux_spec.rb
         | 
| 1264 | 
            +
            - spec/unit/provider/user/ldap_spec.rb
         | 
| 1265 | 
            +
            - spec/unit/provider/user/user_role_add_spec.rb
         | 
| 1266 | 
            +
            - spec/unit/provider/user/useradd_spec.rb
         | 
| 1267 | 
            +
            - spec/unit/provider/zfs/solaris_spec.rb
         | 
| 1268 | 
            +
            - spec/unit/provider/zone/solaris_spec.rb
         | 
| 1037 1269 | 
             
            - spec/unit/provider/zpool/solaris_spec.rb
         | 
| 1038 | 
            -
            - spec/unit/ | 
| 1039 | 
            -
            - spec/unit/ | 
| 1040 | 
            -
            - spec/unit/provider/confine/exists_spec.rb
         | 
| 1041 | 
            -
            - spec/unit/provider/confine/feature_spec.rb
         | 
| 1042 | 
            -
            - spec/unit/provider/confine/variable_spec.rb
         | 
| 1043 | 
            -
            - spec/unit/provider/augeas/augeas_spec.rb
         | 
| 1044 | 
            -
            - spec/unit/provider/nameservice/directoryservice_spec.rb
         | 
| 1045 | 
            -
            - spec/unit/provider/naginator_spec.rb
         | 
| 1046 | 
            -
            - spec/unit/resource_spec.rb
         | 
| 1047 | 
            -
            - spec/unit/rails/resource_spec.rb
         | 
| 1048 | 
            -
            - spec/unit/rails/param_value_spec.rb
         | 
| 1270 | 
            +
            - spec/unit/provider_spec.rb
         | 
| 1271 | 
            +
            - spec/unit/puppet_spec.rb
         | 
| 1049 1272 | 
             
            - spec/unit/rails/host_spec.rb
         | 
| 1050 | 
            -
            - spec/unit/ | 
| 1051 | 
            -
            - spec/unit/ | 
| 1052 | 
            -
            - spec/unit/type_spec.rb
         | 
| 1053 | 
            -
            - spec/unit/module_spec.rb
         | 
| 1054 | 
            -
            - spec/unit/relationship_spec.rb
         | 
| 1055 | 
            -
            - spec/unit/sslcertificates/ca_spec.rb
         | 
| 1056 | 
            -
            - spec/unit/file_collection/lookup_spec.rb
         | 
| 1057 | 
            -
            - spec/unit/parser/type_loader_spec.rb
         | 
| 1058 | 
            -
            - spec/unit/parser/resource_spec.rb
         | 
| 1059 | 
            -
            - spec/unit/parser/files_spec.rb
         | 
| 1060 | 
            -
            - spec/unit/parser/relationship_spec.rb
         | 
| 1061 | 
            -
            - spec/unit/parser/scope_spec.rb
         | 
| 1062 | 
            -
            - spec/unit/parser/functions_spec.rb
         | 
| 1063 | 
            -
            - spec/unit/parser/functions/extlookup_spec.rb
         | 
| 1064 | 
            -
            - spec/unit/parser/functions/include_spec.rb
         | 
| 1065 | 
            -
            - spec/unit/parser/functions/defined_spec.rb
         | 
| 1066 | 
            -
            - spec/unit/parser/functions/versioncmp_spec.rb
         | 
| 1067 | 
            -
            - spec/unit/parser/functions/shellquote_spec.rb
         | 
| 1068 | 
            -
            - spec/unit/parser/functions/realize_spec.rb
         | 
| 1069 | 
            -
            - spec/unit/parser/functions/sprintf_spec.rb
         | 
| 1070 | 
            -
            - spec/unit/parser/functions/tag_spec.rb
         | 
| 1071 | 
            -
            - spec/unit/parser/functions/template_spec.rb
         | 
| 1072 | 
            -
            - spec/unit/parser/functions/regsubst_spec.rb
         | 
| 1073 | 
            -
            - spec/unit/parser/functions/fqdn_rand_spec.rb
         | 
| 1074 | 
            -
            - spec/unit/parser/functions/require_spec.rb
         | 
| 1075 | 
            -
            - spec/unit/parser/functions/inline_template_spec.rb
         | 
| 1076 | 
            -
            - spec/unit/parser/functions/split_spec.rb
         | 
| 1077 | 
            -
            - spec/unit/parser/functions/generate_spec.rb
         | 
| 1078 | 
            -
            - spec/unit/parser/templatewrapper_spec.rb
         | 
| 1079 | 
            -
            - spec/unit/parser/collector_spec.rb
         | 
| 1080 | 
            -
            - spec/unit/parser/ast_spec.rb
         | 
| 1081 | 
            -
            - spec/unit/parser/ast/ifstatement_spec.rb
         | 
| 1082 | 
            -
            - spec/unit/parser/ast/resource_spec.rb
         | 
| 1083 | 
            -
            - spec/unit/parser/ast/astarray_spec.rb
         | 
| 1084 | 
            -
            - spec/unit/parser/ast/match_operator_spec.rb
         | 
| 1085 | 
            -
            - spec/unit/parser/ast/in_operator_spec.rb
         | 
| 1086 | 
            -
            - spec/unit/parser/ast/relationship_spec.rb
         | 
| 1087 | 
            -
            - spec/unit/parser/ast/minus_spec.rb
         | 
| 1088 | 
            -
            - spec/unit/parser/ast/leaf_spec.rb
         | 
| 1089 | 
            -
            - spec/unit/parser/ast/resource_reference_spec.rb
         | 
| 1090 | 
            -
            - spec/unit/parser/ast/selector_spec.rb
         | 
| 1091 | 
            -
            - spec/unit/parser/ast/resource_defaults_spec.rb
         | 
| 1092 | 
            -
            - spec/unit/parser/ast/comparison_operator_spec.rb
         | 
| 1093 | 
            -
            - spec/unit/parser/ast/arithmetic_operator_spec.rb
         | 
| 1094 | 
            -
            - spec/unit/parser/ast/casestatement_spec.rb
         | 
| 1095 | 
            -
            - spec/unit/parser/ast/resource_override_spec.rb
         | 
| 1096 | 
            -
            - spec/unit/parser/ast/collection_spec.rb
         | 
| 1097 | 
            -
            - spec/unit/parser/ast/vardef_spec.rb
         | 
| 1098 | 
            -
            - spec/unit/parser/ast/boolean_operator_spec.rb
         | 
| 1099 | 
            -
            - spec/unit/parser/ast/collexpr_spec.rb
         | 
| 1100 | 
            -
            - spec/unit/parser/ast/asthash_spec.rb
         | 
| 1101 | 
            -
            - spec/unit/parser/ast/nop_spec.rb
         | 
| 1102 | 
            -
            - spec/unit/parser/ast/not_spec.rb
         | 
| 1103 | 
            -
            - spec/unit/parser/ast/function_spec.rb
         | 
| 1104 | 
            -
            - spec/unit/parser/parser_spec.rb
         | 
| 1105 | 
            -
            - spec/unit/parser/compiler_spec.rb
         | 
| 1106 | 
            -
            - spec/unit/parser/lexer_spec.rb
         | 
| 1107 | 
            -
            - spec/unit/application/resource_spec.rb
         | 
| 1108 | 
            -
            - spec/unit/application/queue_spec.rb
         | 
| 1109 | 
            -
            - spec/unit/application/cert_spec.rb
         | 
| 1110 | 
            -
            - spec/unit/application/inspect_spec.rb
         | 
| 1111 | 
            -
            - spec/unit/application/kick_spec.rb
         | 
| 1112 | 
            -
            - spec/unit/application/apply_spec.rb
         | 
| 1113 | 
            -
            - spec/unit/application/agent_spec.rb
         | 
| 1114 | 
            -
            - spec/unit/application/doc_spec.rb
         | 
| 1115 | 
            -
            - spec/unit/application/filebucket_spec.rb
         | 
| 1116 | 
            -
            - spec/unit/application/describe_spec.rb
         | 
| 1117 | 
            -
            - spec/unit/application/master_spec.rb
         | 
| 1118 | 
            -
            - spec/unit/reports/http_spec.rb
         | 
| 1119 | 
            -
            - spec/unit/reports/store_spec.rb
         | 
| 1120 | 
            -
            - spec/unit/reports/rrdgraph_spec.rb
         | 
| 1121 | 
            -
            - spec/unit/reports/tagmail_spec.rb
         | 
| 1122 | 
            -
            - spec/unit/ssl/certificate_authority/interface_spec.rb
         | 
| 1123 | 
            -
            - spec/unit/ssl/certificate_factory_spec.rb
         | 
| 1124 | 
            -
            - spec/unit/ssl/host_spec.rb
         | 
| 1125 | 
            -
            - spec/unit/ssl/certificate_revocation_list_spec.rb
         | 
| 1126 | 
            -
            - spec/unit/ssl/key_spec.rb
         | 
| 1127 | 
            -
            - spec/unit/ssl/certificate_spec.rb
         | 
| 1128 | 
            -
            - spec/unit/ssl/inventory_spec.rb
         | 
| 1129 | 
            -
            - spec/unit/ssl/base_spec.rb
         | 
| 1130 | 
            -
            - spec/unit/ssl/certificate_request_spec.rb
         | 
| 1131 | 
            -
            - spec/unit/ssl/certificate_authority_spec.rb
         | 
| 1132 | 
            -
            - spec/unit/property_spec.rb
         | 
| 1133 | 
            -
            - spec/unit/transaction/resource_harness_spec.rb
         | 
| 1134 | 
            -
            - spec/unit/transaction/event_spec.rb
         | 
| 1135 | 
            -
            - spec/unit/transaction/event_manager_spec.rb
         | 
| 1136 | 
            -
            - spec/unit/transaction/report_spec.rb
         | 
| 1137 | 
            -
            - spec/unit/node/facts_spec.rb
         | 
| 1138 | 
            -
            - spec/unit/node/environment_spec.rb
         | 
| 1139 | 
            -
            - spec/unit/transaction_spec.rb
         | 
| 1140 | 
            -
            - spec/unit/property/keyvalue_spec.rb
         | 
| 1141 | 
            -
            - spec/unit/property/ensure_spec.rb
         | 
| 1142 | 
            -
            - spec/unit/property/ordered_list_spec.rb
         | 
| 1143 | 
            -
            - spec/unit/property/list_spec.rb
         | 
| 1144 | 
            -
            - spec/unit/application_spec.rb
         | 
| 1145 | 
            -
            - spec/unit/parameter/path_spec.rb
         | 
| 1146 | 
            -
            - spec/unit/parameter/value_spec.rb
         | 
| 1147 | 
            -
            - spec/unit/parameter/value_collection_spec.rb
         | 
| 1148 | 
            -
            - spec/unit/indirector/ssl_file_spec.rb
         | 
| 1149 | 
            -
            - spec/unit/indirector/file_metadata/file_server_spec.rb
         | 
| 1150 | 
            -
            - spec/unit/indirector/file_metadata/rest_spec.rb
         | 
| 1151 | 
            -
            - spec/unit/indirector/file_metadata/file_spec.rb
         | 
| 1152 | 
            -
            - spec/unit/indirector/plain_spec.rb
         | 
| 1153 | 
            -
            - spec/unit/indirector/status/rest_spec.rb
         | 
| 1154 | 
            -
            - spec/unit/indirector/code_spec.rb
         | 
| 1155 | 
            -
            - spec/unit/indirector/run/local_spec.rb
         | 
| 1156 | 
            -
            - spec/unit/indirector/run/rest_spec.rb
         | 
| 1157 | 
            -
            - spec/unit/indirector/certificate_status/#file_spec.rb#
         | 
| 1158 | 
            -
            - spec/unit/indirector/queue_spec.rb
         | 
| 1159 | 
            -
            - spec/unit/indirector/memory_spec.rb
         | 
| 1160 | 
            -
            - spec/unit/indirector/yaml_spec.rb
         | 
| 1161 | 
            -
            - spec/unit/indirector/terminus_spec.rb
         | 
| 1162 | 
            -
            - spec/unit/indirector/key/ca_spec.rb
         | 
| 1163 | 
            -
            - spec/unit/indirector/key/file_spec.rb
         | 
| 1164 | 
            -
            - spec/unit/indirector/certificate_request/ca_spec.rb
         | 
| 1165 | 
            -
            - spec/unit/indirector/certificate_request/rest_spec.rb
         | 
| 1166 | 
            -
            - spec/unit/indirector/certificate_request/file_spec.rb
         | 
| 1167 | 
            -
            - spec/unit/indirector/certificate_revocation_list/ca_spec.rb
         | 
| 1168 | 
            -
            - spec/unit/indirector/certificate_revocation_list/rest_spec.rb
         | 
| 1169 | 
            -
            - spec/unit/indirector/certificate_revocation_list/file_spec.rb
         | 
| 1170 | 
            -
            - spec/unit/indirector/facts/yaml_spec.rb
         | 
| 1171 | 
            -
            - spec/unit/indirector/facts/inventory_active_record_spec.rb
         | 
| 1172 | 
            -
            - spec/unit/indirector/facts/rest_spec.rb
         | 
| 1173 | 
            -
            - spec/unit/indirector/facts/facter_spec.rb
         | 
| 1174 | 
            -
            - spec/unit/indirector/facts/couch_spec.rb
         | 
| 1175 | 
            -
            - spec/unit/indirector/facts/active_record_spec.rb
         | 
| 1176 | 
            -
            - spec/unit/indirector/request_spec.rb
         | 
| 1177 | 
            -
            - spec/unit/indirector/indirection_spec.rb
         | 
| 1178 | 
            -
            - spec/unit/indirector/report/yaml_spec.rb
         | 
| 1179 | 
            -
            - spec/unit/indirector/report/processor_spec.rb
         | 
| 1180 | 
            -
            - spec/unit/indirector/report/rest_spec.rb
         | 
| 1181 | 
            -
            - spec/unit/indirector/node/plain_spec.rb
         | 
| 1182 | 
            -
            - spec/unit/indirector/node/memory_spec.rb
         | 
| 1183 | 
            -
            - spec/unit/indirector/node/yaml_spec.rb
         | 
| 1184 | 
            -
            - spec/unit/indirector/node/ldap_spec.rb
         | 
| 1185 | 
            -
            - spec/unit/indirector/node/rest_spec.rb
         | 
| 1186 | 
            -
            - spec/unit/indirector/node/exec_spec.rb
         | 
| 1187 | 
            -
            - spec/unit/indirector/node/active_record_spec.rb
         | 
| 1188 | 
            -
            - spec/unit/indirector/envelope_spec.rb
         | 
| 1189 | 
            -
            - spec/unit/indirector/ldap_spec.rb
         | 
| 1190 | 
            -
            - spec/unit/indirector/file_server_spec.rb
         | 
| 1191 | 
            -
            - spec/unit/indirector/file_content/file_server_spec.rb
         | 
| 1192 | 
            -
            - spec/unit/indirector/file_content/rest_spec.rb
         | 
| 1193 | 
            -
            - spec/unit/indirector/file_content/file_spec.rb
         | 
| 1194 | 
            -
            - spec/unit/indirector/direct_file_server_spec.rb
         | 
| 1195 | 
            -
            - spec/unit/indirector/resource/rest_spec.rb
         | 
| 1196 | 
            -
            - spec/unit/indirector/resource/ral_spec.rb
         | 
| 1197 | 
            -
            - spec/unit/indirector/rest_spec.rb
         | 
| 1198 | 
            -
            - spec/unit/indirector/catalog/queue_spec.rb
         | 
| 1199 | 
            -
            - spec/unit/indirector/catalog/yaml_spec.rb
         | 
| 1200 | 
            -
            - spec/unit/indirector/catalog/rest_spec.rb
         | 
| 1201 | 
            -
            - spec/unit/indirector/catalog/active_record_spec.rb
         | 
| 1202 | 
            -
            - spec/unit/indirector/catalog/compiler_spec.rb
         | 
| 1203 | 
            -
            - spec/unit/indirector/certificate/ca_spec.rb
         | 
| 1204 | 
            -
            - spec/unit/indirector/certificate/rest_spec.rb
         | 
| 1205 | 
            -
            - spec/unit/indirector/certificate/file_spec.rb
         | 
| 1206 | 
            -
            - spec/unit/indirector/exec_spec.rb
         | 
| 1207 | 
            -
            - spec/unit/indirector/file_bucket_file/rest_spec.rb
         | 
| 1208 | 
            -
            - spec/unit/indirector/file_bucket_file/file_spec.rb
         | 
| 1209 | 
            -
            - spec/unit/indirector/file_spec.rb
         | 
| 1210 | 
            -
            - spec/unit/indirector/resource_type/rest_spec.rb
         | 
| 1211 | 
            -
            - spec/unit/indirector/resource_type/parser_spec.rb
         | 
| 1212 | 
            -
            - spec/unit/indirector/active_record_spec.rb
         | 
| 1273 | 
            +
            - spec/unit/rails/param_value_spec.rb
         | 
| 1274 | 
            +
            - spec/unit/rails/resource_spec.rb
         | 
| 1213 1275 | 
             
            - spec/unit/rails_spec.rb
         | 
| 1214 | 
            -
            - spec/unit/ | 
| 1215 | 
            -
            - spec/unit/ | 
| 1216 | 
            -
            - spec/unit/ | 
| 1217 | 
            -
            - spec/unit/ | 
| 1218 | 
            -
            - spec/unit/ | 
| 1219 | 
            -
            - spec/unit/ | 
| 1220 | 
            -
            - spec/unit/resource/catalog_spec.rb
         | 
| 1221 | 
            -
            - spec/unit/resource/ | 
| 1222 | 
            -
            - spec/unit/resource/ | 
| 1223 | 
            -
            - spec/unit/resource | 
| 1224 | 
            -
            - spec/unit/ | 
| 1225 | 
            -
            - spec/unit/ | 
| 1226 | 
            -
            - spec/unit/ | 
| 1227 | 
            -
            - spec/unit/file_serving/mount/plugins_spec.rb
         | 
| 1228 | 
            -
            - spec/unit/file_serving/mount/file_spec.rb
         | 
| 1229 | 
            -
            - spec/unit/file_serving/fileset_spec.rb
         | 
| 1230 | 
            -
            - spec/unit/file_serving/metadata_spec.rb
         | 
| 1231 | 
            -
            - spec/unit/file_serving/configuration/parser_spec.rb
         | 
| 1232 | 
            -
            - spec/unit/file_serving/configuration_spec.rb
         | 
| 1233 | 
            -
            - spec/unit/file_serving/terminus_helper_spec.rb
         | 
| 1234 | 
            -
            - spec/unit/file_serving/base_spec.rb
         | 
| 1235 | 
            -
            - spec/unit/file_serving/content_spec.rb
         | 
| 1276 | 
            +
            - spec/unit/relationship_spec.rb
         | 
| 1277 | 
            +
            - spec/unit/reports/http_spec.rb
         | 
| 1278 | 
            +
            - spec/unit/reports/rrdgraph_spec.rb
         | 
| 1279 | 
            +
            - spec/unit/reports/store_spec.rb
         | 
| 1280 | 
            +
            - spec/unit/reports/tagmail_spec.rb
         | 
| 1281 | 
            +
            - spec/unit/reports_spec.rb
         | 
| 1282 | 
            +
            - spec/unit/resource/catalog_spec.rb
         | 
| 1283 | 
            +
            - spec/unit/resource/status_spec.rb
         | 
| 1284 | 
            +
            - spec/unit/resource/type_collection_helper_spec.rb
         | 
| 1285 | 
            +
            - spec/unit/resource/type_collection_spec.rb
         | 
| 1286 | 
            +
            - spec/unit/resource/type_spec.rb
         | 
| 1287 | 
            +
            - spec/unit/resource_spec.rb
         | 
| 1288 | 
            +
            - spec/unit/run_spec.rb
         | 
| 1236 1289 | 
             
            - spec/unit/simple_graph_spec.rb
         | 
| 1237 | 
            -
            - spec/unit/ | 
| 1238 | 
            -
            - spec/unit/ | 
| 1239 | 
            -
            - spec/unit/ | 
| 1240 | 
            -
            - spec/unit/ | 
| 1241 | 
            -
            - spec/unit/ | 
| 1242 | 
            -
            - spec/unit/ | 
| 1243 | 
            -
            - spec/unit/ | 
| 1244 | 
            -
            - spec/unit/ | 
| 1245 | 
            -
            - spec/unit/ | 
| 1246 | 
            -
            - spec/unit/ | 
| 1247 | 
            -
            - spec/unit/ | 
| 1248 | 
            -
            - spec/unit/ | 
| 1249 | 
            -
            - spec/unit/ | 
| 1250 | 
            -
            - spec/unit/ | 
| 1251 | 
            -
            - spec/unit/ | 
| 1252 | 
            -
            - spec/unit/ | 
| 1253 | 
            -
            - spec/unit/ | 
| 1254 | 
            -
            - spec/unit/ | 
| 1255 | 
            -
            - spec/unit/ | 
| 1256 | 
            -
            - spec/unit/ | 
| 1257 | 
            -
            - spec/unit/ | 
| 1258 | 
            -
            - spec/unit/ | 
| 1259 | 
            -
            - spec/unit/ | 
| 1260 | 
            -
            - spec/unit/ | 
| 1261 | 
            -
            - spec/unit/ | 
| 1262 | 
            -
            - spec/unit/ | 
| 1263 | 
            -
            - spec/unit/ | 
| 1264 | 
            -
            - spec/unit/ | 
| 1265 | 
            -
            - spec/unit/ | 
| 1266 | 
            -
            - spec/unit/ | 
| 1267 | 
            -
            - spec/unit/ | 
| 1268 | 
            -
            - spec/unit/ | 
| 1269 | 
            -
            - spec/unit/ | 
| 1270 | 
            -
            - spec/unit/ | 
| 1271 | 
            -
            - spec/unit/ | 
| 1272 | 
            -
            - spec/unit/ | 
| 1273 | 
            -
            - spec/unit/ | 
| 1274 | 
            -
            - spec/unit/ | 
| 1275 | 
            -
            - spec/unit/ | 
| 1276 | 
            -
            - spec/unit/ | 
| 1290 | 
            +
            - spec/unit/ssl/base_spec.rb
         | 
| 1291 | 
            +
            - spec/unit/ssl/certificate_authority/interface_spec.rb
         | 
| 1292 | 
            +
            - spec/unit/ssl/certificate_authority_spec.rb
         | 
| 1293 | 
            +
            - spec/unit/ssl/certificate_factory_spec.rb
         | 
| 1294 | 
            +
            - spec/unit/ssl/certificate_request_spec.rb
         | 
| 1295 | 
            +
            - spec/unit/ssl/certificate_revocation_list_spec.rb
         | 
| 1296 | 
            +
            - spec/unit/ssl/certificate_spec.rb
         | 
| 1297 | 
            +
            - spec/unit/ssl/host_spec.rb
         | 
| 1298 | 
            +
            - spec/unit/ssl/inventory_spec.rb
         | 
| 1299 | 
            +
            - spec/unit/ssl/key_spec.rb
         | 
| 1300 | 
            +
            - spec/unit/sslcertificates/ca_spec.rb
         | 
| 1301 | 
            +
            - spec/unit/status_spec.rb
         | 
| 1302 | 
            +
            - spec/unit/transaction/event_manager_spec.rb
         | 
| 1303 | 
            +
            - spec/unit/transaction/event_spec.rb
         | 
| 1304 | 
            +
            - spec/unit/transaction/report_spec.rb
         | 
| 1305 | 
            +
            - spec/unit/transaction/resource_harness_spec.rb
         | 
| 1306 | 
            +
            - spec/unit/transaction_spec.rb
         | 
| 1307 | 
            +
            - spec/unit/transportable_spec.rb
         | 
| 1308 | 
            +
            - spec/unit/type/augeas_spec.rb
         | 
| 1309 | 
            +
            - spec/unit/type/component_spec.rb
         | 
| 1310 | 
            +
            - spec/unit/type/computer_spec.rb
         | 
| 1311 | 
            +
            - spec/unit/type/cron_spec.rb
         | 
| 1312 | 
            +
            - spec/unit/type/exec_spec.rb
         | 
| 1313 | 
            +
            - spec/unit/type/file/checksum_spec.rb
         | 
| 1314 | 
            +
            - spec/unit/type/file/content_spec.rb
         | 
| 1315 | 
            +
            - spec/unit/type/file/ctime.rb
         | 
| 1316 | 
            +
            - spec/unit/type/file/ensure_spec.rb
         | 
| 1317 | 
            +
            - spec/unit/type/file/group_spec.rb
         | 
| 1318 | 
            +
            - spec/unit/type/file/mtime.rb
         | 
| 1319 | 
            +
            - spec/unit/type/file/owner_spec.rb
         | 
| 1320 | 
            +
            - spec/unit/type/file/selinux_spec.rb
         | 
| 1321 | 
            +
            - spec/unit/type/file/source_spec.rb
         | 
| 1322 | 
            +
            - spec/unit/type/file/type.rb
         | 
| 1323 | 
            +
            - spec/unit/type/file_spec.rb
         | 
| 1324 | 
            +
            - spec/unit/type/filebucket_spec.rb
         | 
| 1325 | 
            +
            - spec/unit/type/group_spec.rb
         | 
| 1326 | 
            +
            - spec/unit/type/macauthorization_spec.rb
         | 
| 1327 | 
            +
            - spec/unit/type/maillist_spec.rb
         | 
| 1328 | 
            +
            - spec/unit/type/mcx_spec.rb
         | 
| 1329 | 
            +
            - spec/unit/type/mount_spec.rb
         | 
| 1330 | 
            +
            - spec/unit/type/nagios_spec.rb
         | 
| 1331 | 
            +
            - spec/unit/type/noop_metaparam_spec.rb
         | 
| 1332 | 
            +
            - spec/unit/type/package_spec.rb
         | 
| 1333 | 
            +
            - spec/unit/type/resources_spec.rb
         | 
| 1334 | 
            +
            - spec/unit/type/schedule_spec.rb
         | 
| 1335 | 
            +
            - spec/unit/type/selboolean_spec.rb
         | 
| 1336 | 
            +
            - spec/unit/type/selmodule_spec.rb
         | 
| 1337 | 
            +
            - spec/unit/type/service_spec.rb
         | 
| 1338 | 
            +
            - spec/unit/type/ssh_authorized_key_spec.rb
         | 
| 1339 | 
            +
            - spec/unit/type/stage_spec.rb
         | 
| 1340 | 
            +
            - spec/unit/type/tidy_spec.rb
         | 
| 1341 | 
            +
            - spec/unit/type/user_spec.rb
         | 
| 1342 | 
            +
            - spec/unit/type/whit_spec.rb
         | 
| 1343 | 
            +
            - spec/unit/type/zfs_spec.rb
         | 
| 1344 | 
            +
            - spec/unit/type/zone_spec.rb
         | 
| 1345 | 
            +
            - spec/unit/type/zpool_spec.rb
         | 
| 1346 | 
            +
            - spec/unit/type_spec.rb
         | 
| 1347 | 
            +
            - spec/unit/util/autoload/file_cache_spec.rb
         | 
| 1348 | 
            +
            - spec/unit/util/autoload_spec.rb
         | 
| 1349 | 
            +
            - spec/unit/util/backups_spec.rb
         | 
| 1350 | 
            +
            - spec/unit/util/cache_accumulator_spec.rb
         | 
| 1277 1351 | 
             
            - spec/unit/util/cacher_spec.rb
         | 
| 1278 | 
            -
            - spec/unit/util/logging_spec.rb
         | 
| 1279 | 
            -
            - spec/unit/util/storage_spec.rb
         | 
| 1280 | 
            -
            - spec/unit/util/loadedfile_spec.rb
         | 
| 1281 | 
            -
            - spec/unit/util/package_spec.rb
         | 
| 1282 | 
            -
            - spec/unit/util/run_mode_spec.rb
         | 
| 1283 | 
            -
            - spec/unit/util/nagios_maker_spec.rb
         | 
| 1284 | 
            -
            - spec/unit/util/zaml_spec.rb
         | 
| 1285 1352 | 
             
            - spec/unit/util/checksums_spec.rb
         | 
| 1286 | 
            -
            - spec/unit/util/ | 
| 1287 | 
            -
            - spec/unit/util/user_attr_spec.rb
         | 
| 1353 | 
            +
            - spec/unit/util/command_line_spec.rb
         | 
| 1288 1354 | 
             
            - spec/unit/util/constant_inflector_spec.rb
         | 
| 1289 | 
            -
            - spec/unit/util/ | 
| 1290 | 
            -
            - spec/unit/util/ | 
| 1291 | 
            -
            - spec/unit/util/ | 
| 1292 | 
            -
            - spec/unit/util/autoload/file_cache_spec.rb
         | 
| 1293 | 
            -
            - spec/unit/util/autoload_spec.rb
         | 
| 1294 | 
            -
            - spec/unit/util/rdoc/parser_spec.rb
         | 
| 1295 | 
            -
            - spec/unit/util/settings_spec.rb
         | 
| 1296 | 
            -
            - spec/unit/util/selinux_spec.rb
         | 
| 1297 | 
            -
            - spec/unit/util/inline_docs_spec.rb
         | 
| 1355 | 
            +
            - spec/unit/util/errors_spec.rb
         | 
| 1356 | 
            +
            - spec/unit/util/execution_spec.rb
         | 
| 1357 | 
            +
            - spec/unit/util/execution_stub_spec.rb
         | 
| 1298 1358 | 
             
            - spec/unit/util/feature_spec.rb
         | 
| 1299 | 
            -
            - spec/unit/util/ | 
| 1300 | 
            -
            - spec/unit/util/ | 
| 1301 | 
            -
            - spec/unit/util/ | 
| 1359 | 
            +
            - spec/unit/util/file_locking_spec.rb
         | 
| 1360 | 
            +
            - spec/unit/util/filetype_spec.rb
         | 
| 1361 | 
            +
            - spec/unit/util/inline_docs_spec.rb
         | 
| 1362 | 
            +
            - spec/unit/util/ldap/connection_spec.rb
         | 
| 1302 1363 | 
             
            - spec/unit/util/ldap/generator_spec.rb
         | 
| 1303 1364 | 
             
            - spec/unit/util/ldap/manager_spec.rb
         | 
| 1304 | 
            -
            - spec/unit/util/ | 
| 1305 | 
            -
            - spec/unit/util/ | 
| 1306 | 
            -
            - spec/unit/util/ | 
| 1365 | 
            +
            - spec/unit/util/loadedfile_spec.rb
         | 
| 1366 | 
            +
            - spec/unit/util/log/destinations_spec.rb
         | 
| 1367 | 
            +
            - spec/unit/util/log_spec.rb
         | 
| 1368 | 
            +
            - spec/unit/util/logging_spec.rb
         | 
| 1307 1369 | 
             
            - spec/unit/util/metric_spec.rb
         | 
| 1308 | 
            -
            - spec/unit/util/ | 
| 1370 | 
            +
            - spec/unit/util/monkey_patches_spec.rb
         | 
| 1371 | 
            +
            - spec/unit/util/nagios_maker_spec.rb
         | 
| 1372 | 
            +
            - spec/unit/util/package_spec.rb
         | 
| 1373 | 
            +
            - spec/unit/util/posix_spec.rb
         | 
| 1374 | 
            +
            - spec/unit/util/pson_spec.rb
         | 
| 1375 | 
            +
            - spec/unit/util/queue/stomp_spec.rb
         | 
| 1376 | 
            +
            - spec/unit/util/queue_spec.rb
         | 
| 1377 | 
            +
            - spec/unit/util/rdoc/parser_spec.rb
         | 
| 1378 | 
            +
            - spec/unit/util/rdoc_spec.rb
         | 
| 1309 1379 | 
             
            - spec/unit/util/reference_serializer_spec.rb
         | 
| 1310 | 
            -
            - spec/unit/ | 
| 1311 | 
            -
            - spec/unit/ | 
| 1312 | 
            -
            - spec/unit/ | 
| 1313 | 
            -
            - spec/unit/ | 
| 1314 | 
            -
            - spec/unit/ | 
| 1315 | 
            -
            - spec/unit/ | 
| 1316 | 
            -
            - spec/unit/ | 
| 1317 | 
            -
            - spec/unit/ | 
| 1318 | 
            -
            - spec/unit/ | 
| 1319 | 
            -
            - spec/unit/ | 
| 1320 | 
            -
            -  | 
| 1321 | 
            -
            - spec/unit/provider_spec.rb
         | 
| 1322 | 
            -
            - spec/unit/file_collection_spec.rb
         | 
| 1323 | 
            -
            - spec/monkey_patches/alias_should_to_must.rb
         | 
| 1324 | 
            -
            - spec/monkey_patches/publicize_methods.rb
         | 
| 1325 | 
            -
            - spec/fixtures/unit/provider/mount/mount-output.aix.txt
         | 
| 1326 | 
            -
            - spec/fixtures/yaml/report2.6.x.yaml
         | 
| 1327 | 
            -
            - spec/fixtures/yaml/test.local.yaml
         | 
| 1328 | 
            -
            - spec/fixtures/yaml/report0.25.x.yaml
         | 
| 1329 | 
            -
            - spec/lib/puppet_spec/files.rb
         | 
| 1330 | 
            -
            - spec/lib/puppet_spec/verbose.rb
         | 
| 1331 | 
            -
            - spec/shared_behaviours/memory_terminus.rb
         | 
| 1332 | 
            -
            - spec/shared_behaviours/path_parameters.rb
         | 
| 1333 | 
            -
            - spec/shared_behaviours/file_serving.rb
         | 
| 1334 | 
            -
            - spec/shared_behaviours/file_server_terminus.rb
         | 
| 1335 | 
            -
            - spec/spec.opts
         | 
| 1336 | 
            -
            - spec/integration/type/tidy_spec.rb
         | 
| 1337 | 
            -
            - spec/integration/type/package_spec.rb
         | 
| 1338 | 
            -
            - spec/integration/type/file_spec.rb
         | 
| 1339 | 
            -
            - spec/integration/provider/mount_spec.rb
         | 
| 1340 | 
            -
            - spec/integration/provider/package_spec.rb
         | 
| 1341 | 
            -
            - spec/integration/provider/service/init_spec.rb
         | 
| 1342 | 
            -
            - spec/integration/provider/mailalias/aliases_spec.rb
         | 
| 1343 | 
            -
            - spec/integration/reports_spec.rb
         | 
| 1344 | 
            -
            - spec/integration/type_spec.rb
         | 
| 1345 | 
            -
            - spec/integration/parser/functions_spec.rb
         | 
| 1346 | 
            -
            - spec/integration/parser/functions/require_spec.rb
         | 
| 1347 | 
            -
            - spec/integration/parser/collector_spec.rb
         | 
| 1348 | 
            -
            - spec/integration/parser/ruby_manifest_spec.rb
         | 
| 1349 | 
            -
            - spec/integration/parser/parser_spec.rb
         | 
| 1350 | 
            -
            - spec/integration/parser/compiler_spec.rb
         | 
| 1351 | 
            -
            - spec/integration/application/apply_spec.rb
         | 
| 1352 | 
            -
            - spec/integration/application/doc_spec.rb
         | 
| 1353 | 
            -
            - spec/integration/ssl/host_spec.rb
         | 
| 1354 | 
            -
            - spec/integration/ssl/certificate_revocation_list_spec.rb
         | 
| 1355 | 
            -
            - spec/integration/ssl/certificate_request_spec.rb
         | 
| 1356 | 
            -
            - spec/integration/ssl/certificate_authority_spec.rb
         | 
| 1357 | 
            -
            - spec/integration/reference/providers_spec.rb
         | 
| 1358 | 
            -
            - spec/integration/transaction/report_spec.rb
         | 
| 1359 | 
            -
            - spec/integration/node/facts_spec.rb
         | 
| 1360 | 
            -
            - spec/integration/node/environment_spec.rb
         | 
| 1361 | 
            -
            - spec/integration/transaction_spec.rb
         | 
| 1362 | 
            -
            - spec/integration/indirector/file_metadata/file_server_spec.rb
         | 
| 1363 | 
            -
            - spec/integration/indirector/bucket_file/rest_spec.rb
         | 
| 1364 | 
            -
            - spec/integration/indirector/certificate_request/rest_spec.rb
         | 
| 1365 | 
            -
            - spec/integration/indirector/certificate_revocation_list/rest_spec.rb
         | 
| 1366 | 
            -
            - spec/integration/indirector/report/rest_spec.rb
         | 
| 1367 | 
            -
            - spec/integration/indirector/node/ldap_spec.rb
         | 
| 1368 | 
            -
            - spec/integration/indirector/file_content/file_server_spec.rb
         | 
| 1369 | 
            -
            - spec/integration/indirector/direct_file_server_spec.rb
         | 
| 1370 | 
            -
            - spec/integration/indirector/catalog/queue_spec.rb
         | 
| 1371 | 
            -
            - spec/integration/indirector/catalog/compiler_spec.rb
         | 
| 1372 | 
            -
            - spec/integration/indirector/certificate/rest_spec.rb
         | 
| 1373 | 
            -
            - spec/integration/resource/catalog_spec.rb
         | 
| 1374 | 
            -
            - spec/integration/resource/type_collection_spec.rb
         | 
| 1375 | 
            -
            - spec/integration/file_serving/fileset_spec.rb
         | 
| 1376 | 
            -
            - spec/integration/file_serving/metadata_spec.rb
         | 
| 1377 | 
            -
            - spec/integration/file_serving/terminus_helper_spec.rb
         | 
| 1378 | 
            -
            - spec/integration/file_serving/content_spec.rb
         | 
| 1379 | 
            -
            - spec/integration/network/handler_spec.rb
         | 
| 1380 | 
            -
            - spec/integration/network/server/mongrel_spec.rb
         | 
| 1381 | 
            -
            - spec/integration/network/server/webrick_spec.rb
         | 
| 1382 | 
            -
            - spec/integration/network/formats_spec.rb
         | 
| 1383 | 
            -
            - spec/integration/network/client_spec.rb
         | 
| 1384 | 
            -
            - spec/integration/util/file_locking_spec.rb
         | 
| 1385 | 
            -
            - spec/integration/util/autoload_spec.rb
         | 
| 1386 | 
            -
            - spec/integration/util/rdoc/parser_spec.rb
         | 
| 1387 | 
            -
            - spec/integration/util/settings_spec.rb
         | 
| 1388 | 
            -
            - spec/integration/util/feature_spec.rb
         | 
| 1389 | 
            -
            - spec/integration/defaults_spec.rb
         | 
| 1390 | 
            -
            - spec/integration/configurer_spec.rb
         | 
| 1391 | 
            -
            - spec/integration/node_spec.rb
         | 
| 1392 | 
            -
            - spec/spec_helper.rb
         | 
| 1380 | 
            +
            - spec/unit/util/resource_template_spec.rb
         | 
| 1381 | 
            +
            - spec/unit/util/run_mode_spec.rb
         | 
| 1382 | 
            +
            - spec/unit/util/selinux_spec.rb
         | 
| 1383 | 
            +
            - spec/unit/util/settings/file_setting_spec.rb
         | 
| 1384 | 
            +
            - spec/unit/util/settings_spec.rb
         | 
| 1385 | 
            +
            - spec/unit/util/storage_spec.rb
         | 
| 1386 | 
            +
            - spec/unit/util/tagging_spec.rb
         | 
| 1387 | 
            +
            - spec/unit/util/user_attr_spec.rb
         | 
| 1388 | 
            +
            - spec/unit/util/warnings_spec.rb
         | 
| 1389 | 
            +
            - spec/unit/util/zaml_spec.rb
         | 
| 1390 | 
            +
            - bin/puppetca
         | 
| 1393 1391 | 
             
            - bin/puppetd
         | 
| 1392 | 
            +
            - bin/puppetmasterd
         | 
| 1394 1393 | 
             
            - bin/puppetqd
         | 
| 1395 1394 | 
             
            - bin/puppetrun
         | 
| 1396 | 
            -
            - bin/puppetmasterd
         | 
| 1397 | 
            -
            - bin/puppetca
         | 
| 1398 1395 | 
             
            has_rdoc: true
         | 
| 1399 1396 | 
             
            homepage: http://puppetlabs.com
         | 
| 1400 1397 | 
             
            licenses: []
         | 
| @@ -1429,7 +1426,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 1429 1426 | 
             
            requirements: []
         | 
| 1430 1427 |  | 
| 1431 1428 | 
             
            rubyforge_project: puppet
         | 
| 1432 | 
            -
            rubygems_version: 1.3 | 
| 1429 | 
            +
            rubygems_version: 1.5.3
         | 
| 1433 1430 | 
             
            signing_key: 
         | 
| 1434 1431 | 
             
            specification_version: 3
         | 
| 1435 1432 | 
             
            summary: Puppet, an automated configuration management tool
         |