designshell 0.0.4 → 0.0.5

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.
data/designshell.gemspec CHANGED
@@ -11,10 +11,16 @@ spec = Gem::Specification.new do |s|
11
11
  s.homepage = 'http://github.com/buzzware/designshell'
12
12
  s.platform = Gem::Platform::RUBY
13
13
  # Add your other files here if you make them
14
- s.files = `git ls-files`.split($\)
14
+ #s.files = `git ls-files`.split($\)
15
+ ignores = File.readlines(".gitignore").grep(/\S+/).map {|line| line.chomp }
16
+ dotfiles = [".gitignore"]
17
+ s.files = Dir["**/*"].reject {|f| File.directory?(f) || ignores.any? {|i| File.fnmatch(i, f) } } + dotfiles
18
+ #sss = ['Gemfile']
19
+ #s.files = sss
15
20
  s.bindir = 'bin'
16
21
  s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
22
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
23
+ #s.test_files = s.files.grep(/^spec\//)
18
24
  #s.has_rdoc = true
19
25
  #s.extra_rdoc_files = ['README.rdoc','designshell.rdoc']
20
26
  #s.rdoc_options << '--title' << 'designshell' << '--main' << 'README.rdoc' << '-ri'
data/lib/designshell.rb CHANGED
@@ -1,4 +1,4 @@
1
- require 'designshell/version'
1
+ #require 'designshell/version'
2
2
  require 'osx_keychain'
3
3
  require 'gli'
4
4
  require 'git'
@@ -1,3 +1,3 @@
1
1
  module DesignShell
2
- VERSION = '0.0.4'
2
+ VERSION = '0.0.5'
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: designshell
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gary McGhee
@@ -283,23 +283,6 @@ extensions: []
283
283
  extra_rdoc_files: []
284
284
 
285
285
  files:
286
- - .gitignore
287
- - .idea/.name
288
- - .idea/.rakeTasks
289
- - .idea/codeStyleSettings.xml
290
- - .idea/compiler.xml
291
- - .idea/copyright/profiles_settings.xml
292
- - .idea/encodings.xml
293
- - .idea/misc.xml
294
- - .idea/modules.xml
295
- - .idea/scopes/scope_settings.xml
296
- - .idea/vcs.xml
297
- - Gemfile
298
- - Gemfile.lock
299
- - LICENSE
300
- - README.md
301
- - README.rdoc
302
- - Rakefile
303
286
  - bin/designshelld
304
287
  - bin/designshelld.example.sh
305
288
  - bin/designshelld.example2.sh
@@ -310,8 +293,8 @@ files:
310
293
  - features/designshell.feature
311
294
  - features/step_definitions/designshell_steps.rb
312
295
  - features/support/env.rb
296
+ - Gemfile
313
297
  - lib/buzzcore_mods.rb
314
- - lib/designshell.rb
315
298
  - lib/designshell/context.rb
316
299
  - lib/designshell/core.rb
317
300
  - lib/designshell/deploy_plan.rb
@@ -321,16 +304,21 @@ files:
321
304
  - lib/designshell/site_client.rb
322
305
  - lib/designshell/utils.rb
323
306
  - lib/designshell/version.rb
324
- - lib/designshellserver.rb
307
+ - lib/designshell.rb
325
308
  - lib/designshellserver/command.rb
326
309
  - lib/designshellserver/core.rb
327
- - spec/KeyChain_spec.rb
328
- - spec/RepoServer_spec.rb
329
- - spec/Repo_spec.rb
310
+ - lib/designshellserver.rb
311
+ - LICENSE
312
+ - Rakefile
313
+ - README.md
314
+ - README.rdoc
330
315
  - spec/build_spec.rb
331
316
  - spec/client_to_server_spec.rb
332
317
  - spec/designshell_context_spec.rb
333
318
  - spec/designshell_core_spec.rb
319
+ - spec/KeyChain_spec.rb
320
+ - spec/Repo_spec.rb
321
+ - spec/RepoServer_spec.rb
334
322
  - spec/rspec_helper.rb
