pipely-generators 0.1.1 → 0.1.2
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/bin/pipely-generate +2 -1
- data/lib/pipely/generators/version.rb +1 -1
- data/templates/.rspec +2 -0
- data/templates/spec/spec_helper.rb +14 -0
- data/templates/templates/pipeline.json.erb.tt +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5f3d5db18e81d2558bc8ef5c48042c077f7fec8
|
|
4
|
+
data.tar.gz: 89ea0bd40d72ef90a15124e109e55f6ce4e1078a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 674637c19c5f38b55637a804765e5d28b5ffb9324e100420a65006fa64a645bf3538bd654ca0e64df65bc5713ead3a3179e931831ff9d0ce750696fb43417491
|
|
7
|
+
data.tar.gz: 994d962f2ab97e497ef2bbce16ad7b42c5771b7b0fd8d1d624e69fae9900f070c8eb7a03aa89ec6c8e83091b78f8686f98b1f8ff89b22a401847ffef5f0509ac
|
data/bin/pipely-generate
CHANGED
|
@@ -22,8 +22,9 @@ class PipelyGenerator < Thor::Group
|
|
|
22
22
|
copy_file "Rakefile", "#{name}/Rakefile"
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
-
def
|
|
25
|
+
def create_dotfiles
|
|
26
26
|
copy_file ".gitignore", "#{name}/.gitignore"
|
|
27
|
+
copy_file ".rspec", "#{name}/.rspec"
|
|
27
28
|
end
|
|
28
29
|
|
|
29
30
|
def create_template
|
data/templates/.rspec
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
$LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'lib')
|
|
2
|
+
$LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'steps')
|
|
3
|
+
|
|
4
|
+
RSpec.configure do |config|
|
|
5
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
|
6
|
+
config.run_all_when_everything_filtered = true
|
|
7
|
+
config.filter_run :focus
|
|
8
|
+
|
|
9
|
+
# Run specs in random order to surface order dependencies. If you find an
|
|
10
|
+
# order dependency and want to debug it, you can fix the order by providing
|
|
11
|
+
# the seed, which is printed after each run.
|
|
12
|
+
# --seed 1234
|
|
13
|
+
config.order = 'random'
|
|
14
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pipely-generators
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Gillooly
|
|
@@ -98,11 +98,13 @@ files:
|
|
|
98
98
|
- lib/pipely/generators/version.rb
|
|
99
99
|
- pipely-generators.gemspec
|
|
100
100
|
- templates/.gitignore
|
|
101
|
+
- templates/.rspec
|
|
101
102
|
- templates/Gemfile
|
|
102
103
|
- templates/Rakefile
|
|
103
104
|
- templates/config/config.yml.tt
|
|
104
105
|
- templates/lib/template.rb
|
|
105
106
|
- templates/script/build_bootstrap
|
|
107
|
+
- templates/spec/spec_helper.rb
|
|
106
108
|
- templates/spec/template_spec.rb
|
|
107
109
|
- templates/steps/bootstrap_ec2.sh
|
|
108
110
|
- templates/steps/bootstrap_emr.sh
|