simple_configure 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f86f31dbc5e4d799ee566be89e31e0ae9097d2ed
4
+ data.tar.gz: 4e6c86aae500df7d18f0ee7e056940a2a9652504
5
+ SHA512:
6
+ metadata.gz: 2f60de2cb9bbcb676e8c6d3293952d231e7d8b4ba55995252c4d40a179cc50b09d57c69a02014ca2abc45bd27fdb756f6768f9851384c4d81b6d3505691f9ed0
7
+ data.tar.gz: e029acee538b72682f10cedf5190de371d72e3fa868e8c396eb64ff30098c26f1c33d1fec0055e00f2c30734b55156c5decd53940a634a30fb010cafb82c8b03
data/.gitignore ADDED
@@ -0,0 +1,14 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ *.bundle
11
+ *.so
12
+ *.o
13
+ *.a
14
+ mkmf.log
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in simple_configure.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 Adhithya Rajasekaran
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Adhithya Rajasekaran
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,22 @@
1
+ ## simple_configure
2
+ simple_configure is a simple provisioning tool for provisioning servers to deploy Rails apps.
3
+
4
+ ### Why do you need this?
5
+ Have you ever deployed Rails apps to VPS manually without making mistakes and wasting time? The answer is most probably no. This is because humans are very error prone. We already have a great tool called **Capistrano** which automates most of the tasks involved in deployment of Rails apps. I haven't found a simple tool which performs the same automation for provisioning servers. That's why I wrote this tool. This is another tool extracted from Groupsy/Clubalert.
6
+
7
+ #### What about Chef/Puppet/Ansible/SaltStack?
8
+ I have some experience with Ansible but not a lot. I have never used SaltStack. So I am going to leave it out in this comparison. But I have played around with both Chef and Puppet. They are great at configuration management. But for a less compilated task like provisioning a Rails server, they are unnecessarily complicated and it will take a week for getting a person up to speed on the basics of these tools. simple_configure actually rose out my frustration with Chef.
9
+
10
+ ### Architecture
11
+
12
+ `simple_configure` is an agentless provisioning tool written in Ruby. All the provisioning is done over SSH. `simple_configure` breaks down the provisioning of servers into a series of tasks. `simple_configure` exposes those tasks through a DSL. The list of tasks currently available in `simple_configure` are in the tasks section below.
13
+
14
+ ### Installation
15
+
16
+ `simple_configure` is available as a gem. You can install it using
17
+
18
+ ```
19
+ gem install simple_configure
20
+ ```
21
+
22
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
@@ -0,0 +1,5 @@
1
+ require "simple_configure/version"
2
+
3
+ module SimpleConfigure
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module SimpleConfigure
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'simple_configure/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "simple_configure"
8
+ spec.version = SimpleConfigure::VERSION
9
+ spec.authors = ["Adhithya Rajasekaran"]
10
+ spec.email = ["adhithyan15@gmail.com"]
11
+ spec.summary = %q{A simple provisioning tool to setup your Rails deployment server}
12
+ spec.description = %q{simple_configure automates the set up of your Rails deployment server. Once simple_configure finishes, you should be able to just run `cap production deploy` to deploy your Rails apps}
13
+ spec.homepage = "http://adhithyan15.github.io/simple_configure/"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.7"
22
+ spec.add_development_dependency "rake", "~> 10.0"
23
+ end
metadata ADDED
@@ -0,0 +1,83 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simple_configure
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Adhithya Rajasekaran
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-06-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.7'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ description: simple_configure automates the set up of your Rails deployment server.
42
+ Once simple_configure finishes, you should be able to just run `cap production deploy`
43
+ to deploy your Rails apps
44
+ email:
45
+ - adhithyan15@gmail.com
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - ".gitignore"
51
+ - Gemfile
52
+ - LICENSE
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - lib/simple_configure.rb
57
+ - lib/simple_configure/version.rb
58
+ - simple_configure.gemspec
59
+ homepage: http://adhithyan15.github.io/simple_configure/
60
+ licenses:
61
+ - MIT
62
+ metadata: {}
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubyforge_project:
79
+ rubygems_version: 2.2.2
80
+ signing_key:
81
+ specification_version: 4
82
+ summary: A simple provisioning tool to setup your Rails deployment server
83
+ test_files: []