git-punch 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/git-punch.gemspec +8 -5
- data/lib/git_punch/version.rb +1 -1
- metadata +8 -18
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YTQzODdmMmU0ODI1MWMzMzJkYzE1YTcwZTRjZTc2ZGEyOWJkZDEzNg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
YTAxYmRlZjFhNWQyYWIxNDRlOTc3M2VkNGFhMjNiN2Y2NDk4MjZmZA==
|
|
7
7
|
!binary "U0hBNTEy":
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZmMwZTE5MmY2ZjJkYzdhNzVjMzQzZDdhMDNiNjcwMWZkZDk0Y2EzZTQwMThj
|
|
10
|
+
ZTZiZGZmYmJhNGE1YzljZWU2Y2VjMTU1ZTE4YWI0NWRmNDRmZmU4ZDkyMzM4
|
|
11
|
+
OWVmZDcwNTE5ZDY1MTVjZDczMmZmZWVkZDgzNWQzNDY0ODVjYTI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MmU3MzY4OTRmODllMGU2MTY2M2IwNjU3YzY2M2MzMmFiNGUxMjllNWUzYTUy
|
|
14
|
+
NWQ5ZTZlOTYzOGFmMzA5MmU4MWE3YWE2YWZkZTRkNmEzMjBhOGU2NWZjYjU2
|
|
15
|
+
NWUzNjgxMzRmNjJkZGE0NDc4NDg5MGNjNjFiYWRmOWIzYzU5NmM=
|
data/git-punch.gemspec
CHANGED
|
@@ -8,14 +8,18 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = GitPunch::VERSION
|
|
9
9
|
spec.authors = ["Tom Scott"]
|
|
10
10
|
spec.email = ["tubbo@psychedeli.ca"]
|
|
11
|
-
spec.description = %
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
spec.description = %{
|
|
12
|
+
A command-line toolchain for working with NotePunch. Sets up your
|
|
13
|
+
Git configuration for use with GitMedia and the NotePunch API.
|
|
14
|
+
Requires Git, as this works within a plugin.
|
|
15
|
+
}
|
|
16
|
+
spec.summary = spec.description
|
|
17
|
+
spec.homepage = "http://notepunch.com/"
|
|
14
18
|
spec.license = "MIT"
|
|
15
19
|
|
|
16
20
|
spec.files = `git ls-files`.split($/)
|
|
17
21
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
|
18
|
-
spec.test_files = spec.files.grep(%r{^
|
|
22
|
+
spec.test_files = spec.files.grep(%r{^spec/})
|
|
19
23
|
spec.require_paths = ["lib"]
|
|
20
24
|
|
|
21
25
|
spec.add_development_dependency "bundler", "~> 1.3"
|
|
@@ -24,7 +28,6 @@ Gem::Specification.new do |spec|
|
|
|
24
28
|
spec.add_development_dependency "pry"
|
|
25
29
|
|
|
26
30
|
spec.add_dependency 'trollop'
|
|
27
|
-
spec.add_dependency 'right_aws'
|
|
28
31
|
spec.add_dependency 'git-media'
|
|
29
32
|
spec.add_dependency 'thor'
|
|
30
33
|
spec.add_dependency 'httparty'
|
data/lib/git_punch/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: git-punch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Scott
|
|
@@ -80,20 +80,6 @@ dependencies:
|
|
|
80
80
|
- - ! '>='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
82
|
version: '0'
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: right_aws
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - ! '>='
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
90
|
-
type: :runtime
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
-
requirements:
|
|
94
|
-
- - ! '>='
|
|
95
|
-
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0'
|
|
97
83
|
- !ruby/object:Gem::Dependency
|
|
98
84
|
name: git-media
|
|
99
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -136,7 +122,9 @@ dependencies:
|
|
|
136
122
|
- - ! '>='
|
|
137
123
|
- !ruby/object:Gem::Version
|
|
138
124
|
version: '0'
|
|
139
|
-
description:
|
|
125
|
+
description: ! "\n A command-line toolchain for working with NotePunch. Sets up
|
|
126
|
+
your\n Git configuration for use with GitMedia and the NotePunch API.\n Requires
|
|
127
|
+
Git, as this works within a plugin.\n "
|
|
140
128
|
email:
|
|
141
129
|
- tubbo@psychedeli.ca
|
|
142
130
|
executables: []
|
|
@@ -170,7 +158,7 @@ files:
|
|
|
170
158
|
- spec/lib/git_punch/song_spec.rb
|
|
171
159
|
- spec/lib/git_punch/user_spec.rb
|
|
172
160
|
- spec/spec_helper.rb
|
|
173
|
-
homepage: http://
|
|
161
|
+
homepage: http://notepunch.com/
|
|
174
162
|
licenses:
|
|
175
163
|
- MIT
|
|
176
164
|
metadata: {}
|
|
@@ -193,7 +181,9 @@ rubyforge_project:
|
|
|
193
181
|
rubygems_version: 2.0.0
|
|
194
182
|
signing_key:
|
|
195
183
|
specification_version: 4
|
|
196
|
-
summary:
|
|
184
|
+
summary: A command-line toolchain for working with NotePunch. Sets up your Git configuration
|
|
185
|
+
for use with GitMedia and the NotePunch API. Requires Git, as this works within
|
|
186
|
+
a plugin.
|
|
197
187
|
test_files:
|
|
198
188
|
- spec/lib/git_punch/media_config_spec.rb
|
|
199
189
|
- spec/lib/git_punch/plugin_spec.rb
|