cm 0.1.0 → 0.1.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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +6 -14
  3. data/VERSION +1 -1
  4. data/bin/cm +23 -0
  5. data/cm.gemspec +66 -0
  6. metadata +13 -16
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e10f7301cd425c07ffa86b5994d070ebf8214cc
4
- data.tar.gz: 0b2f2d62326895b84b00d0ea47a250a4999fbf31
3
+ metadata.gz: c3857bad332c48ef1a6eed25fdeafe27f2c52603
4
+ data.tar.gz: e6038e442b7b3051107fbc87576007deefd9ba00
5
5
  SHA512:
6
- metadata.gz: 13af9ab9f876ec30b132822da66f10179c54f4af0ea3c73f464611f260202bf8f5dd94c0ada475eabe2e6681465fd75ca2e334fdede7e11e275bc09c64498d47
7
- data.tar.gz: 3a86e9e75eccba109151916978dfb0f77c27b0d14017db0201470f7b74c99bea19e3e287ee328af87a0d496fd2f02c242ac58322a30c7e7cef0d4d26ec9595a9
6
+ metadata.gz: 0d8618863fed948c0f71c4ef435b4bb07a44c1d113ea55017d82a2d82c6012a1c9820a46759f1dd7e67ddf106dccec84e8d7726c47ac5849007671b6d1f99322
7
+ data.tar.gz: 6973e29c0e650288d0c29a3544465975e5dcc373b7630e5d73000e487191eeb8e0776e48d6b13a40238fc5e45acecf875858301f5d170faefd3556ff859c084b
data/Rakefile CHANGED
@@ -25,30 +25,22 @@ Jeweler::Tasks.new do |gem|
25
25
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
26
26
  gem.name = "cm"
27
27
  gem.homepage = "http://github.com/adrianwebb/cm"
28
- gem.rubyforge_project = 'cm'
29
28
  gem.license = "Apache License, Version 2.0"
30
29
  gem.email = "adrian.webb@gsa.gov"
31
30
  gem.authors = ["Adrian Webb"]
32
- gem.summary = %Q{Framework that provides a simple foundation for deploying and destroying enterprise ready cloud environments and components}
31
+ gem.summary = %Q{Pluggable cloud management framework that provides a simple foundation for deploying and destroying enterprise ready cloud environments and components}
33
32
  gem.description = %Q{
34
- Framework that provides a simple foundation for deploying and destroying
35
- enterprise ready cloud environments and components that integrate:
36
-
37
- 1. Cloud provider components and services
38
- 2. Cloud orchestration and configuration management tools
39
- 3. Continuous integration and delivery pipelines
40
-
41
- Author:: Adrian Webb (mailto:adrian.webb@gsa.gov)
42
- License:: Apache License, version 2
43
-
44
- Note: This framework is still very early in development!
33
+ Pluggable cloud management framework that provides a simple foundation for
34
+ deploying and destroying enterprise ready cloud environments and components
35
+ that integrate; cloud provider components and services, cloud orchestration
36
+ and configuration management tools, and continuous integration and delivery
37
+ pipelines.
45
38
  }
46
39
  gem.required_ruby_version = '>= 1.9.1'
47
40
  gem.has_rdoc = true
48
41
  gem.rdoc_options << '--title' << 'CM (Cloud Manager)' <<
49
42
  '--main' << 'README.rdoc' <<
50
43
  '--line-numbers'
