cody 0.7.2 → 0.7.3
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +2 -0
- data/lib/cody/init.rb +0 -2
- data/lib/cody/version.rb +1 -1
- data/lib/template/project/buildspec.yml +2 -22
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1523d8ce4c22cf41cecba80623b9c473e49ff97d4b981972d5e277dde195da05
|
|
4
|
+
data.tar.gz: 6deb1ea47229b7471c0f7de73f5d7f21d40aabb64560297b6e320e4a3e85fe9b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6051044570a30f31b94ce57bd6a2a514ffd669cf0371ef30c8e14e4b50f57a6f6cc02d126a74d34a0aa2048b43f11f4370419fbaed93ee955cc61a973200227c
|
|
7
|
+
data.tar.gz: a45a69611e76dd64d4dd9aac1c11598c1629c666a403f630f095f49cf6d84d407d556d32bf57912d4d487e2b2d58894cc1452b2b1b9976bc22f4bb90fd76d7ce
|
data/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.7.3]
|
|
7
|
+
- cleanup starter buildspec.yml
|
|
8
|
+
|
|
6
9
|
## [0.7.2]
|
|
7
10
|
- add mfa support for normal IAM user
|
|
8
11
|
|
data/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|

|
|
8
8
|
[](http://badge.fury.io/rb/cody)
|
|
9
9
|
|
|
10
|
+
[](https://www.boltops.com)
|
|
11
|
+
|
|
10
12
|
Cody lets you create a AWS CodeBuild projects with a beautiful DSL.
|
|
11
13
|
|
|
12
14
|
The documentation site is at: [cody.run](https://cody.run/)
|
data/lib/cody/init.rb
CHANGED
|
@@ -34,7 +34,6 @@ module Cody
|
|
|
34
34
|
end
|
|
35
35
|
|
|
36
36
|
def copy_top_level
|
|
37
|
-
puts "Initialize .cody top-level folder"
|
|
38
37
|
dest = ".cody"
|
|
39
38
|
excludes = %w[.git]
|
|
40
39
|
if @options[:mode] == "light"
|
|
@@ -48,7 +47,6 @@ module Cody
|
|
|
48
47
|
end
|
|
49
48
|
|
|
50
49
|
def copy_project
|
|
51
|
-
puts "Initialize codebuild project in .cody"
|
|
52
50
|
dest = ".cody"
|
|
53
51
|
dest = "#{dest}/#{@options[:type]}" if @options[:type]
|
|
54
52
|
|
data/lib/cody/version.rb
CHANGED
|
@@ -1,28 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
# Build Specification Reference for CodeBuild: https://docs.aws.amazon.com/codebuild/latest/userguide/build-spec-ref.html
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
# Edit to fit your needs
|
|
3
|
+
version: 0.2
|
|
5
4
|
|
|
6
5
|
phases:
|
|
7
|
-
install:
|
|
8
|
-
commands:
|
|
9
|
-
# - uname -a
|
|
10
|
-
# - pwd
|
|
11
|
-
# - ls
|
|
12
|
-
# - env | sort
|
|
13
|
-
# - ls /etc/*release*
|
|
14
|
-
# - cat /etc/*release*
|
|
15
|
-
# - whoami
|
|
16
|
-
# - bundle
|
|
17
6
|
build:
|
|
18
7
|
commands:
|
|
19
|
-
- echo Build started on `date`
|
|
20
8
|
- uptime
|
|
21
|
-
# - bundle exec rspec
|
|
22
|
-
# cache:
|
|
23
|
-
# paths:
|
|
24
|
-
# - /usr/local/bundle
|
|
25
|
-
# - /usr/local/lib/ruby/gems/2.5.0
|
|
26
|
-
# artifacts:
|
|
27
|
-
# files:
|
|
28
|
-
# - result.txt
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cody
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-11-
|
|
11
|
+
date: 2019-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|