• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

aws / aws-sdk-core-ruby / 336 / 10
100%
master: 100%

Build:
DEFAULT BRANCH: master
Ran 08 Oct 2014 05:09PM UTC
Files 176
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

08 Oct 2014 04:59PM UTC coverage: 92.037% (+0.3%) from 91.754%
jruby, PURE_RUBY=1, Gemfile

push

travis-ci

Trevor Rowe
Added support for DynamoDB document attributes.

You can now specify additional DynamoDB attribute value types,
including:

* Hash
* Array
* true/false
* nil

These types can be nested, allowing you to send deeply nested
data to DynamoDB.

    ddb.put_item(table_name: 'table-name', item: {
      id: 'item-id',
      tags: ['cool', 'new', 'feature'],
      secret: nil,
      other: {
        nested: true
        deeply: {
          nested: true
          mixed: [1, 1.2, 'values', { objects: true }]
        }
      }
    })

Complex attributes are automatically un-marshalled into
Ruby natives:

    ddb.get_item(table_name:'table-name', key: {'id' => 'item-id'})
    => #<struct item= {
        "tags" => ["cool", "new", "feature"],
        "id" => "item-id",
        "other" => {
          "nested" => true,
          "deeply" => {
            "nested" => true,
            "mixed" =>  [
              #<BigDecimal:7fc6d1e33df8,'0.1E1',9(18)>,
              #<BigDecimal:7fc6d1e30f68,'0.12E1',18(18)>,
              "values",
              {"objects" => true}
            ]
          }
        },
        "secret" => nil
      }, consumed_capacity=nil>

4843 of 5262 relevant lines covered (92.04%)

23.15 hits per line

Source Files on job 336.10 (jruby, PURE_RUBY=1, Gemfile)
  • Tree
  • List 0
  • Changed 33
  • Source Changed 2
  • Coverage Changed 33
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Build 336
  • Travis Job 336.10
  • 27e894a4 on github
  • Prev Job for jruby, PURE_RUBY=1, Gemfile on master (#335.10)
  • Next Job for jruby, PURE_RUBY=1, Gemfile on master (#337.10)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc