README.md in humidifier-0.7.0 vs README.md in humidifier-1.0.0

- old
+ new

@@ -18,11 +18,11 @@ ```ruby stack = Humidifier::Stack.new(name: 'Example-Stack', aws_template_format_version: '2010-09-09') load_balancer = Humidifier::ElasticLoadBalancing::LoadBalancer.new( - listeners: [{ LoadBalancerPort: 80, Protocol: 'http', InstancePort: 80, InstanceProtocol: 'http' }] + listeners: [{ load_balancer_port: 80, protocol: 'http', instance_port: 80, instance_protocol: 'http' }] ) load_balancer.scheme = 'internal' auto_scaling_group = Humidifier::AutoScaling::AutoScalingGroup.new(min_size: '1', max_size: '20') auto_scaling_group.update( @@ -90,10 +90,10 @@ $ bundle exec rubocop $ bundle exec rake yard ### Specs -The specs pulled from the CFN docs live under `/specs`. You can update them by running `bin/get-specs`. This script will scrape the docs by going to the [listings page](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html), finding the list of CFN resources, and then downloading the spec for each resource by going to the individual page. +The specs pulled from the CFN docs lives in `specs/CloudFormationResourceSpecification.json`. You can update it by running `bundle exec rake specs`. This script will pull down the latest [resource specification](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cfn-resource-specification.html) to be used with Humidifier. ### Extension The `underscore` string utility method does a lot of the heavy lifting of changing AWS property names over to ruby method names. As such, it's been extracted to a native extension to increase speed and efficiency. To compile it locally run `rake compile`.