cliaws 1.7.0 → 1.7.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.
- data/History.txt +11 -0
- data/VERSION +1 -1
- data/cliaws.gemspec +1 -1
- data/lib/cliaws/s3.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
== 1.7.1 2009-07-20
|
|
2
|
+
|
|
3
|
+
* clis3 create, delete: create and delete buckets
|
|
4
|
+
* clis3 buckets: list all buckets
|
|
5
|
+
* clis3 grants: examine grants (permissions) on your buckets or objects
|
|
6
|
+
* clis3 grant, revoke: manage your bucket's or object's permissions
|
|
7
|
+
|
|
8
|
+
== 1.6.0 2009-07-13
|
|
9
|
+
|
|
10
|
+
* New tool: cliec2
|
|
11
|
+
|
|
1
12
|
== 1.3.3 2008-10-26
|
|
2
13
|
|
|
3
14
|
* Removed another dependency on Symbol#to_proc.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.7.
|
|
1
|
+
1.7.1
|
data/cliaws.gemspec
CHANGED
data/lib/cliaws/s3.rb
CHANGED
|
@@ -88,7 +88,7 @@ module Cliaws
|
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
protected
|
|
91
|
-
def bucket_and_key_name(full_name, create=
|
|
91
|
+
def bucket_and_key_name(full_name, create=false)
|
|
92
92
|
bucket_name, path = full_name.split("/", 2)
|
|
93
93
|
bucket = bucket(bucket_name, create)
|
|
94
94
|
raise UnknownBucket.new(bucket_name) unless bucket
|