cryptkeeper 0.1.0

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/Manifest ADDED
@@ -0,0 +1,4 @@
1
+ README.rdoc
2
+ Rakefile
3
+ lib/crypt_keeper.rb
4
+ Manifest
data/README.rdoc ADDED
@@ -0,0 +1,11 @@
1
+ = CryptKeeper
2
+
3
+ Rails gem for connecting to the Google Storage API
4
+
5
+ == Install
6
+
7
+ gem install cryptkeeper
8
+
9
+ == Usage
10
+
11
+ Coming soon.
data/Rakefile ADDED
@@ -0,0 +1,14 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+ require 'echoe'
4
+
5
+ Echoe.new('cryptkeeper', '0.1.0') do |p|
6
+ p.description = "Work with Google Storage"
7
+ p.url = "http://github.com/adamthedeveloper/cryptkeeper"
8
+ p.author = "Adam Medeiros"
9
+ p.email = "adammede@gmail.com"
10
+ p.ignore_pattern = ["tmp/*", "script/*"]
11
+ p.development_dependencies = []
12
+ end
13
+
14
+ Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |rk_file| load rk_file }
@@ -0,0 +1,30 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{cryptkeeper}
5
+ s.version = "0.1.0"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Adam Medeiros"]
9
+ s.date = %q{2011-02-13}
10
+ s.description = %q{Work with Google Storage}
11
+ s.email = %q{adammede@gmail.com}
12
+ s.extra_rdoc_files = ["README.rdoc", "lib/crypt_keeper.rb"]
13
+ s.files = ["README.rdoc", "Rakefile", "lib/crypt_keeper.rb", "Manifest", "cryptkeeper.gemspec"]
14
+ s.homepage = %q{http://github.com/adamthedeveloper/cryptkeeper}
15
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Cryptkeeper", "--main", "README.rdoc"]
16
+ s.require_paths = ["lib"]
17
+ s.rubyforge_project = %q{cryptkeeper}
18
+ s.rubygems_version = %q{1.3.7}
19
+ s.summary = %q{Work with Google Storage}
20
+
21
+ if s.respond_to? :specification_version then
22
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
23
+ s.specification_version = 3
24
+
25
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
26
+ else
27
+ end
28
+ else
29
+ end
30
+ end
@@ -0,0 +1,8 @@
1
+ module CryptKeeper
2
+ class Connection
3
+ def initialize(*args)
4
+ options = {}
5
+ options.merge!(args.pop) if args.last.kind_of? Hash
6
+ end
7
+ end
8
+ end
metadata ADDED
@@ -0,0 +1,75 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cryptkeeper
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 1
8
+ - 0
9
+ version: 0.1.0
10
+ platform: ruby
11
+ authors:
12
+ - Adam Medeiros
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2011-02-13 00:00:00 -08:00
18
+ default_executable:
19
+ dependencies: []
20
+
21
+ description: Work with Google Storage
22
+ email: adammede@gmail.com
23
+ executables: []
24
+
25
+ extensions: []
26
+
27
+ extra_rdoc_files:
28
+ - README.rdoc
29
+ - lib/crypt_keeper.rb
30
+ files:
31
+ - README.rdoc
32
+ - Rakefile
33
+ - lib/crypt_keeper.rb
34
+ - Manifest
35
+ - cryptkeeper.gemspec
36
+ has_rdoc: true
37
+ homepage: http://github.com/adamthedeveloper/cryptkeeper
38
+ licenses: []
39
+
40
+ post_install_message:
41
+ rdoc_options:
42
+ - --line-numbers
43
+ - --inline-source
44
+ - --title
45
+ - Cryptkeeper
46
+ - --main
47
+ - README.rdoc
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ version: "0"
58
+ required_rubygems_version: !ruby/object:Gem::Requirement
59
+ none: false
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ segments:
64
+ - 1
65
+ - 2
66
+ version: "1.2"
67
+ requirements: []
68
+
69
+ rubyforge_project: cryptkeeper
70
+ rubygems_version: 1.3.7
71
+ signing_key:
72
+ specification_version: 3
73
+ summary: Work with Google Storage
74
+ test_files: []
75
+