woof_util 0.0.16 → 0.0.18

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
+ NjgwYzUwMTcwMDU2YTkxZmM4NmRlZTkzODJkZTI2NjhmM2Y1NjYxYw==
5
+ data.tar.gz: !binary |-
6
+ OWQyN2EyMjc4ZmM1MTNlMmQxNTI2MzBmMGZlMmFhZjU1NzRmYWZlMA==
7
+ !binary "U0hBNTEy":
8
+ metadata.gz: !binary |-
9
+ MDYxNDgwN2UwNzIwZGVmOWVjM2U0NTg4ODdlNzNmYzMzMjU2NWQxZTdhMmNl
10
+ OTIwMTkwNGZkMGMzNTRkMjg2YTZlZTRlNGQzZWM0OTEwZGFhZDJiY2Q1Yzlm
11
+ NWJkNDVlMzRhZWIxMDY3ZGI2MzE2NWFlOTM4MGFkMmRkMTQyNmQ=
12
+ data.tar.gz: !binary |-
13
+ ODU2N2E2NDAyZTRlMmVmMmE3ODg0YzExZTE3Yjk1NjQyNzZhZTc5NTI0Yzc1
14
+ ZTU1MGI1NTRiNWE5Zjk2NTY4YWFlMDk1ZWQ5M2QzMDc1NTRhNTc2MDkzMjIz
15
+ MGU4NTM0ZjE4ZWJiNDkxZWU2NThlMzFlNmUyNjlhYTlhMjVjMDc=
data/Gemfile CHANGED
@@ -1,3 +1,7 @@
1
1
  source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
+
5
+ gem "excon"
6
+ gem "highline"
7
+ gem "rake"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- woof_util (0.0.16)
4
+ woof_util (0.0.18)
5
5
  excon (~> 0.16.10)
6
6
  highline (~> 1.6.15)
7
7
 
@@ -10,9 +10,13 @@ GEM
10
10
  specs:
11
11
  excon (0.16.10)
12
12
  highline (1.6.15)
13
+ rake (10.1.0)
13
14
 
14
15
  PLATFORMS
15
16
  ruby
16
17
 
17
18
  DEPENDENCIES
19
+ excon
20
+ highline
21
+ rake
18
22
  woof_util!
data/README.md ADDED
@@ -0,0 +1,13 @@
1
+ Some random minor util code I like.
2
+
3
+ The gem stuff:
4
+
5
+ * `rake gem:rubygems_login` - log me in to rubygems
6
+
7
+ * `rake gem:bump_version` - increments patch level; will also re-run
8
+ `bundle install` with whatever's committed to the current checkout
9
+ * `rake gem:build_the_gem` - creates the gem artifact
10
+ * `rake gem:push_to_github` - just does `git push github master`
11
+ * `rake gem:push_to_rubygems` - uploads to rubygems
12
+
13
+ * `rake gem:rubygems_logout` - log me out of rubygems
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.16
1
+ 0.0.18
@@ -27,7 +27,9 @@ module WoofUtil
27
27
  $stdout.write stashdata
28
28
 
29
29
  File.open("VERSION", "w") {|f| f.write "#{vstring}\n" }
30
+ system "bundle install"
30
31
  system "git add VERSION"
32
+ system "git add Gemfile.lock"
31
33
  system "git commit -m versionbump_to_#{vstring}"
32
34
  system "git stash pop" unless stashdata =~ /No local changes to save/
33
35
  puts "new: #{vstring}"
data/woof_util.gemspec CHANGED
@@ -6,6 +6,7 @@ Gem::Specification.new do |s|
6
6
  s.description = 'catchment basin for misc crap'
7
7
  s.authors = ["Tom Maher"]
8
8
  s.email = "tmaher@tursom.org"
9
+ s.license = "MIT"
9
10
  s.files = `git ls-files`.split("\n")
10
11
  s.add_dependency "excon", "~> 0.16.10"
11
12
  s.add_dependency "highline", "~> 1.6.15"
metadata CHANGED
@@ -1,103 +1,80 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: woof_util
3
- version: !ruby/object:Gem::Version
4
- hash: 63
5
- prerelease:
6
- segments:
7
- - 0
8
- - 0
9
- - 16
10
- version: 0.0.16
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.18
11
5
  platform: ruby
12
- authors:
6
+ authors:
13
7
  - Tom Maher
14
8
  autorequire:
15
9
  bindir: bin
16
10
  cert_chain: []
17
-
18
- date: 2012-11-15 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
21
- version_requirements: &id001 !ruby/object:Gem::Requirement
22
- none: false
23
- requirements:
11
+ date: 2012-11-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: excon
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
24
17
  - - ~>
25
- - !ruby/object:Gem::Version
26
- hash: 75
27
- segments:
28
- - 0
29
- - 16
30
- - 10
18
+ - !ruby/object:Gem::Version
31
19
  version: 0.16.10
32
- prerelease: false
33
20
  type: :runtime
34
- name: excon
35
- requirement: *id001
36
- - !ruby/object:Gem::Dependency
37
- version_requirements: &id002 !ruby/object:Gem::Requirement
38
- none: false
39
- requirements:
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.16.10
27
+ - !ruby/object:Gem::Dependency
28
+ name: highline
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
40
31
  - - ~>
41
- - !ruby/object:Gem::Version
42
- hash: 17
43
- segments:
44
- - 1
45
- - 6
46
- - 15
32
+ - !ruby/object:Gem::Version
47
33
  version: 1.6.15
48
- prerelease: false
49
34
  type: :runtime
50
- name: highline
51
- requirement: *id002
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 1.6.15
52
41
  description: catchment basin for misc crap
53
42
  email: tmaher@tursom.org
54
43
  executables: []
55
-
56
44
  extensions: []
57
-
58
45
  extra_rdoc_files: []
59
-
60
- files:
46
+ files:
61
47
  - .gitignore
62
48
  - Gemfile
63
49
  - Gemfile.lock
50
+ - README.md
64
51
  - Rakefile
65
52
  - VERSION
66
53
  - lib/woof_util.rb
67
54
  - lib/woof_util/gem_rake_tasks.rb
68
55
  - woof_util.gemspec
69
56
  homepage: https://github.com/tmaher/woofutil
70
- licenses: []
71
-
57
+ licenses:
58
+ - MIT
59
+ metadata: {}
72
60
  post_install_message:
73
61
  rdoc_options: []
74
-
75
- require_paths:
62
+ require_paths:
76
63
  - lib
77
- required_ruby_version: !ruby/object:Gem::Requirement
78
- none: false
79
- requirements:
80
- - - ">="
81
- - !ruby/object:Gem::Version
82
- hash: 3
83
- segments:
84
- - 0
85
- version: "0"
86
- required_rubygems_version: !ruby/object:Gem::Requirement
87
- none: false
88
- requirements:
89
- - - ">="
90
- - !ruby/object:Gem::Version
91
- hash: 3
92
- segments:
93
- - 0
94
- version: "0"
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ! '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ! '>='
72
+ - !ruby/object:Gem::Version
73
+ version: '0'
95
74
  requirements: []
96
-
97
75
  rubyforge_project:
98
- rubygems_version: 1.8.24
76
+ rubygems_version: 2.0.7
99
77
  signing_key:
100
- specification_version: 3
78
+ specification_version: 4
101
79
  summary: woof
102
80
  test_files: []
103
-