Skip to content

Commit 3620caa

Browse files
committed
aks:added Gemfile; updated Gemspec, Rakefile.
1 parent 8bee64c commit 3620caa

12 files changed

+260
-356
lines changed

.document

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
lib/**/*.rb
2+
bin/*
3+
-
4+
features/**/*.feature
5+
LICENSE.txt

.gitignore

+45-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,49 @@
1-
*.gem
2-
*.rbc
3-
.bundle
4-
.config
1+
# rcov generated
52
coverage
6-
InstalledFiles
7-
lib/bundler/man
8-
pkg
3+
coverage.data
4+
5+
# rdoc generated
96
rdoc
10-
spec/reports
11-
test/tmp
12-
test/version_tmp
13-
tmp
147

15-
# YARD artifacts
8+
# yard generated
9+
doc
1610
.yardoc
17-
_yardoc
18-
doc/
11+
12+
# bundler
13+
.bundle
14+
15+
# jeweler generated
16+
pkg
17+
18+
# Have editor/IDE/OS specific files you need to ignore? Consider using a global gitignore:
19+
#
20+
# * Create a file at ~/.gitignore
21+
# * Include files you want ignored
22+
# * Run: git config --global core.excludesfile ~/.gitignore
23+
#
24+
# After doing this, these files will be ignored in all your git projects,
25+
# saving you from having to 'pollute' every project you touch with them
26+
#
27+
# 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)
28+
#
29+
# For MacOS:
30+
#
31+
#.DS_Store
32+
33+
# For TextMate
34+
#*.tmproj
35+
#tmtags
36+
37+
# For emacs:
38+
#*~
39+
#\#*
40+
#.\#*
41+
42+
# For vim:
43+
#*.swp
44+
45+
# For redcar:
46+
#.redcar
47+
48+
# For rubinius:
49+
#*.rbc

Gemfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
source "http://rubygems.org"
2+
# Add dependencies required to use your gem here.
3+
# Example:
4+
# gem "activesupport", ">= 2.3.5"
5+
6+
# Add dependencies to develop your gem here.
7+
# Include everything needed to run rake, tests, features, etc.
8+
group :development do
9+
gem "shoulda"
10+
gem "rdoc", "~> 3.12"
11+
gem "bundler", "~> 1.0"
12+
gem "jeweler", "~> 2.0.1"
13+
gem "simplecov", ">= 0"
14+
end

Gemfile.lock

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
GEM
2+
remote: http://rubygems.org/
3+
specs:
4+
activesupport (4.0.3)
5+
i18n (~> 0.6, >= 0.6.4)
6+
minitest (~> 4.2)
7+
multi_json (~> 1.3)
8+
thread_safe (~> 0.1)
9+
tzinfo (~> 0.3.37)
10+
addressable (2.3.5)
11+
atomic (1.1.15)
12+
builder (3.2.2)
13+
descendants_tracker (0.0.3)
14+
docile (1.1.3)
15+
faraday (0.9.0)
16+
multipart-post (>= 1.2, < 3)
17+
git (1.2.6)
18+
github_api (0.11.3)
19+
addressable (~> 2.3)
20+
descendants_tracker (~> 0.0.1)
21+
faraday (~> 0.8, < 0.10)
22+
hashie (>= 1.2)
23+
multi_json (>= 1.7.5, < 2.0)
24+
nokogiri (~> 1.6.0)
25+
oauth2
26+
hashie (2.0.5)
27+
highline (1.6.21)
28+
i18n (0.6.9)
29+
jeweler (2.0.1)
30+
builder
31+
bundler (>= 1.0)
32+
git (>= 1.2.5)
33+
github_api
34+
highline (>= 1.6.15)
35+
nokogiri (>= 1.5.10)
36+
rake
37+
rdoc
38+
json (1.8.1)
39+
jwt (0.1.11)
40+
multi_json (>= 1.5)
41+
mini_portile (0.5.2)
42+
minitest (4.7.5)
43+
multi_json (1.8.4)
44+
multi_xml (0.5.5)
45+
multipart-post (2.0.0)
46+
nokogiri (1.6.1)
47+
mini_portile (~> 0.5.0)
48+
oauth2 (0.9.3)
49+
faraday (>= 0.8, < 0.10)
50+
jwt (~> 0.1.8)
51+
multi_json (~> 1.3)
52+
multi_xml (~> 0.5)
53+
rack (~> 1.2)
54+
rack (1.5.2)
55+
rake (10.1.1)
56+
rdoc (3.12.2)
57+
json (~> 1.4)
58+
shoulda (3.5.0)
59+
shoulda-context (~> 1.0, >= 1.0.1)
60+
shoulda-matchers (>= 1.4.1, < 3.0)
61+
shoulda-context (1.1.6)
62+
shoulda-matchers (2.5.0)
63+
activesupport (>= 3.0.0)
64+
simplecov (0.8.2)
65+
docile (~> 1.1.0)
66+
multi_json
67+
simplecov-html (~> 0.8.0)
68+
simplecov-html (0.8.0)
69+
thread_safe (0.2.0)
70+
atomic (>= 1.1.7, < 2)
71+
tzinfo (0.3.38)
72+
73+
PLATFORMS
74+
ruby
75+
76+
DEPENDENCIES
77+
bundler (~> 1.0)
78+
jeweler (~> 2.0.1)
79+
rdoc (~> 3.12)
80+
shoulda
81+
simplecov

Gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Gem::Specification.new do |s|
22
s.name = 'cmd-utils'
3-
s.version = '1.1.0'
4-
s.date = '2014-02-27'
3+
s.version = '1.1.1'
4+
s.date = '2014-03-01'
55
s.summary = "Utilities for ruby command line scripts"
66
s.description = "Some handy utilities for writing command line scripts in ruby."
77
s.author = "Alan K. Stebbens"
88
s.email = '[email protected]'
99
s.files = ["lib/cmd-utils.rb", "lib/lookup.rb", "lib/ssh-utils.rb"]
1010
s.test_files = ['tests/test-cmd-utils.rb', 'tests/test-lookup.rb']
1111
s.homepage = 'http://bitbucket.org/aks_/cmd-utils'
12-
s.license = 'GPL-2'
12+
s.license = 'MIT'
1313
end

0 commit comments

Comments
 (0)