uncut 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (9) hide show
  1. data/.gitignore +44 -0
  2. data/Gemfile +6 -0
  3. data/Gemfile.lock +51 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.md +1 -0
  6. data/Rakefile +26 -0
  7. data/bin/uncut +22 -0
  8. data/bin/uncut.rb +11 -0
  9. metadata +78 -0
data/.gitignore ADDED
@@ -0,0 +1,44 @@
1
+ blitz-*
2
+ bin
3
+ # rcov generated
4
+ coverage
5
+
6
+ # rdoc generated
7
+ rdoc
8
+
9
+ # yard generated
10
+ doc
11
+ .yardoc
12
+
13
+ # bundler
14
+ .bundle
15
+
16
+ # jeweler generated
17
+ pkg
18
+
19
+ # Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
20
+ #
21
+ # * Create a file at ~/.gitignore
22
+ # * Include files you want ignored
23
+ # * Run: git config --global core.excludesfile ~/.gitignore
24
+ #
25
+ # After doing this, these files will be ignored in all your git projects,
26
+ # saving you from having to 'pollute' every project you touch with them
27
+ #
28
+ # Not sure what to needs to be ignored for particular editors/OSes? Here's some ideas to get you started. (Remember, remove the leading # of the line)
29
+ #
30
+ # For MacOS:
31
+ #
32
+ #.DS_Store
33
+ #
34
+ # For TextMate
35
+ #*.tmproj
36
+ #tmtags
37
+ #
38
+ # For emacs:
39
+ #*~
40
+ #\#*
41
+ #.\#*
42
+ #
43
+ # For vim:
44
+ #*.swp
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source "http://rubygems.org"
2
+
3
+ #gem 'term-ansicolor'
4
+ gem 'rake'
5
+ gem 'bundler'
6
+
data/Gemfile.lock ADDED
@@ -0,0 +1,51 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ couchrest (1.0.1)
5
+ json (>= 1.4.6)
6
+ mime-types (>= 1.15)
7
+ rest-client (>= 1.5.1)
8
+ diff-lcs (1.1.2)
9
+ git (1.2.5)
10
+ hexy (0.1.1)
11
+ jeweler (1.5.1)
12
+ bundler (~> 1.0.0)
13
+ git (>= 1.2.5)
14
+ rake
15
+ json (1.5.1)
16
+ json_pure (1.5.1)
17
+ mime-types (1.16)
18
+ multi_json (1.0.4)
19
+ rake (0.9.0)
20
+ rest-client (1.6.1)
21
+ mime-types (>= 1.16)
22
+ rspec (2.6.0)
23
+ rspec-core (~> 2.6.0)
24
+ rspec-expectations (~> 2.6.0)
25
+ rspec-mocks (~> 2.6.0)
26
+ rspec-core (2.6.4)
27
+ rspec-expectations (2.6.0)
28
+ diff-lcs (~> 1.1.2)
29
+ rspec-mocks (2.6.0)
30
+ simplecov (0.5.4)
31
+ multi_json (~> 1.0.3)
32
+ simplecov-html (~> 0.5.3)
33
+ simplecov-html (0.5.3)
34
+ term-ansicolor (1.0.5)
35
+
36
+ PLATFORMS
37
+ ruby
38
+
39
+ DEPENDENCIES
40
+ bundler (~> 1.0.0)
41
+ couchrest (~> 1.0.1)
42
+ hexy (~> 0.1.1)
43
+ jeweler (~> 1.5.1)
44
+ json (~> 1.5.1)
45
+ json_pure (~> 1.5.1)
46
+ rake (= 0.9.0)
47
+ rest-client (~> 1.6.1)
48
+ rspec (~> 2.6)
49
+ rspec-core (~> 2.6)
50
+ simplecov (>= 0.4.2)
51
+ term-ansicolor (= 1.0.5)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Mu Dynamics
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1 @@
1
+ yeah
data/Rakefile ADDED
@@ -0,0 +1,26 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), 'lib'))
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+
13
+ require 'rake'
14
+ require 'jeweler'
15
+ require 'uncut'
16
+
17
+
18
+ require 'rspec/core/rake_task'
19
+ desc "Run all the specs"
20
+ RSpec::Core::RakeTask.new do |t|
21
+ t.pattern = ENV['file'] || 'spec/**/*_spec.rb'
22
+ t.rspec_opts = ["--color"]
23
+ end
24
+
25
+ task :default => :build
26
+
data/bin/uncut ADDED
@@ -0,0 +1,22 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ #lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
4
+ #$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
5
+
6
+ #require 'uncut'
7
+
8
+ argv = ARGV.dup
9
+ ARGV.clear
10
+ url = argv.shift.strip
11
+ dir = '/tmp/uncut'
12
+ system "rm -rf #{dir} && mkdir -p #{dir}"
13
+ system "git clone #{url} #{dir}"
14
+ system "cd #{dir} && bundle install"
15
+ gemName = `find #{dir} -iname *gemspec -exec basename {} \\;`
16
+ buildOut = `cd #{dir} && gem build #{gemName}`
17
+ gemBuildName = /.*File: (.*)/.match(buildOut)[1]
18
+ system "cd #{dir} && gem install ./#{gemBuildName}"
19
+ system "rm -rf #{dir}"
20
+ puts "Done"
21
+ #Uncut.run cmd, argv
22
+
data/bin/uncut.rb ADDED
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
4
+ $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
5
+
6
+ require 'uncut'
7
+
8
+ argv = ARGV.dup
9
+ ARGV.clear
10
+ cmd = argv.shift.strip rescue 'help'
11
+ Uncut.run cmd, argv
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: uncut
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Raphael Miranda
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-04-21 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: &70185590913700 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - =
20
+ - !ruby/object:Gem::Version
21
+ version: 0.9.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70185590913700
25
+ - !ruby/object:Gem::Dependency
26
+ name: bundler
27
+ requirement: &70185590913220 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ~>
31
+ - !ruby/object:Gem::Version
32
+ version: 1.0.0
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *70185590913220
36
+ description: does stuff
37
+ email: support@ema.il
38
+ executables:
39
+ - uncut
40
+ extensions: []
41
+ extra_rdoc_files:
42
+ - LICENSE.txt
43
+ - README.md
44
+ files:
45
+ - .gitignore
46
+ - Gemfile
47
+ - Gemfile.lock
48
+ - LICENSE.txt
49
+ - README.md
50
+ - Rakefile
51
+ - bin/uncut
52
+ - bin/uncut.rb
53
+ homepage: http://blitz.io
54
+ licenses:
55
+ - MIT
56
+ post_install_message:
57
+ rdoc_options: []
58
+ require_paths:
59
+ - lib
60
+ required_ruby_version: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ none: false
68
+ requirements:
69
+ - - ! '>='
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubyforge_project:
74
+ rubygems_version: 1.8.10
75
+ signing_key:
76
+ specification_version: 3
77
+ summary: does stuff
78
+ test_files: []