s3_log 0.0.3 → 0.0.4

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZWJmNzc4YmUzYWY1YmEzNGJiZmE1OGFmM2I3ZDZkMWI1ZmZjNTQ3NA==
4
+ MWM3NzM1NmY4YzRiMTFmZGU5MDYyMGM1MGU1M2VmNWU1MWIxNjc4Mg==
5
5
  data.tar.gz: !binary |-
6
- MTY1MGYzZmU5NWFjZmI2NjMwM2U5M2NiM2ZmZmZmMzczYWRjYzkzMQ==
6
+ OWYzOTZkM2ZiMWE2MTljODU0MDczYzJkNjMwNzg1NzhmNDczMWU3ZA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- ZjQyYzEwNGM0NDBjYTUxNTdhYWFiNDU3YWNjOTViMjFmM2ZhNTdhZWI3NTI5
10
- ZmE3NjRlYWEzOTk0NjA1YmM0ZmY2ZDU1MjFkNDM2OTA2NjUwNDg2NGJhM2Jk
11
- OTY1MDhjOWViMWQzMTg2OTg5YjVmOTMwOWI4MmNiMTgxOWRlOGY=
9
+ ZGM1OGY5M2RmM2UxMmI4YTAxZjg1MzFjOWVkNjJiN2UyZWY1MjJjZmY1NzU3
10
+ ZGNmOTE4OGFmYTgzNGM4NjI3MjI1OTI0MmI3MDUyZjVhYWU4MTU1N2NkMmI3
11
+ MTU2MjU5MjAxYjk2MDk3YTVhMTc5ZGRiZGI4ZTE1YjhkMDYzOTA=
12
12
  data.tar.gz: !binary |-
13
- OWZlZDdhODM4MDJmNjY1OTBhODk1YmQ0YmE5MTcwZWVjYmQxYzBmNjU3NTU0
14
- NjQ5ZjUyYmUwYjQ2ODMwYzQyODJiYjFkOGI3NTgwYmQ4M2VkNjI4ZDRmNTE4
15
- NTZjNGU4MjM2NjY5ZjZiYmEwYTY0MzU1NWEyYzI2MGQxNWZkYjQ=
13
+ YjcyZjc3NzYxOTNlOWFmMDQyYjE2M2FiNmEwYzdhNjFkZTc5MmViNzgzOTU4
14
+ MmYyN2Q5NjhiNTdkNmJmN2FjODYyY2FjYTQxMThkZTRjMjY2NGUwZDU5MDY2
15
+ ZjUzZmE4YzJhNjllYWNmMzA4MzAwMWFlNTNmZDJiZTlhZjM3ZTg=
data/HISTORY.md CHANGED
@@ -1,5 +1,6 @@
1
1
  ## History ##
2
2
 
3
+ * 0.0.4 - Even more README reference fixes
3
4
  * 0.0.3 - Fixed README to remove s3_logger references
4
5
  * 0.0.2 - Renamed to S3Log to avoid conflict with an existing gem
5
6
  * 0.0.1 - Initial release
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## S3Logger ##
1
+ ## S3Log ##
2
2
 
3
3
  Naively log events to a file on S3
4
4
 
@@ -13,10 +13,10 @@ gem 's3_log'
13
13
 
14
14
  ## Configuration ##
15
15
 
16
- S3Logger requires an AWS access key id, AWS secret access key, and a S3 bucket (preferably created in advance) name to function. It can be configured (in a Rails initializer or what have you) like so:
16
+ S3Log requires an AWS access key id, AWS secret access key, and a S3 bucket (preferably created in advance) name to function. It can be configured (in a Rails initializer or what have you) like so:
17
17
 
18
18
  ```ruby
19
- S3Logger.configure(
19
+ S3Log.configure(
20
20
  access_key_id: 'YOUR AWS ACCESS KEY ID',
21
21
  secret_access_key: 'YOUR AWS SECRET ACCESS KEY',
22
22
  bucket: 'YOUR S3 BUCKET'
@@ -25,10 +25,10 @@ S3Logger.configure(
25
25
 
26
26
  ## Usage ##
27
27
 
28
- Basically, logging an event is a matter of using S3Logger.write to write content to a given file location on S3. The file does not have to exist prior to writing, and a write always appends to an existing file.
28
+ Basically, logging an event is a matter of using S3Log.write to write content to a given file location on S3. The file does not have to exist prior to writing, and a write always appends to an existing file.
29
29
 
30
30
  ```ruby
31
- S3Logger.write('path/to/file', 'Some content')
31
+ S3Log.write('path/to/file', 'Some content')
32
32
  ```
33
33
 
34
34
  ## Caveats ##
@@ -46,7 +46,7 @@ The actual library docs can be read
46
46
  ## Contributing ##
47
47
 
48
48
  Do you use git-flow? I sure do. Please base anything you do off of
49
- [the develop branch](https://github.com/ess/s3_logger/tree/develop).
49
+ [the develop branch](https://github.com/ess/s3_log/tree/develop).
50
50
 
51
51
  1. Fork it.
52
52
  2. Perform some BDD magic. Seriously. Be testing.
@@ -1,3 +1,3 @@
1
1
  module S3Log
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: s3_log
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dennis Walters