rubyfocus 0.3.0

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/rubyfocus.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = "rubyfocus"
5
+ s.version = File.read('version.txt')
6
+ s.licenses = ["MIT"]
7
+
8
+ s.summary = "Gem summary here."
9
+ s.description = "Gem description here."
10
+
11
+ s.author = 'Jan-Yves Ruzicka'
12
+ s.email = 'janyves.ruzicka@gmail.com'
13
+ s.homepage = 'https://github.com/jyruzicka/rubyfocus'
14
+
15
+ s.files = File.read('Manifest').split("\n").select{ |l| !l.start_with?('#') && l != ''}
16
+ s.require_paths << 'lib'
17
+ s.extra_rdoc_files = ['README.md']
18
+
19
+ # Add runtime dependencies here
20
+ s.add_runtime_dependency 'nokogiri', '~> 1.6', ">= 1.6.6"
21
+ s.add_runtime_dependency 'rubyzip', '~> 1.1', ">= 1.1.7"
22
+ end
data/version.txt ADDED
@@ -0,0 +1 @@
1
+ 0.3.0
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubyfocus
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.3.0
5
+ platform: ruby
6
+ authors:
7
+ - Jan-Yves Ruzicka
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-10-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 1.6.6
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '1.6'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 1.6.6
33
+ - !ruby/object:Gem::Dependency
34
+ name: rubyzip
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.1'
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: 1.1.7
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - "~>"
48
+ - !ruby/object:Gem::Version
49
+ version: '1.1'
50
+ - - ">="
51
+ - !ruby/object:Gem::Version
52
+ version: 1.1.7
53
+ description: Gem description here.
54
+ email: janyves.ruzicka@gmail.com
55
+ executables: []
56
+ extensions: []
57
+ extra_rdoc_files:
58
+ - README.md
59
+ files:
60
+ - ".gitignore"
61
+ - ".rspec"
62
+ - Manifest
63
+ - README.md
64
+ - lib/rubyfocus.rb
65
+ - lib/rubyfocus/document.rb
66
+ - lib/rubyfocus/errors.rb
67
+ - lib/rubyfocus/fetchers/fetcher.rb
68
+ - lib/rubyfocus/fetchers/local_fetcher.rb
69
+ - lib/rubyfocus/fetchers/oss_fetcher.rb
70
+ - lib/rubyfocus/includes/conditional_exec.rb
71
+ - lib/rubyfocus/includes/idref.rb
72
+ - lib/rubyfocus/includes/parser.rb
73
+ - lib/rubyfocus/includes/searchable.rb
74
+ - lib/rubyfocus/items/context.rb
75
+ - lib/rubyfocus/items/folder.rb
76
+ - lib/rubyfocus/items/item.rb
77
+ - lib/rubyfocus/items/named_item.rb
78
+ - lib/rubyfocus/items/project.rb
79
+ - lib/rubyfocus/items/ranked_item.rb
80
+ - lib/rubyfocus/items/setting.rb
81
+ - lib/rubyfocus/items/task.rb
82
+ - lib/rubyfocus/location.rb
83
+ - lib/rubyfocus/patch.rb
84
+ - lib/rubyfocus/review_period.rb
85
+ - lib/rubyfocus/xml_translator.rb
86
+ - rubyfocus.gemspec
87
+ - version.txt
88
+ homepage: https://github.com/jyruzicka/rubyfocus
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.4.5.1
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: Gem summary here.
113
+ test_files: []