Skip to content

Commit d1886cd

Browse files
committed
create rails dirs and rspec dirs if in Gemfile
1 parent a95a858 commit d1886cd

File tree

4 files changed

+44
-6
lines changed

4 files changed

+44
-6
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "pks"
5-
version = "0.2.17"
5+
version = "0.2.18"
66
edition = "2021"
77
description = "Welcome! Please see https://github.com/rubyatscale/pks for more information!"
88
license = "MIT"

src/packs/creator.rs

+31-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,22 @@ pub fn create(
3535
)?;
3636

3737
write_pack_to_disk(&new_pack)?;
38-
std::fs::create_dir_all(new_pack_path.join("app/public/"))
39-
.context("failed to create app/public")?;
38+
let pack_name =
39+
&name.split('/').last().context("unable to find pack name")?;
40+
std::fs::create_dir_all(new_pack_path.join("app/public/").join(pack_name))
41+
.context(format!("failed to create app/public/{}", &name))?;
42+
std::fs::create_dir_all(
43+
new_pack_path.join("app/services/").join(pack_name),
44+
)
45+
.context(format!("failed to create app/services/{}", &name))?;
46+
if is_rails(configuration) {
47+
std::fs::create_dir_all(new_pack_path.join("app/controllers/"))
48+
.context("failed to create app/controllers")?;
49+
}
50+
if is_rspec(configuration) {
51+
std::fs::create_dir_all(new_pack_path.join("spec"))
52+
.context("failed to create spec")?;
53+
}
4054

4155
let readme = readme(name);
4256
let readme_path = &new_pack_path.join("README.md");
@@ -65,3 +79,18 @@ See https://github.com/rubyatscale/pks#readme for more info!",
6579
pack_name
6680
)
6781
}
82+
83+
fn is_rails(configuration: &Configuration) -> bool {
84+
gemfile_contains(configuration, "rails")
85+
}
86+
87+
fn is_rspec(configuration: &Configuration) -> bool {
88+
gemfile_contains(configuration, "rspec")
89+
}
90+
91+
fn gemfile_contains(configuration: &Configuration, val: &str) -> bool {
92+
match std::fs::read_to_string(configuration.absolute_root.join("Gemfile")) {
93+
Ok(as_string) => as_string.contains(val),
94+
_ => false,
95+
}
96+
}

tests/create_test.rs

+9-3
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,15 @@ fn test_create() -> Result<(), Box<dyn Error>> {
2424
assert!(actual.contains("enforce_dependencies: true"));
2525
assert!(actual.contains("enforce_privacy: true"));
2626
assert!(actual.contains("enforce_layers: true"));
27-
assert!(
28-
Path::new("tests/fixtures/simple_app/packs/foobar/app/public").exists()
29-
);
27+
assert!(Path::new(
28+
"tests/fixtures/simple_app/packs/foobar/app/public/foobar"
29+
)
30+
.exists());
31+
assert!(Path::new(
32+
"tests/fixtures/simple_app/packs/foobar/app/services/foobar"
33+
)
34+
.exists());
35+
assert!(Path::new("tests/fixtures/simple_app/packs/foobar/spec").exists());
3036

3137
let expected_readme = String::from("\
3238
Welcome to `packs/foobar`!

tests/fixtures/simple_app/Gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
gem 'rails', '7.1.3.4', github: 'rails', branch: '7-1-stable'
2+
3+
gem 'rspec'

0 commit comments

Comments
 (0)