app_copyr 0.0.3 → 0.0.4
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/README.md +4 -0
- data/bin/{copyr → app-copyr} +0 -0
- data/lib/app_copyr/version.rb +1 -1
- data/test/{copyr_test.rb → app_copyr_test.rb} +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: acd488732f87c5e671ba93facd3f6f7dab09ac59
|
|
4
|
+
data.tar.gz: 1351cdb9143c7481f09102c00738f57888e0f325
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b472b90536c729fe4c4e2adf1426797ab7b13163003394426f170584e4f54431921a9a172cd3bf8a6afee4f9221d26df1974048adadb38c46827097a2388db41
|
|
7
|
+
data.tar.gz: 67d2f54eb3a78536fa0b3e35076cb8fb2b9133581a927d47d5a6ea9fd7d89c6cd43a334ffd0acaec5144291f71c3bfb5579390343d33f58babf4485f8a39e969
|
data/README.md
CHANGED
data/bin/{copyr → app-copyr}
RENAMED
|
File without changes
|
data/lib/app_copyr/version.rb
CHANGED
|
@@ -38,7 +38,7 @@ describe AppCopyr do
|
|
|
38
38
|
it 'should run through completely without error' do
|
|
39
39
|
`rails new #{$final_test_dir}`
|
|
40
40
|
# Capture output to stdout, otherwise it goes to stderr, works on a mac...
|
|
41
|
-
output = `bin/copyr copy --source #{$final_test_dir} --dest #{$final_test_out_dir} > /dev/stdout 2>&1`
|
|
41
|
+
output = `bin/app-copyr copy --source #{$final_test_dir} --dest #{$final_test_out_dir} > /dev/stdout 2>&1`
|
|
42
42
|
refute_match(/No value provided for required options/, output)
|
|
43
43
|
end
|
|
44
44
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: app_copyr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mike Quinn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -90,7 +90,7 @@ description: Will some day have more options like the ability to add/remove stuf
|
|
|
90
90
|
email:
|
|
91
91
|
- mquinn@qualcomm.com
|
|
92
92
|
executables:
|
|
93
|
-
- copyr
|
|
93
|
+
- app-copyr
|
|
94
94
|
extensions: []
|
|
95
95
|
extra_rdoc_files: []
|
|
96
96
|
files:
|
|
@@ -100,10 +100,10 @@ files:
|
|
|
100
100
|
- README.md
|
|
101
101
|
- Rakefile
|
|
102
102
|
- app_copyr.gemspec
|
|
103
|
-
- bin/copyr
|
|
103
|
+
- bin/app-copyr
|
|
104
104
|
- lib/app_copyr.rb
|
|
105
105
|
- lib/app_copyr/version.rb
|
|
106
|
-
- test/
|
|
106
|
+
- test/app_copyr_test.rb
|
|
107
107
|
- test/test_classes.rb
|
|
108
108
|
homepage: https://github.com/memikequinn/app_copyr
|
|
109
109
|
licenses:
|
|
@@ -130,5 +130,5 @@ signing_key:
|
|
|
130
130
|
specification_version: 4
|
|
131
131
|
summary: Copies a functional app that you like, to a new app name
|
|
132
132
|
test_files:
|
|
133
|
-
- test/
|
|
133
|
+
- test/app_copyr_test.rb
|
|
134
134
|
- test/test_classes.rb
|