51
-
52
44
  gem.files = [
53
45
  Dir.glob('bin/*'),
54
46
  Dir.glob('lib/**/*.rb'),
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
data/bin/cm ADDED
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ begin
4
+ require 'cm'
5
+
6
+ # Set version info
7
+
8
+ module Nucleon; module Util; module CLI
9
+ class Parser
10
+ def version
11
+ version = CM.VERSION
12
+ "CM: #{version} (Apache License, Version 2.0) -- https://github.com/adrianwebb/cm/tree/v#{version}"
13
+ end
14
+ end
15
+ end; end; end
16
+
17
+ # Execute
18
+
19
+ exit(Nucleon.executable(ARGV, :cm))
20
+
21
+ rescue Interrupt
22
+ exit(Nucleon.interrupt_handler)
23
+ end
data/cm.gemspec ADDED
@@ -0,0 +1,66 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+ # stub: cm 0.1.1 ruby lib
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = "cm"
9
+ s.version = "0.1.1"
10
+
11
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
13
+ s.authors = ["Adrian Webb"]
14
+ s.date = "2015-12-05"
15
+ s.description = "\nPluggable cloud management framework that provides a simple foundation for\ndeploying and destroying enterprise ready cloud environments and components\nthat integrate; cloud provider components and services, cloud orchestration\nand configuration management tools, and continuous integration and delivery\npipelines.\n"
16
+ s.email = "adrian.webb@gsa.gov"
17
+ s.executables = ["cm"]
18
+ s.extra_rdoc_files = [
19
+ "README.md"
20
+ ]
21
+ s.files = [
22
+ ".gitignore",
23
+ "Gemfile",
24
+ "Gemfile.lock",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "bin/cm",
28
+ "cm.gemspec",
29
+ "lib/cm.rb",
30
+ "lib/core/errors.rb",
31
+ "lib/core/facade.rb",
32
+ "locales/en.yml",
33
+ "spec/spec_helper.rb"
34
+ ]
35
+ s.homepage = "http://github.com/adrianwebb/cm"
36
+ s.licenses = ["Apache License, Version 2.0"]
37
+ s.rdoc_options = ["--title", "CM (Cloud Manager)", "--main", "README.rdoc", "--line-numbers"]
38
+ s.required_ruby_version = Gem::Requirement.new(">= 1.9.1")
39
+ s.rubygems_version = "2.4.5"
40
+ s.summary = "Pluggable cloud management framework that provides a simple foundation for deploying and destroying enterprise ready cloud environments and components"
41
+
42
+ if s.respond_to? :specification_version then
43
+ s.specification_version = 4
44
+
45
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_runtime_dependency(%q<nucleon>, ["~> 0.2"])
47
+ s.add_development_dependency(%q<bundler>, ["~> 1.7"])
48
+ s.add_development_dependency(%q<jeweler>, ["~> 2.0"])
49
+ s.add_development_dependency(%q<rspec>, ["~> 3.1"])
50
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
51
+ else
52
+ s.add_dependency(%q<nucleon>, ["~> 0.2"])
53
+ s.add_dependency(%q<bundler>, ["~> 1.7"])
54
+ s.add_dependency(%q<jeweler>, ["~> 2.0"])
55
+ s.add_dependency(%q<rspec>, ["~> 3.1"])
56
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<nucleon>, ["~> 0.2"])
60
+ s.add_dependency(%q<bundler>, ["~> 1.7"])
61
+ s.add_dependency(%q<jeweler>, ["~> 2.0"])
62
+ s.add_dependency(%q<rspec>, ["~> 3.1"])
63
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
64
+ end
65
+ end
66
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adrian Webb
@@ -82,19 +82,14 @@ dependencies:
82
82
  version: '3.12'
83
83
  description: |2
84
84
 
85
- Framework that provides a simple foundation for deploying and destroying
86
- enterprise ready cloud environments and components that integrate:
87
-
88
- 1. Cloud provider components and services
89
- 2. Cloud orchestration and configuration management tools
90
- 3. Continuous integration and delivery pipelines
91
-
92
- Author:: Adrian Webb (mailto:adrian.webb@gsa.gov)
93
- License:: Apache License, version 2
94
-
95
- Note: This framework is still very early in development!
85
+ Pluggable cloud management framework that provides a simple foundation for
86
+ deploying and destroying enterprise ready cloud environments and components
87
+ that integrate; cloud provider components and services, cloud orchestration
88
+ and configuration management tools, and continuous integration and delivery
89
+ pipelines.
96
90
  email: adrian.webb@gsa.gov
97
- executables: []
91
+ executables:
92
+ - cm
98
93
  extensions: []
99
94
  extra_rdoc_files:
100
95
  - README.md
@@ -105,6 +100,8 @@ files:
105
100
  - README.md
106
101
  - Rakefile
107
102
  - VERSION
103
+ - bin/cm
104
+ - cm.gemspec
108
105
  - lib/cm.rb
109
106
  - lib/core/errors.rb
110
107
  - lib/core/facade.rb
@@ -134,10 +131,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
134
131
  - !ruby/object:Gem::Version
135
132
  version: '0'
136
133
  requirements: []
137
- rubyforge_project: cm
134
+ rubyforge_project:
138
135
  rubygems_version: 2.4.5
139
136
  signing_key:
140
137
  specification_version: 4
141
- summary: Framework that provides a simple foundation for deploying and destroying
142
- enterprise ready cloud environments and components
138
+ summary: Pluggable cloud management framework that provides a simple foundation for
139
+ deploying and destroying enterprise ready cloud environments and components
143
140
  test_files: []