designshell 0.0.7 → 0.0.8

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.
@@ -1,25 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
- #
3
- # This file was generated by Bundler.
4
- #
5
- # The application 'designshelld' is installed as part of a gem, and
6
- # this file is here to facilitate running it.
7
- #
8
2
 
9
- # This was then hacked so that it could be called direct from authorized_keys command=...
10
-
11
- #require 'pathname'
12
- #
13
- ##ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../Gemfile",Pathname.new(__FILE__).realpath) # was before rubygems
14
3
  #require 'rubygems'
15
- #ds_dir = (spec = Gem::Specification.find_by_name('designshell')) && spec.gem_dir
16
- #ENV['BUNDLE_GEMFILE'] = File.expand_path("Gemfile",Pathname.new(ds_dir).realpath)
17
- #require 'bundler/setup'
18
- #
19
- ##load Gem.bin_path('designshell', 'designshelld')
20
-
21
- require 'rubygems'
22
- gem 'designshell'
4
+ #gem 'designshell'
23
5
  require 'designshellserver'
24
6
 
25
7
  #trap("SIGHUP") { abort }
@@ -0,0 +1,10 @@
1
+ #!/bin/bash
2
+ source /usr/local/rvm/environments/ruby-1.8.7-p371
3
+ GEMFILE=~/.designshelld-wrapper.gemfile
4
+ cat << 'EOF' > $GEMFILE
5
+ source :rubygems
6
+ gem 'designshell'
7
+ EOF
8
+ BUNDLE_GEMFILE=$GEMFILE bundle exec designshelld
9
+ rm $GEMFILE
10
+ rm $GEMFILE.'.lock'
@@ -1,3 +1,3 @@
1
1
  module DesignShell
2
- VERSION = '0.0.7'
2
+ VERSION = '0.0.8'
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: 17
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 7
10
- version: 0.0.7
9
+ - 8
10
+ version: 0.0.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Gary McGhee
@@ -275,8 +275,6 @@ description: All-round workflow tool for designers. Enables designers to comfort
275
275
  email: contact@buzzware.com.au
276
276
  executables:
277
277
  - designshelld
278
- - designshelld.example.sh
279
- - designshelld.example2.sh
280
278
  - ds
281
279
  extensions: []
282
280
 
@@ -284,15 +282,11 @@ extra_rdoc_files: []
284
282
 
285
283
  files:
286
284
  - bin/designshelld
287
- - bin/designshelld.example.sh
288
- - bin/designshelld.example2.sh
289
285
  - bin/ds
290
286
  - designshell.gemspec
291
287
  - designshell.iml
292
288
  - designshell.rdoc
293
- - features/designshell.feature
294
- - features/step_definitions/designshell_steps.rb
295
- - features/support/env.rb
289
+ - designshelld-wrapper-example.sh
296
290
  - Gemfile
297
291
  - lib/buzzcore_mods.rb
298
292
  - lib/designshell/context.rb
@@ -361,9 +355,6 @@ signing_key:
361
355
  specification_version: 3
362
356
  summary: DesignShell is the shell for designers
363
357
  test_files:
364
- - features/designshell.feature
365
- - features/step_definitions/designshell_steps.rb
366
- - features/support/env.rb
367
358
  - spec/build_spec.rb
368
359
  - spec/client_to_server_spec.rb
369
360
  - spec/designshell_context_spec.rb
@@ -1,8 +0,0 @@
1
- #!/bin/bash
2
- #DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
3
- #cd $DIR
4
- source /usr/local/rvm/environments/ruby-1.8.7-p371
5
- bundle exec designshelld
6
- #cd /home/dashd/designshell
7
- #bundle exec bin/designshelld
8
-
@@ -1,3 +0,0 @@
1
- #!/bin/bash
2
- cd /home/dashd/designshell
3
- bundle exec bin/designshelld
@@ -1,8 +0,0 @@
1
- Feature: My bootstrapped app kinda works
2
- In order to get going on coding my awesome app
3
- I want to have aruba and cucumber setup
4
- So I don't have to do it myself
5
-
6
- Scenario: App just runs
7
- When I get help for "ds"
8
- Then the exit status should be 0
@@ -1,6 +0,0 @@
1
- When /^I get help for "([^"]*)"$/ do |app_name|
2
- @app_name = app_name
3
- step %(I run `#{app_name} help`)
4
- end
5
-
6
- # Add more step definitions here
@@ -1,15 +0,0 @@
1
- #require 'aruba/cucumber'
2
- #
3
- #ENV['PATH'] = "#{File.expand_path(File.dirname(__FILE__) + '/../../bin')}#{File::PATH_SEPARATOR}#{ENV['PATH']}"
4
- #LIB_DIR = File.join(File.expand_path(File.dirname(__FILE__)),'..','..','lib')
5
- #
6
- #Before do
7
- # # Using "announce" causes massive warnings on 1.9.2
8
- # @puts = true
9
- # @original_rubylib = ENV['RUBYLIB']
10
- # ENV['RUBYLIB'] = LIB_DIR + File::PATH_SEPARATOR + ENV['RUBYLIB'].to_s
11
- #end
12
- #
13
- #After do
14
- # ENV['RUBYLIB'] = @original_rubylib
15
- #end