ruby_concourse 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b1fb06f6e78d4c1fe202b7da73218807dd7ba4d5
4
+ data.tar.gz: 47c19d40c943f601fb099e7ee61da691bb876e88
5
+ SHA512:
6
+ metadata.gz: 9578e89affd8748535ed4891f6dcb1ec0627a7c856a5a7a0a658d2413f292ae15aa8c4d7d31ddb896d0a119acf5e5b5d20a2df129046778c2114866150873d71
7
+ data.tar.gz: 79659f9ac6c425332a826b7a9634262a2a389194035354d0011dd46c4667849d0f30bc5b8051f2929c4e0a86bdbc60145a2d1057fff92fa4321cc1f85b824a99
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.14.3
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at pawel.bardzinski@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in ruby_concourse.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # ruby_concourse
2
+ Gem for Concourse manipulation
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "ruby_concourse"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,3 @@
1
+ module RubyConcourse
2
+ VERSION = "0.1.1"
3
+ end
@@ -0,0 +1,109 @@
1
+ require "ruby_concourse/version"
2
+ require 'json'
3
+ require 'mechanize'
4
+
5
+
6
+ module RubyConcourse
7
+
8
+ class Fly
9
+
10
+ def initialize(env_directory_path)
11
+ @env_directory_path = env_directory_path
12
+ end
13
+
14
+ def show_environments
15
+ puts 'Available Environments:'
16
+ puts '-----------------------'
17
+ files = Dir.glob("#{@env_directory_path}/*.json").each
18
+ files.each do |file|
19
+ filename = File.basename(file).sub('.json', '')
20
+ puts filename
21
+ end
22
+ puts ''
23
+ end
24
+
25
+ def load_variables(env)
26
+ return JSON.parse(File.read("#{@env_directory_path}/#{env}.json"))
27
+ end
28
+
29
+ def sync_concourse(target)
30
+ print "Updating Concourse: "
31
+ print `fly -t #{target} sync`
32
+ end
33
+
34
+ def pause_job(env, team, pipeline, target)
35
+ command = `fly -t #{env}-#{team} pause-job -j #{pipeline}/#{target}`
36
+ puts command
37
+ end
38
+
39
+ def unpause_job(env, team, pipeline, target)
40
+ command = `fly -t #{env}-#{team} unpause-job -j #{pipeline}/#{target}`
41
+ puts command
42
+ end
43
+
44
+ def show_pipelines(env, team)
45
+ var = load_variables(env)
46
+ target = "#{env}-#{team}"
47
+ pipelines = `fly -t #{target} pipelines`.split(pattern="\n")
48
+ puts ''
49
+ puts 'Available Pipelines'
50
+ puts '-------------------'
51
+ pipelines.each do |pipeline|
52
+ info = pipeline.split(pattern=" ")
53
+ puts "Name: #{info[0]}"
54
+ puts "Paused: #{info[1]}"
55
+ puts "Public: #{info[2]}"
56
+ puts ''
57
+ end
58
+ end
59
+
60
+ def update_pipeline(env, team, pipeline, target, credentials_file, pipeline_configuration_file)
61
+ command = `fly -t #{env}-#{team} validate-pipeline --config #{pipeline_configuration_file}`
62
+ if command == "looks good\n"
63
+ command = `echo y | fly -t #{env}-#{team} set-pipeline --config #{pipeline_configuration_file} --pipeline #{pipeline} --load-vars-from #{credentials_file}`
64
+ if command.is_a? String && command.empty?
65
+ puts "Updating Pipeline failed - some of the credentials might be missing"
66
+ else
67
+ puts "Pipeline updated!"
68
+ end
69
+ else
70
+ puts "Updating Pipeline failed - the #{pipeline_configuration_file} is invalid"
71
+ end
72
+ end
73
+
74
+
75
+ private
76
+
77
+ def web_login(env, concourse_login_url)
78
+ var = load_variables(env)
79
+ username = var['username']
80
+ password = var['password']
81
+ agent = Mechanize.new
82
+ page = agent.get(concourse_login_url)
83
+ login_form = page.form
84
+ login_form.field_with(:name => 'username').value = username
85
+ login_form.field_with(:name => 'password' ).value = password
86
+ output = login_form.click_button.body
87
+ if output.include?('success')
88
+ puts 'login successful.'
89
+ else
90
+ puts 'login failed.'
91
+ end
92
+ end
93
+
94
+ def login(env, team)
95
+ var = load_variables(env)
96
+ target = "#{env}-#{team}"
97
+ command = "fly -t #{target} login -n #{team} -c #{var['url']}"
98
+ IO.popen(command, "r+") do |pipe|
99
+ pipe.gets
100
+ pipe.gets
101
+ concourse_login_url = pipe.gets.gsub(/\s+/, "")
102
+ print "Attempting login to #{concourse_login_url}: "
103
+ web_login(env, concourse_login_url)
104
+ sync_concourse(target)
105
+ end
106
+ end
107
+
108
+ end
109
+ end
@@ -0,0 +1,35 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ruby_concourse/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "ruby_concourse"
8
+ spec.version = RubyConcourse::VERSION
9
+ spec.authors = ["Pawel Bardzinski"]
10
+ spec.email = ["pawel.bardzinski@csaa.com"]
11
+
12
+ spec.summary = "Ruby => concourse gem"
13
+ spec.description = "The gem allows to use fly commands"
14
+ spec.homepage = "https://github.com/aaa-ncnu-ie/ruby_concourse"
15
+
16
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
17
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
18
+ if spec.respond_to?(:metadata)
19
+ spec.metadata['allowed_push_host'] = "https://rubygems.org"
20
+ else
21
+ raise "RubyGems 2.0 or newer is required to protect against " \
22
+ "public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files`.split("\n")
26
+
27
+ spec.bindir = "exe"
28
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
29
+ spec.require_paths = ["lib"]
30
+
31
+ spec.add_development_dependency "bundler", "~> 1.14"
32
+ spec.add_development_dependency "rake", "~> 10.0"
33
+ spec.add_development_dependency "rspec", "~> 3.0"
34
+ spec.add_development_dependency "mechanize", '~> 2.7', '>= 2.7.4'
35
+ end
@@ -0,0 +1,11 @@
1
+ require "spec_helper"
2
+
3
+ RSpec.describe RubyConcourse do
4
+ it "has a version number" do
5
+ expect(RubyConcourse::VERSION).not_to be nil
6
+ end
7
+
8
+ it "does something useful" do
9
+ expect(false).to eq(true)
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ require "bundler/setup"
2
+ require "ruby_concourse"
3
+
4
+ RSpec.configure do |config|
5
+ # Enable flags like --only-failures and --next-failure
6
+ config.example_status_persistence_file_path = ".rspec_status"
7
+
8
+ config.expect_with :rspec do |c|
9
+ c.syntax = :expect
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,120 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby_concourse
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Pawel Bardzinski
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-02-15 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.14'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.14'
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
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: mechanize
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2.7'
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 2.7.4
65
+ type: :development
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - "~>"
70
+ - !ruby/object:Gem::Version
71
+ version: '2.7'
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 2.7.4
75
+ description: The gem allows to use fly commands
76
+ email:
77
+ - pawel.bardzinski@csaa.com
78
+ executables: []
79
+ extensions: []
80
+ extra_rdoc_files: []
81
+ files:
82
+ - ".gitignore"
83
+ - ".rspec"
84
+ - ".travis.yml"
85
+ - CODE_OF_CONDUCT.md
86
+ - Gemfile
87
+ - README.md
88
+ - Rakefile
89
+ - bin/console
90
+ - bin/setup
91
+ - lib/ruby_concourse.rb
92
+ - lib/ruby_concourse/version.rb
93
+ - ruby_concourse.gemspec
94
+ - spec/ruby_concourse_spec.rb
95
+ - spec/spec_helper.rb
96
+ homepage: https://github.com/aaa-ncnu-ie/ruby_concourse
97
+ licenses: []
98
+ metadata:
99
+ allowed_push_host: https://rubygems.org
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.6.10
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Ruby => concourse gem
120
+ test_files: []