dotman 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: 029ccdbd5f8735d588b07d1b231dbbdcfa52bcf5
4
+ data.tar.gz: 942ab9df1f7fac57a7aecc289070eea870c6347c
5
+ SHA512:
6
+ metadata.gz: 143f6aa72b1e6a9ee3fdfcf1155a39a19136bfc1807866654c5ac96416d475890ab909968e227cc83edcbf0c914721a5103fa9cd1a1c4f790ba3644afaf60e15
7
+ data.tar.gz: 3bd1891733832b7717afe57ccd093349b4d91bb777efebb3891ce4b6a32c49bfaedb810799368da024396cf1d0f7b188f90fa67490ede57b45fa37ac23e87ee5
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ *.swp
19
+ *.swo
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm 2.0.0@dotman --create
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in dotman.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Tim
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.
@@ -0,0 +1,29 @@
1
+ # Dotman
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'dotman'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install dotman
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'dotman/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "dotman"
8
+ spec.version = Dotman::VERSION
9
+ spec.authors = ["Tim"]
10
+ spec.email = ["timbinous@gmail.com"]
11
+ spec.description = %q{Dotfiles Manager}
12
+ spec.summary = %q{Use this utility to manage your dotfiles and others who may use the same login user as yourself}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+ spec.add_development_dependency "fakefs"
25
+ end
@@ -0,0 +1,9 @@
1
+ require "dotman/version"
2
+ require 'git'
3
+ module Dotman
4
+ def self.ensure_dotman_folder_exists
5
+ unless File.directory?("#{ENV['HOME']}/.dotman")
6
+ FileUtils.mkdir("#{ENV['HOME']}/.dotman")
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,3 @@
1
+ module Dotman
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,17 @@
1
+ class Git
2
+ def self.klone(git_location)
3
+ # clone_repository(git_location)
4
+ end
5
+
6
+ def self.folder_name(git_location)
7
+ folder_name = git_location.scan(/[^:]+[\/]?dotfile[s?]{1}/).first.gsub('/', '_')
8
+ end
9
+
10
+ def self.clone_repository(git_location)
11
+ if (File.directory?("#{ENV['HOME']}/.dotman/#{folder_name(git_location)}"))
12
+ STDOUT.puts("Dotfiles were already cloned")
13
+ else
14
+ system "git clone #{git_location} #{ENV['HOME']}/.dotman/#{folder_name(git_location)}"
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+ describe Dotman do
3
+ describe "::ensure_dotman_folder_exists" do
4
+ context "$HOME.dotman/ does not exist" do
5
+ it "creates the dotman directory" do
6
+ File.stub(:directory?).and_return(true)
7
+ FileUtils.should_receive(:mkdir).with("$HOME/.dotman")
8
+ Dotman.ensure_dotman_folder_exists
9
+ end
10
+ end
11
+
12
+ context "$HOME.dotman/ already exists" do
13
+ it "does nothing" do
14
+ File.stub(:directory?).and_return(false)
15
+ FileUtils.should_not_receive(:mkdir).with("$HOME/.dotman")
16
+ Dotman.ensure_dotman_folder_exists
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,9 @@
1
+ require 'spec_helper'
2
+ describe Git do
3
+ describe ".folder_name" do
4
+ it "returns the folder name of the git repo" do
5
+ Git.folder_name('git@github.com:Timbinous/dotfiles.git').should == "Timbinous_dotfiles"
6
+ end
7
+ end
8
+
9
+ end
@@ -0,0 +1,20 @@
1
+ require 'spec_helper'
2
+ describe Dotman do
3
+ context "dotman folder doesn't exist on the folder" do
4
+ before :all do
5
+ FileUtils.rm_rf("#{ENV['HOME']}/.dotman")
6
+ end
7
+
8
+ it "creates a new folder" do
9
+ File.directory?("#{ENV['HOME']}/.dotman").should == false
10
+ Dotman.ensure_dotman_folder_exists
11
+ File.directory?("#{ENV['HOME']}/.dotman").should == true
12
+ end
13
+
14
+ after :each do
15
+ FileUtils.rm_rf("#{ENV['HOME']}/.dotman")
16
+ end
17
+
18
+ end
19
+
20
+ end
@@ -0,0 +1,22 @@
1
+ #look into fakefs more
2
+ #require 'fakefs/spec_helpers'
3
+ #
4
+ #
5
+ require 'spec_helper'
6
+ describe Git do
7
+ before :all do
8
+ Dotman.ensure_dotman_folder_exists
9
+ FileUtils.rm_rf("#{ENV['HOME']}/.dotman/Timbinous_dotfiles")
10
+ end
11
+
12
+ context "cloning a new repo" do
13
+ before :each do
14
+ end
15
+ it "clones to the $HOME/.dotman folder" do
16
+ expect {
17
+ Git.clone_repository("git@github.com:Timbinous/dotfiles.git") }.
18
+ to change { File.directory?("#{ENV['HOME']}/.dotman/Timbinous_dotfiles") }.to true
19
+ end
20
+ end
21
+
22
+ end
@@ -0,0 +1 @@
1
+ require_relative '../lib/dotman.rb'
metadata ADDED
@@ -0,0 +1,121 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dotman
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tim
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-05-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
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: fakefs
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: Dotfiles Manager
70
+ email:
71
+ - timbinous@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - .rvmrc
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - dotman.gemspec
83
+ - lib/dotman.rb
84
+ - lib/dotman/version.rb
85
+ - lib/git.rb
86
+ - spec/dotman_spec.rb
87
+ - spec/git_spec.rb
88
+ - spec/integration/dotman_integration_spec.rb
89
+ - spec/integration/git_integration_spec.rb
90
+ - spec/spec_helper.rb
91
+ homepage: ''
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.3
112
+ signing_key:
113
+ specification_version: 4
114
+ summary: Use this utility to manage your dotfiles and others who may use the same
115
+ login user as yourself
116
+ test_files:
117
+ - spec/dotman_spec.rb
118
+ - spec/git_spec.rb
119
+ - spec/integration/dotman_integration_spec.rb
120
+ - spec/integration/git_integration_spec.rb
121
+ - spec/spec_helper.rb