smooster 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MzY4ODQyYzM0ZWE2ZjhhYjFiZmZlZGI3MWY5ZDU3OTYzOWM0MGM1Yw==
5
+ data.tar.gz: !binary |-
6
+ MWVhNDJhY2NmY2E4ZjJjMTlhNmJiMWU0NzBmMGFhYzM2ZWY2Y2QxNA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ MmVhNTMxODZjYzAxZjgzYzU0YmQwMjM2ZGNhN2YwZDQxN2JjOGM4OWM0YTBj
10
+ M2E3ZWVhYjUzMDk4MDU1MWZmMGMwNGMwNmViNWFlZjQwNDIzMWVlZDkwZWFk
11
+ MWM3OGM1MjUwNWVkYTRhMzc4MDY4OGFjN2M5ODJlODA0YjYwYWY=
12
+ data.tar.gz: !binary |-
13
+ YWU1MzhiMzZhNzEwZTM2OTNhYjQ3NGE5NWJiMDJkMmQwZDkzMGJkMjI5YTZm
14
+ ZGYwZGY4NjZhZTUzMTNlZTVhODA0ZDNjMGU0ZDYwYTUyYTE2OWE3MDZjNGMy
15
+ MWM3MTZhMDk4N2YyZDQ5MjFjMzBlMDcxN2NmZTA0ZTVhZDk0MWI=
data/.gitignore ADDED
@@ -0,0 +1,24 @@
1
+ *.rbc
2
+ *.sassc
3
+ .sass-cache
4
+ .DS_Store
5
+ .idea
6
+ /log/*
7
+ /tmp/*
8
+ /db/*.sqlite3
9
+ /spec/tmp/*
10
+ .zeus.sock
11
+ /.bundle/
12
+ /.yardoc
13
+ /Gemfile.lock
14
+ /_yardoc/
15
+ /coverage/
16
+ /doc/
17
+ /pkg/
18
+ /spec/reports/
19
+ /tmp/
20
+ *.bundle
21
+ *.so
22
+ *.o
23
+ *.a
24
+ mkmf.log
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## v0.0.1
2
+
3
+ * initial release
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in smooster.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Sebastian Maier
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # smooster command line tool
2
+
3
+ This is a ruby gem
4
+
5
+ ## Installation
6
+
7
+ $ gem install smooster
8
+
9
+ ## Usage
10
+
11
+ Type shelly in terminal for usage info
12
+
13
+ shelly
14
+
15
+ ## Running tests
16
+
17
+ bundle exec rake
18
+
19
+ ## Contributing
20
+
21
+ 1. Fork it ( https://github.com/[my-github-username]/smooster/fork )
22
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
23
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
24
+ 4. Push to the branch (`git push origin my-new-feature`)
25
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task default: :spec
8
+
9
+
10
+
data/bin/smooster ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'smooster/cli/executable'
4
+
5
+
6
+ executable = Smooster::Cli::Executable.new(ARGV)
7
+ executable.start
8
+
@@ -0,0 +1,14 @@
1
+ require "smooster/version"
2
+ require "thor"
3
+
4
+ module Smooster
5
+ module Cli
6
+
7
+ class Executable < Thor
8
+ def hello
9
+ puts "Hello world!"
10
+ end
11
+ end
12
+
13
+ end
14
+ end
@@ -0,0 +1,3 @@
1
+ module Smooster
2
+ VERSION = "0.0.1"
3
+ end
data/lib/smooster.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "smooster/version"
2
+
3
+ module Smooster
4
+ # Your code goes here...
5
+ end
data/smooster.gemspec ADDED
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'smooster/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "smooster"
8
+ spec.version = Smooster::VERSION
9
+ spec.authors = ["Sebastian Maier"]
10
+ spec.email = ["sebastian.maier@smooster.com"]
11
+ spec.summary = %q{smooster command line tool writen in ruby.}
12
+ spec.description = %q{smooster command line tool writen in ruby.}
13
+ spec.homepage = "http://www.smooster.com"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = ['smooster']
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_dependency("thor")
22
+
23
+ spec.add_development_dependency "bundler", "~> 1.7"
24
+ spec.add_development_dependency "rake", "~> 10.0"
25
+ spec.add_development_dependency "rspec"
26
+ end
@@ -0,0 +1,10 @@
1
+ require 'spec_helper'
2
+ require 'smooster'
3
+ include Smooster
4
+
5
+ describe Smooster do
6
+ it "should do what its told" do
7
+ expect(true).to be true
8
+ end
9
+
10
+ end
@@ -0,0 +1 @@
1
+ require 'smooster'
metadata ADDED
@@ -0,0 +1,117 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: smooster
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Sebastian Maier
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-12-13 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ! '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ! '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: smooster command line tool writen in ruby.
70
+ email:
71
+ - sebastian.maier@smooster.com
72
+ executables:
73
+ - smooster
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - .gitignore
78
+ - .rspec
79
+ - CHANGELOG.md
80
+ - Gemfile
81
+ - LICENSE.txt
82
+ - README.md
83
+ - Rakefile
84
+ - bin/smooster
85
+ - lib/smooster.rb
86
+ - lib/smooster/cli/executable.rb
87
+ - lib/smooster/version.rb
88
+ - smooster.gemspec
89
+ - spec/smooster/smooster_spec.rb
90
+ - spec/spec_helper.rb
91
+ homepage: http://www.smooster.com
92
+ licenses:
93
+ - MIT
94
+ metadata: {}
95
+ post_install_message:
96
+ rdoc_options: []
97
+ require_paths:
98
+ - lib
99
+ required_ruby_version: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ! '>='
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ required_rubygems_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ! '>='
107
+ - !ruby/object:Gem::Version
108
+ version: '0'
109
+ requirements: []
110
+ rubyforge_project:
111
+ rubygems_version: 2.0.6
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: smooster command line tool writen in ruby.
115
+ test_files:
116
+ - spec/smooster/smooster_spec.rb
117
+ - spec/spec_helper.rb