pbcopy 1.0.0 → 1.0.1
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.
- data/lib/pbcopy/version.rb +1 -1
- data/pbcopy.gemspec +2 -2
- metadata +5 -5
data/lib/pbcopy/version.rb
CHANGED
data/pbcopy.gemspec
CHANGED
|
@@ -6,13 +6,13 @@ Gem::Specification.new do |gem|
|
|
|
6
6
|
gem.email = ["josh.cheek@gmail.com"]
|
|
7
7
|
gem.description = %q{Replicates OSX commandline utility where piping into pbcopy places things into the clipboard}
|
|
8
8
|
gem.summary = %q{Use pbcopy in Ruby in the same way you would from the terminal}
|
|
9
|
-
gem.homepage = ""
|
|
9
|
+
gem.homepage = "https://github.com/JoshCheek/pbcopy"
|
|
10
10
|
|
|
11
11
|
gem.files = `git ls-files`.split($\)
|
|
12
12
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
13
13
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
14
14
|
gem.name = "pbcopy"
|
|
15
15
|
gem.require_paths = ["lib"]
|
|
16
|
-
gem.
|
|
16
|
+
gem.add_dependency 'pasteboard', '~> 1.0'
|
|
17
17
|
gem.version = Pbcopy::VERSION
|
|
18
18
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pbcopy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -13,15 +13,15 @@ date: 2012-04-28 00:00:00.000000000 Z
|
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pasteboard
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70142758148940 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: '1.0'
|
|
22
|
-
type: :
|
|
22
|
+
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70142758148940
|
|
25
25
|
description: Replicates OSX commandline utility where piping into pbcopy places things
|
|
26
26
|
into the clipboard
|
|
27
27
|
email:
|
|
@@ -39,7 +39,7 @@ files:
|
|
|
39
39
|
- lib/pbcopy/version.rb
|
|
40
40
|
- pbcopy.gemspec
|
|
41
41
|
- spec/pbcopy_spec.rb
|
|
42
|
-
homepage:
|
|
42
|
+
homepage: https://github.com/JoshCheek/pbcopy
|
|
43
43
|
licenses: []
|
|
44
44
|
post_install_message:
|
|
45
45
|
rdoc_options: []
|