335
323
  - spec/server/deploy_spec.rb
336
324
  - spec/server/dummy_spec.rb
@@ -338,6 +326,7 @@ files:
338
326
  - test/default_test.rb
339
327
  - test/test_helper.rb
340
328
  - testmart.iml
329
+ - .gitignore
341
330
  homepage: http://github.com/buzzware/designshell
342
331
  licenses: []
343
332
 
@@ -375,13 +364,13 @@ test_files:
375
364
  - features/designshell.feature
376
365
  - features/step_definitions/designshell_steps.rb
377
366
  - features/support/env.rb
378
- - spec/KeyChain_spec.rb
379
- - spec/RepoServer_spec.rb
380
- - spec/Repo_spec.rb
381
367
  - spec/build_spec.rb
382
368
  - spec/client_to_server_spec.rb
383
369
  - spec/designshell_context_spec.rb
384
370
  - spec/designshell_core_spec.rb
371
+ - spec/KeyChain_spec.rb
372
+ - spec/Repo_spec.rb
373
+ - spec/RepoServer_spec.rb
385
374
  - spec/rspec_helper.rb
386
375
  - spec/server/deploy_spec.rb
387
376
  - spec/server/dummy_spec.rb
data/.idea/.name DELETED
@@ -1 +0,0 @@
1
- designshell
data/.idea/.rakeTasks DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Settings><!--This file was automatically generated by Ruby plugin.
3
- You are allowed to:
4
- 1. Remove rake task
5
- 2. Add existing rake tasks
6
- To add existing rake tasks automatically delete this file and reload the project.
7
- --><RakeGroup description="" fullCmd="" taksId="rake" /></Settings>
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectCodeStyleSettingsManager">
4
- <option name="PER_PROJECT_SETTINGS">
5
- <value>
6
- <XML>
7
- <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
8
- </XML>
9
- </value>
10
- </option>
11
- </component>
12
- </project>
13
-
data/.idea/compiler.xml DELETED
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="CompilerConfiguration">
4
- <option name="DEFAULT_COMPILER" value="Javac" />
5
- <resourceExtensions />
6
- <wildcardResourcePatterns>
7
- <entry name="?*.properties" />
8
- <entry name="?*.xml" />
9
- <entry name="?*.gif" />
10
- <entry name="?*.png" />
11
- <entry name="?*.jpeg" />
12
- <entry name="?*.jpg" />
13
- <entry name="?*.html" />
14
- <entry name="?*.dtd" />
15
- <entry name="?*.tld" />
16
- <entry name="?*.ftl" />
17
- </wildcardResourcePatterns>
18
- <annotationProcessing>
19
- <profile default="true" name="Default" enabled="false">
20
- <processorPath useClasspath="true" />
21
- </profile>
22
- </annotationProcessing>
23
- </component>
24
- </project>
25
-
@@ -1,5 +0,0 @@
1
- <component name="CopyrightManager">
2
- <settings default="">
3
- <module2copyright />
4
- </settings>
5
- </component>
data/.idea/encodings.xml DELETED
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
4
- </project>
5
-
data/.idea/misc.xml DELETED
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="IdProvider" IDEtalkID="103CE2DF1B7BFC2B4246041ABE713922" />
4
- <component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" assert-keyword="true" jdk-15="true" project-jdk-name="RVM: ruby-1.8.7-p358 [dash]" project-jdk-type="RUBY_SDK">
5
- <output url="file://$PROJECT_DIR$/out" />
6
- </component>
7
- <component name="SvnBranchConfigurationManager">
8
- <option name="mySupportsUserInfoFilter" value="true" />
9
- </component>
10
- </project>
11
-
data/.idea/modules.xml DELETED
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$REPOS$/Buzzware/13/dash-dev/dash-dev.iml" filepath="$REPOS$/Buzzware/13/dash-dev/dash-dev.iml" />
6
- <module fileurl="file://$PROJECT_DIR$/designshell.iml" filepath="$PROJECT_DIR$/designshell.iml" />
7
- <module fileurl="file://$PROJECT_DIR$/testmart.iml" filepath="$PROJECT_DIR$/testmart.iml" />
8
- </modules>
9
- </component>
10
- </project>
11
-
@@ -1,5 +0,0 @@
1
- <component name="DependencyValidationManager">
2
- <state>
3
- <option name="SKIP_IMPORT_STATEMENTS" value="false" />
4
- </state>
5
- </component>
data/.idea/vcs.xml DELETED
@@ -1,9 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="" vcs="Git" />
5
- <mapping directory="$REPOS$/Buzzware/13/dash-dev" vcs="svn" />
6
- <mapping directory="$REPOS$/testmart" vcs="Git" />
7
- </component>
8
- </project>
9
-
data/Gemfile.lock DELETED
@@ -1,196 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- designshell (0.0.1)
5
- POpen4
6
- bitbucket_rest_api
7
- buzzcore
8
- git
9
- gli (= 2.5.0)
10
- highline
11
- json
12
- middleman
13
- net-ssh
14
- net_dav
15
- osx_keychain
16
- termios
17
-
18
- GEM
19
- remote: http://rubygems.org/
20
- specs:
21
- POpen4 (0.1.4)
22
- Platform (>= 0.4.0)
23
- open4
24
- Platform (0.4.0)
25
- RubyInline (3.12.0)
26
- ZenTest (~> 4.3)
27
- ZenTest (4.8.3)
28
- activesupport (3.2.11)
29
- i18n (~> 0.6)
30
- multi_json (~> 1.0)
31
- aruba (0.5.1)
32
- childprocess (~> 0.3.6)
33
- cucumber (>= 1.1.1)
34
- rspec-expectations (>= 2.7.0)
35
- bitbucket_rest_api (0.1.1)
36
- faraday (~> 0.8.1)
37
- faraday_middleware (~> 0.8.1)
38
- hashie (~> 1.2.0)
39
- multi_json (~> 1.3)
40
- nokogiri (~> 1.5.2)
41
- simple_oauth
42
- builder (3.1.4)
43
- buzzcore (0.6.4)
44
- POpen4
45
- childprocess (0.3.6)
46
- ffi (~> 1.0, >= 1.0.6)
47
- chunky_png (1.2.7)
48
- coffee-script (2.2.0)
49
- coffee-script-source
50
- execjs
51
- coffee-script-source (1.3.3)
52
- columnize (0.3.6)
53
- compass (0.12.2)
54
- chunky_png (~> 1.2)
55
- fssm (>= 0.2.7)
56
- sass (~> 3.1)
57
- cucumber (1.2.1)
58
- builder (>= 2.1.2)
59
- diff-lcs (>= 1.1.3)
60
- gherkin (~> 2.11.0)
61
- json (>= 1.4.6)
62
- diff-lcs (1.1.3)
63
- execjs (1.4.0)
64
- multi_json (~> 1.0)
65
- faraday (0.8.4)
66
- multipart-post (~> 1.1)
67
- faraday_middleware (0.8.8)
68
- faraday (>= 0.7.4, < 0.9)
69
- ffi (1.3.1)
70
- fssm (0.2.9)
71
- gherkin (2.11.5)
72
- json (>= 1.4.6)
73
- git (1.2.5)
74
- gli (2.5.0)
75
- haml (3.1.7)
76
- hashie (1.2.0)
77
- highline (1.6.15)
78
- hike (1.2.1)
79
- http_router (0.10.2)
80
- rack (>= 1.0.0)
81
- url_mount (~> 0.2.1)
82
- i18n (0.6.1)
83
- json (1.7.6)
84
- linecache (0.46)
85
- rbx-require-relative (> 0.0.4)
86
- listen (0.5.3)
87
- maruku (0.6.1)
88
- syntax (>= 1.0.0)
89
- middleman (3.0.9)
90
- middleman-core (= 3.0.9)
91
- middleman-more (= 3.0.9)
92
- middleman-sprockets (~> 3.0.6)
93
- middleman-core (3.0.9)
94
- activesupport (~> 3.2.6)
95
- bundler (~> 1.1)
96
- listen (~> 0.5.2)
97
- rack (= 1.4.1)
98
- rack-test (~> 0.6.1)
99
- rb-fsevent (~> 0.9.1)
100
- rb-inotify (~> 0.8.8)
101
- thor (~> 0.15.4)
102
- tilt (~> 1.3.1)
103
- middleman-more (3.0.9)
104
- coffee-script (~> 2.2.0)
105
- coffee-script-source (~> 1.3.3)
106
- compass (>= 0.12.2)
107
- execjs (~> 1.4.0)
108
- haml (>= 3.1.6)
109
- i18n (~> 0.6.0)
110
- maruku (~> 0.6.0)
111
- middleman-core (= 3.0.9)
112
- padrino-helpers (= 0.10.7)
113
- sass (>= 3.1.20)
114
- uglifier (~> 1.2.6)
115
- middleman-sprockets (3.0.6)
116
- middleman-more (>= 3.0.1)
117
- sprockets (~> 2.1, < 2.5)
118
- sprockets-sass (~> 0.9.0)
119
- multi_json (1.5.0)
120
- multipart-post (1.1.5)
121
- net-ssh (2.6.3)
122
- net_dav (0.5.0)
123
- nokogiri (>= 1.3.0)
124
- nokogiri (1.5.6)
125
- open4 (1.3.0)
126
- osx_keychain (1.0.0)
127
- RubyInline (~> 3)
128
- padrino-core (0.10.7)
129
- activesupport (~> 3.2.0)
130
- http_router (~> 0.10.2)
131
- sinatra (~> 1.3.1)
132
- thor (~> 0.15.2)
133
- tilt (~> 1.3.0)
134
- padrino-helpers (0.10.7)
135
- i18n (~> 0.6)
136
- padrino-core (= 0.10.7)
137
- rack (1.4.1)
138
- rack-protection (1.3.2)
139
- rack
140
- rack-test (0.6.2)
141
- rack (>= 1.0)
142
- rake (10.0.3)
143
- rb-fsevent (0.9.3)
144
- rb-inotify (0.8.8)
145
- ffi (>= 0.5.0)
146
- rbx-require-relative (0.0.9)
147
- rdoc (3.12)
148
- json (~> 1.4)
149
- rspec (2.12.0)
150
- rspec-core (~> 2.12.0)
151
- rspec-expectations (~> 2.12.0)
152
- rspec-mocks (~> 2.12.0)
153
- rspec-core (2.12.2)
154
- rspec-expectations (2.12.1)
155
- diff-lcs (~> 1.1.3)
156
- rspec-mocks (2.12.1)
157
- ruby-debug (0.10.4)
158
- columnize (>= 0.1)
159
- ruby-debug-base (~> 0.10.4.0)
160
- ruby-debug-base (0.10.4)
161
- linecache (>= 0.3)
162
- sass (3.2.5)
163
- simple_oauth (0.2.0)
164
- sinatra (1.3.3)
165
- rack (~> 1.3, >= 1.3.6)
166
- rack-protection (~> 1.2)
167
- tilt (~> 1.3, >= 1.3.3)
168
- sprockets (2.4.5)
169
- hike (~> 1.2)
170
- multi_json (~> 1.0)
171
- rack (~> 1.0)
172
- tilt (~> 1.1, != 1.3.0)
173
- sprockets-sass (0.9.1)
174
- sprockets (~> 2.0)
175
- tilt (~> 1.1)
176
- syntax (1.0.0)
177
- termios (0.9.4)
178
- thor (0.15.4)
179
- tilt (1.3.3)
180
- uglifier (1.2.7)
181
- execjs (>= 0.3.0)
182
- multi_json (~> 1.3)
183
- url_mount (0.2.1)
184
- rack
185
-
186
- PLATFORMS
187
- ruby
188
-
189
- DEPENDENCIES
190
- aruba
191
- designshell!
192
- rake
193
- rdoc
194
- rspec
195
- rspec-core
196
- ruby-debug