syncmedia 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 808961db3046221aa986979b79eedaae1cd2c9c9
4
+ data.tar.gz: dcedd0cdf69078e24bf6ab6eb86d3c12520f296c
5
+ SHA512:
6
+ metadata.gz: c45f550a913aa525c5f932456f7c165cbfba4702f83962656b1c34078e00ec583b30327151f08f3f26b6c0b30eff05ed2e1a8877ec894e5535b95cc17bda0dd0
7
+ data.tar.gz: 67a73200496b8559e80935868c46b1ebc7131ce1195933a13a0227f1aa712e8e74f73564b82d18b6583b2d5b1708cc1bebf45d16f8b41819f7cb9630b94afa8b
data/Gemfile ADDED
@@ -0,0 +1,2 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
@@ -0,0 +1,56 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ syncmedia (0.0.1)
5
+ gli (= 2.14.0)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ aruba (0.14.2)
11
+ childprocess (~> 0.5.6)
12
+ contracts (~> 0.9)
13
+ cucumber (>= 1.3.19)
14
+ ffi (~> 1.9.10)
15
+ rspec-expectations (>= 2.99)
16
+ thor (~> 0.19)
17
+ builder (3.2.2)
18
+ childprocess (0.5.9)
19
+ ffi (~> 1.0, >= 1.0.11)
20
+ contracts (0.14.0)
21
+ cucumber (2.4.0)
22
+ builder (>= 2.1.2)
23
+ cucumber-core (~> 1.5.0)
24
+ cucumber-wire (~> 0.0.1)
25
+ diff-lcs (>= 1.1.3)
26
+ gherkin (~> 4.0)
27
+ multi_json (>= 1.7.5, < 2.0)
28
+ multi_test (>= 0.1.2)
29
+ cucumber-core (1.5.0)
30
+ gherkin (~> 4.0)
31
+ cucumber-wire (0.0.1)
32
+ diff-lcs (1.2.5)
33
+ ffi (1.9.14)
34
+ gherkin (4.0.0)
35
+ gli (2.14.0)
36
+ multi_json (1.12.1)
37
+ multi_test (0.1.2)
38
+ rake (11.3.0)
39
+ rdoc (5.0.0)
40
+ rspec-expectations (3.5.0)
41
+ diff-lcs (>= 1.2.0, < 2.0)
42
+ rspec-support (~> 3.5.0)
43
+ rspec-support (3.5.0)
44
+ thor (0.19.4)
45
+
46
+ PLATFORMS
47
+ ruby
48
+
49
+ DEPENDENCIES
50
+ aruba
51
+ rake
52
+ rdoc
53
+ syncmedia!
54
+
55
+ BUNDLED WITH
56
+ 1.13.6
@@ -0,0 +1,6 @@
1
+ = syncmedia
2
+
3
+ Describe your project here
4
+
5
+ :include:syncmedia.rdoc
6
+
@@ -0,0 +1,44 @@
1
+ require 'rake/clean'
2
+ require 'rubygems'
3
+ require 'rubygems/package_task'
4
+ require 'rdoc/task'
5
+ require 'cucumber'
6
+ require 'cucumber/rake/task'
7
+ Rake::RDocTask.new do |rd|
8
+ rd.main = "README.rdoc"
9
+ rd.rdoc_files.include("README.rdoc","lib/**/*.rb","bin/**/*")
10
+ rd.title = 'Your application title'
11
+ end
12
+
13
+ spec = eval(File.read('syncmedia.gemspec'))
14
+
15
+ Gem::PackageTask.new(spec) do |pkg|
16
+ end
17
+ CUKE_RESULTS = 'results.html'
18
+ CLEAN << CUKE_RESULTS
19
+ desc 'Run features'
20
+ Cucumber::Rake::Task.new(:features) do |t|
21
+ opts = "features --format html -o #{CUKE_RESULTS} --format progress -x"
22
+ opts += " --tags #{ENV['TAGS']}" if ENV['TAGS']
23
+ t.cucumber_opts = opts
24
+ t.fork = false
25
+ end
26
+
27
+ desc 'Run features tagged as work-in-progress (@wip)'
28
+ Cucumber::Rake::Task.new('features:wip') do |t|
29
+ tag_opts = ' --tags ~@pending'
30
+ tag_opts = ' --tags @wip'
31
+ t.cucumber_opts = "features --format html -o #{CUKE_RESULTS} --format pretty -x -s#{tag_opts}"
32
+ t.fork = false
33
+ end
34
+
35
+ task :cucumber => :features
36
+ task 'cucumber:wip' => 'features:wip'
37
+ task :wip => 'features:wip'
38
+ require 'rake/testtask'
39
+ Rake::TestTask.new do |t|
40
+ t.libs << "test"
41
+ t.test_files = FileList['test/*_test.rb']
42
+ end
43
+
44
+ task :default => [:test,:features]
@@ -0,0 +1,70 @@
1
+ #!/usr/bin/env ruby
2
+ require 'gli'
3
+ begin # XXX: Remove this begin/rescue before distributing your app
4
+ require 'syncmedia'
5
+ rescue LoadError
6
+ STDERR.puts "In development, you need to use `bundle exec bin/syncmedia` to run your app"
7
+ STDERR.puts "At install-time, RubyGems will make sure lib, etc. are in the load path"
8
+ STDERR.puts "Feel free to remove this message from bin/syncmedia now"
9
+ exit 64
10
+ end
11
+
12
+ include GLI::App
13
+
14
+ program_desc 'Rsync media for any given project.'
15
+
16
+ version Syncmedia::VERSION
17
+
18
+ subcommand_option_handling :normal
19
+ arguments :strict
20
+
21
+ desc 'Describe some switch here'
22
+ switch [:s,:switch]
23
+
24
+ desc 'Describe some flag here'
25
+ default_value 'the default'
26
+ arg_name 'The name of the argument'
27
+ flag [:f,:flagname]
28
+
29
+ desc 'Describe sync here'
30
+ arg_name 'Describe arguments to sync here'
31
+ command :sync do |c|
32
+ c.desc 'Describe a switch to sync'
33
+ c.switch :s
34
+
35
+ c.desc 'Describe a flag to sync'
36
+ c.default_value 'default'
37
+ c.flag :f
38
+ c.action do |global_options,options,args|
39
+
40
+ # Your command logic here
41
+
42
+ # If you have any errors, just raise them
43
+ # raise "that command made no sense"
44
+
45
+ puts "sync command ran"
46
+ end
47
+ end
48
+
49
+ pre do |global,command,options,args|
50
+ # Pre logic here
51
+ # Return true to proceed; false to abort and not call the
52
+ # chosen command
53
+ # Use skips_pre before a command to skip this block
54
+ # on that command only
55
+ true
56
+ end
57
+
58
+ post do |global,command,options,args|
59
+ # Post logic here
60
+ # Use skips_post before a command to skip this
61
+ # block on that command only
62
+ end
63
+
64
+ on_error do |exception|
65
+ # Error logic here
66
+ # return false to skip default error handling
67
+ true
68
+ end
69
+
70
+ exit run(ARGV)
@@ -0,0 +1,6 @@
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
@@ -0,0 +1,15 @@
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
@@ -0,0 +1,8 @@
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 "syncmedia"
8
+ Then the exit status should be 0
@@ -0,0 +1,10 @@
1
+ require 'syncmedia/version.rb'
2
+
3
+ # Add requires for other files you add to your project here, so
4
+ # you just need to require this one file in your bin file
5
+
6
+ class SyncMedia
7
+ def self.hi
8
+ puts "Hello World"
9
+ end
10
+ end
@@ -0,0 +1,3 @@
1
+ module Syncmedia
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,24 @@
1
+ # Ensure we require the local version and not one we might have installed already
2
+ require File.join([File.dirname(__FILE__),'lib','syncmedia','version.rb'])
3
+ spec = Gem::Specification.new do |s|
4
+ s.name = 'syncmedia'
5
+ s.version = Syncmedia::VERSION
6
+ s.author = 'Brian Kelleher'
7
+ s.email = 'bkelleher4@gmail.com'
8
+ s.homepage = 'http://bkelleher.com'
9
+ s.platform = Gem::Platform::RUBY
10
+ s.summary = 'Rsync files in any proj structure'
11
+ s.license = 'Unlicense'
12
+ s.files = `git ls-files`.split("
13
+ ")
14
+ s.require_paths << 'lib'
15
+ s.has_rdoc = true
16
+ s.extra_rdoc_files = ['README.rdoc','syncmedia.rdoc']
17
+ s.rdoc_options << '--title' << 'syncmedia' << '--main' << 'README.rdoc' << '-ri'
18
+ s.bindir = 'bin'
19
+ s.executables << 'syncmedia'
20
+ s.add_development_dependency('rake', '~> 11')
21
+ s.add_development_dependency('rdoc', '~> 5')
22
+ s.add_development_dependency('aruba', '~> 0')
23
+ s.add_runtime_dependency('gli','2.14.0')
24
+ end
@@ -0,0 +1,5 @@
1
+ = syncmedia
2
+
3
+ Generate this with
4
+ syncmedia rdoc
5
+ After you have described your command line interface
@@ -0,0 +1,14 @@
1
+ require 'test_helper'
2
+
3
+ class DefaultTest < Test::Unit::TestCase
4
+
5
+ def setup
6
+ end
7
+
8
+ def teardown
9
+ end
10
+
11
+ def test_the_truth
12
+ assert true
13
+ end
14
+ end
@@ -0,0 +1,9 @@
1
+ require 'test/unit'
2
+
3
+ # Add test libraries you want to use here, e.g. mocha
4
+
5
+ class Test::Unit::TestCase
6
+
7
+ # Add global extensions to the test case class here
8
+
9
+ end
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: syncmedia
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Brian Kelleher
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-12-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '11'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '11'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '5'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '5'
41
+ - !ruby/object:Gem::Dependency
42
+ name: aruba
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: gli
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '='
60
+ - !ruby/object:Gem::Version
61
+ version: 2.14.0
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '='
67
+ - !ruby/object:Gem::Version
68
+ version: 2.14.0
69
+ description:
70
+ email: bkelleher4@gmail.com
71
+ executables:
72
+ - syncmedia
73
+ extensions: []
74
+ extra_rdoc_files:
75
+ - README.rdoc
76
+ - syncmedia.rdoc
77
+ files:
78
+ - Gemfile
79
+ - Gemfile.lock
80
+ - README.rdoc
81
+ - Rakefile
82
+ - bin/syncmedia
83
+ - features/step_definitions/syncmedia_steps.rb
84
+ - features/support/env.rb
85
+ - features/syncmedia.feature
86
+ - lib/syncmedia.rb
87
+ - lib/syncmedia/version.rb
88
+ - syncmedia.gemspec
89
+ - syncmedia.rdoc
90
+ - test/default_test.rb
91
+ - test/test_helper.rb
92
+ homepage: http://bkelleher.com
93
+ licenses:
94
+ - Unlicense
95
+ metadata: {}
96
+ post_install_message:
97
+ rdoc_options:
98
+ - "--title"
99
+ - syncmedia
100
+ - "--main"
101
+ - README.rdoc
102
+ - "-ri"
103
+ require_paths:
104
+ - lib
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubyforge_project:
118
+ rubygems_version: 2.6.6
119
+ signing_key:
120
+ specification_version: 4
121
+ summary: Rsync files in any proj structure
122
+ test_files: []