rails-remote-ssl-cert 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NDIyNzA0ZjBiZWZkMzgwNjU1NjU2Njg4NjQ3YTEwNGRmYmU5Y2I4ZQ==
5
+ data.tar.gz: !binary |-
6
+ NTQwZTYxYjkyMjliMTUyN2FiOGE1ZDgwZjI4ZDdmMWIxOWI3NzEzNA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ ODA4NzBhOGVjNWZhMWJhMDNmOWQ3MGE3OGNlOTBkNTI2MWY2YWZlYzc5MGJm
10
+ NGMyNjM3NWI4OTcwMGNlNGU5MTllNWJmYWZlMzVkYjZjOWQ1NmM2NDQzYjNi
11
+ ZjU1NGNjNWZiMjhkNzIyMGI1OTExZjUwZGE5OWFiZmQxNjdlMDA=
12
+ data.tar.gz: !binary |-
13
+ ZDZjMTJkODM5NTkxMzgzZGVhM2IzMTIxNmM4NThiZmI1MGUzMGZlZmYzMTkw
14
+ YTYzMzZiMjYwNzI3OWMwNWI5MWYwZDkyNjFlZThjNTdhOTM3MDAwYjdhNjEw
15
+ ZmE4NmNmNDM3OTRjZTQ3OGFhNzIxYmE4YzBhMzg2ZDk1YzdmZmE=
@@ -0,0 +1,20 @@
1
+ Copyright 2013 Nicolas Arbogast
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,10 @@
1
+ gem install 'rails-remote-sll-cert'
2
+
3
+
4
+ Set environment variables
5
+ REMOTE_SSL_PRODUCTION_CRT
6
+ REMOTE_SSL_PRODUCTION_KEY
7
+ REMOTE_SSL_DEVELOPMENT...
8
+ REMOTE_SSL_TEST...
9
+
10
+ Rails.root/ssl/* will contain server.crt and server/key after booting the app
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'RailsRemoteSslCert'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+
24
+
25
+
26
+ Bundler::GemHelper.install_tasks
27
+
@@ -0,0 +1,2 @@
1
+ RailsRemoteSslCert::Engine.routes.draw do
2
+ end
@@ -0,0 +1,4 @@
1
+ require "rails-remote-ssl-cert/engine"
2
+
3
+ module RailsRemoteSslCert
4
+ end
@@ -0,0 +1,22 @@
1
+ require 'open-uri'
2
+ module RailsRemoteSslCert
3
+ class Engine < ::Rails::Engine
4
+ isolate_namespace RailsRemoteSslCert
5
+
6
+ initializer "rails-remote-ssl-cert.load" do |app|
7
+ ['crt', 'key'].each do |ext|
8
+
9
+ dirname = "#{Rails.root}/ssl"
10
+
11
+ unless File.directory?(dirname)
12
+ FileUtils.mkdir_p(dirname)
13
+ end
14
+
15
+ open(Rails.root.to_s + "/ssl/" + "server.#{ext}", 'wb') do |file|
16
+ file << open(ENV["REMOTE_SSL_#{Rails.env.upcase}_#{ext.upcase}"]).read
17
+ end
18
+ end
19
+
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,3 @@
1
+ module RailsRemoteSslCert
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :rails-remote-ssl-cert do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,66 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rails-remote-ssl-cert
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nicolas Arboagst
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.14
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.14
27
+ description: Useful when implementing ssl without having to push cert into version
28
+ control. Downloads ssl cert and key from remote location and stores them locally
29
+ email:
30
+ - nicolas.arbogast@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - config/routes.rb
36
+ - lib/rails-remote-ssl-cert/engine.rb
37
+ - lib/rails-remote-ssl-cert/version.rb
38
+ - lib/rails-remote-ssl-cert.rb
39
+ - lib/tasks/rails-remote-ssl-cert_tasks.rake
40
+ - MIT-LICENSE
41
+ - Rakefile
42
+ - README.rdoc
43
+ homepage: https://github.com/NicoArbogast/rails-remote-ssl-cert
44
+ licenses: []
45
+ metadata: {}
46
+ post_install_message:
47
+ rdoc_options: []
48
+ require_paths:
49
+ - lib
50
+ required_ruby_version: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ requirements: []
61
+ rubyforge_project:
62
+ rubygems_version: 2.0.7
63
+ signing_key:
64
+ specification_version: 4
65
+ summary: Downloads ssl cert and key from remote location and stores them locally
66
+ test_files: []