dicker 0.0.1 → 0.0.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/.DS_Store +0 -0
- data/Gemfile +1 -0
- data/lib/.DS_Store +0 -0
- data/lib/dicker/build.rb +15 -0
- data/lib/dicker/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8bc684d8ba49a0120d363d387342ee789ad0f3a6
|
|
4
|
+
data.tar.gz: 48fb96293d9ffdddcdeee9549aa7baf6b4c67ba4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8bf7a657d180542694ca38043478cfe8cb4832bcf15f40bf28096862a6e361948303754abd3ddd4172551641303a99897ae68f5fe37427caccb4edeabbbf91ef
|
|
7
|
+
data.tar.gz: 4836d54d808096135ce29ae0f5e34dec36e8c2db91a64ef3a344bd513b3267c2e95f62e96961d665185f182a501e1ba4b142e7070685eaac9c18d73dd17fdb0e
|
data/.DS_Store
ADDED
|
Binary file
|
data/Gemfile
CHANGED
data/lib/.DS_Store
ADDED
|
Binary file
|
data/lib/dicker/build.rb
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
class Dicker::Build
|
|
2
|
+
def initialize(title)
|
|
3
|
+
@project = title
|
|
4
|
+
end
|
|
5
|
+
|
|
6
|
+
def static
|
|
7
|
+
output = system("git clone git@github.com:banksy89/curtiss.git #{@project}")
|
|
8
|
+
return output
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def dynamic
|
|
12
|
+
output = system("git clone git@github.com:StormCreative/pegisis.git #{@project}")
|
|
13
|
+
return output
|
|
14
|
+
end
|
|
15
|
+
end
|
data/lib/dicker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dicker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ashley Banks
|
|
@@ -46,6 +46,7 @@ executables:
|
|
|
46
46
|
extensions: []
|
|
47
47
|
extra_rdoc_files: []
|
|
48
48
|
files:
|
|
49
|
+
- .DS_Store
|
|
49
50
|
- .gitignore
|
|
50
51
|
- Gemfile
|
|
51
52
|
- LICENSE.txt
|
|
@@ -53,7 +54,9 @@ files:
|
|
|
53
54
|
- Rakefile
|
|
54
55
|
- bin/dicker
|
|
55
56
|
- dicker.gemspec
|
|
57
|
+
- lib/.DS_Store
|
|
56
58
|
- lib/dicker.rb
|
|
59
|
+
- lib/dicker/build.rb
|
|
57
60
|
- lib/dicker/version.rb
|
|
58
61
|
homepage: ''
|
|
59
62
|
licenses:
|