quintly 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e1a62919d53c364cddeee0a1f4a7f33c4d5577ee
4
- data.tar.gz: 10990df37bf2078235700dd1a327eab2373d2561
3
+ metadata.gz: 903e2291d3c514fdb70d0e21c98f5eaed1fb50aa
4
+ data.tar.gz: 097e52b88e9a2d8a95b60843694b77825e6327ea
5
5
  SHA512:
6
- metadata.gz: 8b9bd2094c51e6c1f153044bc6f658932b8baaa9e28250dee83f1bf0881567c5a7b2db287a54f152b72bba29e5ebcd12fab98a414380793029265cd2cfe184a0
7
- data.tar.gz: 3b1d4255e6dab9765063228b0e5d7755ce18ad3ae4134b7105d24a004f182c865e59934a04a48ceaa8ea6211fe8c32251af95717c6b3d848fa44a045f9d59587
6
+ metadata.gz: 47d15c53b3627cb14e799f85226da688e808e7ddead4e24229f976769c7ed60f41b0b828066dbc619c077d722f978d54b106c3876d9b6cfb14c3a718fc0e4ece
7
+ data.tar.gz: 85dc9110af03b597d5cfd84e2635138a5ae3ba43f85f9604e9d47cc1eef8ad39f125a99ce89bfed1a0f3abcde2b790fd1d875f6ac516e29154c8606fc30e36a6
data/README.md CHANGED
@@ -24,12 +24,12 @@ Or install it yourself as:
24
24
  require 'quintly'
25
25
 
26
26
  configuration = Quintly::Configuration.new do |conf|
27
- start_time: '2013-08-01',
28
- end_time: '2013-08-15',
29
- interval: 'daily', #(daily, weekly, monthly, yearly, total)
30
- profile_ids: 1111,
31
- username: 'your username',
32
- password: 'your password'
27
+ conf.start_time = '2013-08-01',
28
+ conf.end_time = '2013-08-15',
29
+ conf.interval = 'daily', #(daily, weekly, monthly, yearly, total)
30
+ conf.profile_ids = 1111,
31
+ conf.username = 'your username',
32
+ conf.password = 'your password'
33
33
  end
34
34
 
35
35
  # get fanCount info with predefined metric
@@ -1,6 +1,10 @@
1
1
  module Quintly
2
2
  class Configuration
3
3
  ATTRIBUTES = [
4
+ :start_time,
5
+ :end_time,
6
+ :interval,
7
+ :profile_ids,
4
8
  :username,
5
9
  :password
6
10
  ]
@@ -1,3 +1,3 @@
1
1
  module Quintly
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: quintly
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davide Santangelo