secrets 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +1 -0
- data/README.rdoc +36 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/lib/secrets.rb +26 -0
- data/secrets.gemspec +45 -0
- metadata +72 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
DONT BE A DICK
|
data/README.rdoc
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
= secrets
|
2
|
+
|
3
|
+
Dirt simple secrets for rails3
|
4
|
+
|
5
|
+
Make a file: secrets.yml
|
6
|
+
|
7
|
+
Make it look like this:
|
8
|
+
|
9
|
+
facebook:
|
10
|
+
api_key: FAKE_API_KEY
|
11
|
+
secret: FAKE_SECRET
|
12
|
+
twitter
|
13
|
+
api_key: FAKE_API_KEY
|
14
|
+
secret: FAKE_SECRET
|
15
|
+
|
16
|
+
And use it like this:
|
17
|
+
|
18
|
+
FBClient.new Secret.facebook.api_key, Secret.facebook.secret
|
19
|
+
|
20
|
+
Sweet. That's fucking all she does. Stick it in yo Gemfile and forget about it.
|
21
|
+
|
22
|
+
Stay tuned for VERSION 2. It will have another feature.
|
23
|
+
|
24
|
+
== Note on Patches/Pull Requests
|
25
|
+
|
26
|
+
* Fork the project.
|
27
|
+
* Make your feature addition or bug fix.
|
28
|
+
* Add tests for it. This is important so I don't break it in a
|
29
|
+
future version unintentionally.
|
30
|
+
* Commit, do not mess with rakefile, version, or history.
|
31
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
32
|
+
* Send me a pull request. Bonus points for topic branches.
|
33
|
+
|
34
|
+
== Copyright
|
35
|
+
|
36
|
+
Copyright (c) 2010 Collin Miller. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "secrets"
|
8
|
+
gem.summary = %|Keeping secrets in rails.|
|
9
|
+
gem.description = %|Makes an object full of secrets out of a yaml file.|
|
10
|
+
gem.email = "collintmiller@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/collin/secrets"
|
12
|
+
gem.authors = ["Collin Miller"]
|
13
|
+
end
|
14
|
+
Jeweler::GemcutterTasks.new
|
15
|
+
rescue LoadError
|
16
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
17
|
+
end
|
18
|
+
|
19
|
+
require 'rake/testtask'
|
20
|
+
Rake::TestTask.new(:test) do |test|
|
21
|
+
test.libs << 'lib' << 'test'
|
22
|
+
test.pattern = 'test/**/test_*.rb'
|
23
|
+
test.verbose = true
|
24
|
+
end
|
25
|
+
|
26
|
+
begin
|
27
|
+
require 'rcov/rcovtask'
|
28
|
+
Rcov::RcovTask.new do |test|
|
29
|
+
test.libs << 'test'
|
30
|
+
test.pattern = 'test/**/test_*.rb'
|
31
|
+
test.verbose = true
|
32
|
+
end
|
33
|
+
rescue LoadError
|
34
|
+
task :rcov do
|
35
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
task :test => :check_dependencies
|
40
|
+
|
41
|
+
task :default => :test
|
42
|
+
|
43
|
+
require 'rake/rdoctask'
|
44
|
+
Rake::RDocTask.new do |rdoc|
|
45
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
46
|
+
|
47
|
+
rdoc.rdoc_dir = 'rdoc'
|
48
|
+
rdoc.title = "secrets #{version}"
|
49
|
+
rdoc.rdoc_files.include('README*')
|
50
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
51
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
data/lib/secrets.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
require "rails"
|
2
|
+
require "ostruct"
|
3
|
+
|
4
|
+
class Secrets < Rails::Railtie
|
5
|
+
config.secrets_path = "config/secrets.yml"
|
6
|
+
|
7
|
+
config.to_prepare do
|
8
|
+
Secrets.load!
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.load!
|
12
|
+
Object.send(:remove_const, :Secret) if defined? Secret
|
13
|
+
secrets = {}
|
14
|
+
|
15
|
+
[config.secrets_path].each do |path|
|
16
|
+
next unless File.exist?(Rails.root + path)
|
17
|
+
|
18
|
+
YAML.load_file(Rails.root + config.secrets_path).each do |(key, value)|
|
19
|
+
secrets[key] = OpenStruct.new value
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
|
24
|
+
Object.send :const_set, :Secret, OpenStruct.new(secrets)
|
25
|
+
end
|
26
|
+
end
|
data/secrets.gemspec
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{secrets}
|
8
|
+
s.version = "1.0.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Collin Miller"]
|
12
|
+
s.date = %q{2010-09-22}
|
13
|
+
s.description = %q{Makes an object full of secrets out of a yaml file.}
|
14
|
+
s.email = %q{collintmiller@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"lib/secrets.rb",
|
27
|
+
"secrets.gemspec"
|
28
|
+
]
|
29
|
+
s.homepage = %q{http://github.com/collin/secrets}
|
30
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
31
|
+
s.require_paths = ["lib"]
|
32
|
+
s.rubygems_version = %q{1.3.7}
|
33
|
+
s.summary = %q{Keeping secrets in rails.}
|
34
|
+
|
35
|
+
if s.respond_to? :specification_version then
|
36
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
37
|
+
s.specification_version = 3
|
38
|
+
|
39
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
40
|
+
else
|
41
|
+
end
|
42
|
+
else
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
metadata
ADDED
@@ -0,0 +1,72 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: secrets
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 1.0.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Collin Miller
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-09-22 00:00:00 -04:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: Makes an object full of secrets out of a yaml file.
|
22
|
+
email: collintmiller@gmail.com
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions: []
|
26
|
+
|
27
|
+
extra_rdoc_files:
|
28
|
+
- LICENSE
|
29
|
+
- README.rdoc
|
30
|
+
files:
|
31
|
+
- .document
|
32
|
+
- .gitignore
|
33
|
+
- LICENSE
|
34
|
+
- README.rdoc
|
35
|
+
- Rakefile
|
36
|
+
- VERSION
|
37
|
+
- lib/secrets.rb
|
38
|
+
- secrets.gemspec
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: http://github.com/collin/secrets
|
41
|
+
licenses: []
|
42
|
+
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options:
|
45
|
+
- --charset=UTF-8
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
segments:
|
54
|
+
- 0
|
55
|
+
version: "0"
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ">="
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
segments:
|
62
|
+
- 0
|
63
|
+
version: "0"
|
64
|
+
requirements: []
|
65
|
+
|
66
|
+
rubyforge_project:
|
67
|
+
rubygems_version: 1.3.7
|
68
|
+
signing_key:
|
69
|
+
specification_version: 3
|
70
|
+
summary: Keeping secrets in rails.
|
71
|
+
test_files: []
|
72
|
+
|