app_copyr 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ea33f9914aedbc4ae8c1f6bcafe5fe502c1d870
4
- data.tar.gz: ebed59ec2f228b48a314dfaf1114be170ee070f5
3
+ metadata.gz: acd488732f87c5e671ba93facd3f6f7dab09ac59
4
+ data.tar.gz: 1351cdb9143c7481f09102c00738f57888e0f325
5
5
  SHA512:
6
- metadata.gz: 0870590861d00380a08c59a6188cba476028291c084f20a961fdeab2c6ad2eed75398c9906d257b91e0099c7df931038865efbd00efe381d94da61aedc7a1a46
7
- data.tar.gz: 1cc4af39ec984fe7c4c31277c7d691d6b5779158e309d279a5a8ed4727b8967384618c1eabffa8ea19b64433dee91c150e58b2ff8c84644514c1bfe5f1ee2bcc
6
+ metadata.gz: b472b90536c729fe4c4e2adf1426797ab7b13163003394426f170584e4f54431921a9a172cd3bf8a6afee4f9221d26df1974048adadb38c46827097a2388db41
7
+ data.tar.gz: 67d2f54eb3a78536fa0b3e35076cb8fb2b9133581a927d47d5a6ea9fd7d89c6cd43a334ffd0acaec5144291f71c3bfb5579390343d33f58babf4485f8a39e969
data/README.md CHANGED
@@ -20,6 +20,10 @@ Commands:
20
20
 
21
21
  ```
22
22
 
23
+ ## Testing
24
+
25
+ ```ruby test/app_copyr_test.rb```
26
+
23
27
  ## Contributing
24
28
 
25
29
  1. Fork it ( https://github.com/memikequinn/app_copyr/fork )
File without changes
@@ -1,3 +1,3 @@
1
1
  module AppCopyr
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -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.3
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: 2014-12-19 00:00:00.000000000 Z
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/copyr_test.rb
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/copyr_test.rb
133
+ - test/app_copyr_test.rb
134
134
  - test/test_classes.rb