flukso4r 0.3.4 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of flukso4r might be problematic. Click here for more details.

Files changed (5) hide show
  1. data/README.rdoc +2 -2
  2. data/Rakefile +2 -2
  3. data/VERSION +1 -1
  4. data/etc/flukso4rrc +6 -0
  5. metadata +4 -2
data/README.rdoc CHANGED
@@ -16,8 +16,8 @@ archive your Flukso readings at the highest resolution. The values are
16
16
  stored in an sqlite3 database.
17
17
 
18
18
  == Installation
19
-
20
- For most cases installation can be done using gems:
19
+ Please install SQLite3 first, as the gem uses an embedded database for
20
+ storing the readings. For most cases installation can be done using gems:
21
21
 
22
22
  $ gem install flukso4r
23
23
 
data/Rakefile CHANGED
@@ -11,9 +11,9 @@ begin
11
11
  gem.homepage = "http://gonium.net/md/flukso4r"
12
12
  gem.authors = ["Mathias Dalheimer"]
13
13
  gem.bindir = 'bin'
14
- gem.executables = ['flukso_query', 'flukso_archive_watts', 'flukso_create_db']
14
+ gem.executables = ['flukso_export_db', 'flukso_query', 'flukso_archive_watts', 'flukso_create_db']
15
15
  gem.default_executable = 'flukso_query'
16
- gem.files = FileList["[A-Z]*", "{bin,lib,test}/**/*"]
16
+ gem.files = FileList["[A-Z]*", "{bin,lib,etc,test}/**/*"]
17
17
 
18
18
  #gem.add_dependency('oauth', '~> 0.3.6')
19
19
  gem.add_dependency('httparty', '~> 0.4.3')
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.4
1
+ 0.3.5
data/etc/flukso4rrc ADDED
@@ -0,0 +1,6 @@
1
+ DB_FILE: "/tmp/demo_database.sqlite3"
2
+ DB_TABLE_NAME: "UTCReadings"
3
+ ACCESS_TOKEN: "3f..."
4
+ SENSOR_ID: "0e...."
5
+ BASE_URL: "https://api.flukso.net/sensor"
6
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flukso4r
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathias Dalheimer
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-03-31 00:00:00 +02:00
12
+ date: 2010-05-28 00:00:00 +02:00
13
13
  default_executable: flukso_query
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -35,6 +35,7 @@ dependencies:
35
35
  description: This gem provides a library for the Flukso API. See http://flukso.net for more information.
36
36
  email: md@gonium.net
37
37
  executables:
38
+ - flukso_export_db
38
39
  - flukso_query
39
40
  - flukso_archive_watts
40
41
  - flukso_create_db
@@ -52,6 +53,7 @@ files:
52
53
  - bin/flukso_create_db
53
54
  - bin/flukso_export_db
54
55
  - bin/flukso_query
56
+ - etc/flukso4rrc
55
57
  - lib/flukso.rb
56
58
  - lib/flukso/api.rb
57
59
  - lib/flukso/database.rb