Skip to content

Commit 8ccc787

Browse files
committed
Updates to the documentation
1 parent 62849f2 commit 8ccc787

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ This software is written by the SoftLayer Development Team [sldn@softlayer.com](
2626

2727
Please join us in the [SoftLayer Developer Network forums](http://forums.softlayer.com/forum/softlayer-developer-network)
2828

29+
# Contributer License Agreement
30+
31+
Contributions to the softlayer-ruby project require the submission of a contributer license agreement. Please generate the documentation and carefully refer to the Contribution Guide to participate.
32+
2933
# Copyright and License
3034

3135
The `softlayer_api` Ruby Gem and it's source files are Copyright © 2010-2014 [SoftLayer Technologies, Inc](http://www.softlayer.com/). The software is provided under an MIT license. Details of that license can be found in the embedded LICENSE.md file.

lib/softlayer/ObjectFilter.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,8 @@ def when_it(criteria)
9595
end
9696
end # ObjectFilter
9797

98+
##
99+
# :nodoc:
98100
OBJECT_FILTER_OPERATORS = [
99101
'*=', # Contains (ignoring case)
100102
'^=', # Begins with (ignoring case)

lib/softlayer/ProductItemCategory.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ module SoftLayer
1010
# the product order is the price_id, the rest of the information is provided
1111
# to make the object friendly to humans who may be searching for the
1212
# meaning of a given price_id.
13-
ProductConfigurationOption = Struct.new(:price_id, :description, :capacity, :units, :setupFee, :laborFee, :oneTimeFee, :recurringFee, :hourlyRecurringFee) do
14-
13+
class ProductConfigurationOption < Struct.new(:price_id, :description, :capacity, :units, :setupFee, :laborFee, :oneTimeFee, :recurringFee, :hourlyRecurringFee)
1514
# Is it evil, or just incongruous to give methods to a struct?
1615

1716
# returns true if the configurtion option has no fees associated with it.

lib/softlayer/base.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
# The SoftLayer module provides a namespace for SoftLayer code.
1111
#
1212
module SoftLayer
13+
# The version number (including major, minor, and bugfix numbers)
14+
# This should change in accordance with the concept of Semantic Versioning
1315
VERSION = "3.0.0" # version history in the CHANGELOG.textile file at the root of the source
1416

1517
# The base URL of the SoftLayer API available to the public internet.

0 commit comments

Comments
 (0)