veye 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +15 -0
  2. data/Gemfile +2 -0
  3. data/Gemfile.lock +51 -0
  4. data/README.md +271 -0
  5. data/README.rdoc +6 -0
  6. data/Rakefile +44 -0
  7. data/bin/veye +390 -0
  8. data/lib/veye/api/base_resource.rb +29 -0
  9. data/lib/veye/api/json_response.rb +56 -0
  10. data/lib/veye/api/resource.rb +22 -0
  11. data/lib/veye/api.rb +3 -0
  12. data/lib/veye/package/follow.rb +50 -0
  13. data/lib/veye/package/info.rb +50 -0
  14. data/lib/veye/package/info_csv.rb +18 -0
  15. data/lib/veye/package/info_json.rb +14 -0
  16. data/lib/veye/package/info_pretty.rb +27 -0
  17. data/lib/veye/package/info_table.rb +29 -0
  18. data/lib/veye/package/search.rb +46 -0
  19. data/lib/veye/package/search_csv.rb +33 -0
  20. data/lib/veye/package/search_json.rb +19 -0
  21. data/lib/veye/package/search_pretty.rb +35 -0
  22. data/lib/veye/package/search_table.rb +40 -0
  23. data/lib/veye/package.rb +23 -0
  24. data/lib/veye/pagination/pagination_csv.rb +17 -0
  25. data/lib/veye/pagination/pagination_json.rb +12 -0
  26. data/lib/veye/pagination/pagination_pretty.rb +22 -0
  27. data/lib/veye/pagination/pagination_table.rb +22 -0
  28. data/lib/veye/pagination/show.rb +26 -0
  29. data/lib/veye/pagination.rb +7 -0
  30. data/lib/veye/project/check.rb +147 -0
  31. data/lib/veye/project/licence.rb +48 -0
  32. data/lib/veye/project/project_csv.rb +28 -0
  33. data/lib/veye/project/project_dependency_csv.rb +25 -0
  34. data/lib/veye/project/project_dependency_json.rb +12 -0
  35. data/lib/veye/project/project_dependency_pretty.rb +30 -0
  36. data/lib/veye/project/project_dependency_table.rb +27 -0
  37. data/lib/veye/project/project_json.rb +13 -0
  38. data/lib/veye/project/project_licence_csv.rb +19 -0
  39. data/lib/veye/project/project_licence_json.rb +12 -0
  40. data/lib/veye/project/project_licence_pretty.rb +23 -0
  41. data/lib/veye/project/project_licence_table.rb +29 -0
  42. data/lib/veye/project/project_pretty.rb +28 -0
  43. data/lib/veye/project/project_table.rb +30 -0
  44. data/lib/veye/project.rb +11 -0
  45. data/lib/veye/service.rb +14 -0
  46. data/lib/veye/user/favorite_csv.rb +28 -0
  47. data/lib/veye/user/favorite_json.rb +14 -0
  48. data/lib/veye/user/favorite_pretty.rb +25 -0
  49. data/lib/veye/user/favorite_table.rb +28 -0
  50. data/lib/veye/user/me.rb +75 -0
  51. data/lib/veye/user/profile_csv.rb +21 -0
  52. data/lib/veye/user/profile_json.rb +14 -0
  53. data/lib/veye/user/profile_pretty.rb +31 -0
  54. data/lib/veye/user/profile_table.rb +34 -0
  55. data/lib/veye/user.rb +7 -0
  56. data/lib/veye/version.rb +13 -0
  57. data/lib/veye.rb +82 -0
  58. data/test/default_test.rb +14 -0
  59. data/test/files/Gemfile +20 -0
  60. data/test/files/maven-1.0.1.pom +128 -0
  61. data/test/test_helper.rb +9 -0
  62. data/veye.rdoc +5 -0
  63. metadata +229 -0
@@ -0,0 +1,128 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+ <project xmlns="http://maven.apache.org/POM/4.0.0"
19
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21
+ <modelVersion>4.0.0</modelVersion>
22
+
23
+ <parent>
24
+ <artifactId>openejb</artifactId>
25
+ <groupId>org.apache.openejb</groupId>
26
+ <version>4.5.1</version>
27
+ </parent>
28
+
29
+ <groupId>org.apache.openejb.maven</groupId>
30
+ <version>1.0.1</version>
31
+ <artifactId>maven</artifactId>
32
+ <packaging>pom</packaging>
33
+ <name>OpenEJB :: Maven Plugins</name>
34
+
35
+ <modules>
36
+ <module>tomee-maven-plugin</module>
37
+ <module>tomee-embedded-maven-plugin</module>
38
+ <module>openejb-embedded-maven-plugin</module>
39
+ <module>maven-util</module>
40
+ <module>tomee-webapp-archetype</module>
41
+ </modules>
42
+
43
+ <dependencyManagement>
44
+ <dependencies>
45
+ <dependency>
46
+ <groupId>org.apache.maven.plugin-tools</groupId>
47
+ <artifactId>maven-plugin-annotations</artifactId>
48
+ <version>3.1</version>
49
+ </dependency>
50
+ <dependency>
51
+ <groupId>org.codehaus.plexus</groupId>
52
+ <artifactId>plexus-utils</artifactId>
53
+ <version>3.0.1</version>
54
+ </dependency>
55
+ <dependency>
56
+ <groupId>org.apache.maven</groupId>
57
+ <artifactId>maven-plugin-api</artifactId>
58
+ <version>${maven.version}</version>
59
+ </dependency>
60
+ <dependency>
61
+ <groupId>org.apache.maven</groupId>
62
+ <artifactId>maven-project</artifactId>
63
+ <version>${maven.version}</version>
64
+ </dependency>
65
+ <dependency>
66
+ <groupId>org.apache.maven</groupId>
67
+ <artifactId>maven-core</artifactId>
68
+ <version>${maven.version}</version>
69
+ </dependency>
70
+ <dependency>
71
+ <groupId>org.apache.maven</groupId>
72
+ <artifactId>maven-artifact</artifactId>
73
+ <version>${maven.version}</version>
74
+ </dependency>
75
+ <dependency>
76
+ <groupId>org.sonatype.aether</groupId>
77
+ <artifactId>aether-api</artifactId>
78
+ <version>${aether.version}</version>
79
+ </dependency>
80
+ <dependency>
81
+ <groupId>org.apache.openejb</groupId>
82
+ <artifactId>openejb-core</artifactId>
83
+ <version>${openejb.version}</version>
84
+ </dependency>
85
+ <dependency>
86
+ <groupId>org.apache.openejb</groupId>
87
+ <artifactId>openejb-client</artifactId>
88
+ <version>${openejb.version}</version>
89
+ </dependency>
90
+ </dependencies>
91
+ </dependencyManagement>
92
+
93
+ <properties>
94
+ <maven.version>2.2.1</maven.version>
95
+ </properties>
96
+
97
+ <build>
98
+ <plugins>
99
+ <plugin>
100
+ <groupId>org.apache.maven.plugins</groupId>
101
+ <artifactId>maven-plugin-plugin</artifactId>
102
+ <version>3.1</version>
103
+ <executions>
104
+ <execution>
105
+ <id>mojo-descriptor</id>
106
+ <goals>
107
+ <goal>descriptor</goal>
108
+ </goals>
109
+ </execution>
110
+ </executions>
111
+ <configuration>
112
+ <goalPrefix>${maven-plugin.prefix}</goalPrefix>
113
+ <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
114
+ </configuration>
115
+ </plugin>
116
+ </plugins>
117
+ </build>
118
+
119
+ <reporting>
120
+ <plugins>
121
+ <plugin>
122
+ <groupId>org.apache.maven.plugins</groupId>
123
+ <artifactId>maven-plugin-plugin</artifactId>
124
+ <version>3.0</version>
125
+ </plugin>
126
+ </plugins>
127
+ </reporting>
128
+ </project>
@@ -0,0 +1,9 @@
1
+ require 'test/unit'
2
+
3
+ # Add test libraries you want to use here, e.g. mocha
4
+
5
+ class Test::Unit::TestCase
6
+
7
+ # Add global extensions to the test case class here
8
+
9
+ end
data/veye.rdoc ADDED
@@ -0,0 +1,5 @@
1
+ = veye
2
+
3
+ Generate this with
4
+ veye rdoc
5
+ After you have described your command line interface
metadata ADDED
@@ -0,0 +1,229 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: veye
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - VersionEye GMBH
8
+ - ! '@timgluz'
9
+ - ! '@robertreiz'
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2013-10-02 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rake
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ! '>='
27
+ - !ruby/object:Gem::Version
28
+ version: '0'
29
+ - !ruby/object:Gem::Dependency
30
+ name: rdoc
31
+ requirement: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ! '>='
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ! '>='
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ - !ruby/object:Gem::Dependency
44
+ name: aruba
45
+ requirement: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ! '>='
48
+ - !ruby/object:Gem::Version
49
+ version: '0'
50
+ type: :development
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ! '>='
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ - !ruby/object:Gem::Dependency
58
+ name: gli
59
+ requirement: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - '='
62
+ - !ruby/object:Gem::Version
63
+ version: 2.8.0
64
+ type: :runtime
65
+ prerelease: false
66
+ version_requirements: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '='
69
+ - !ruby/object:Gem::Version
70
+ version: 2.8.0
71
+ - !ruby/object:Gem::Dependency
72
+ name: rest-client
73
+ requirement: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - '='
76
+ - !ruby/object:Gem::Version
77
+ version: 1.6.7
78
+ type: :runtime
79
+ prerelease: false
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - '='
83
+ - !ruby/object:Gem::Version
84
+ version: 1.6.7
85
+ - !ruby/object:Gem::Dependency
86
+ name: awesome_print
87
+ requirement: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - '='
90
+ - !ruby/object:Gem::Version
91
+ version: 1.2.0
92
+ type: :runtime
93
+ prerelease: false
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - '='
97
+ - !ruby/object:Gem::Version
98
+ version: 1.2.0
99
+ - !ruby/object:Gem::Dependency
100
+ name: rainbow
101
+ requirement: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ! '>='
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ type: :runtime
107
+ prerelease: false
108
+ version_requirements: !ruby/object:Gem::Requirement
109
+ requirements:
110
+ - - ! '>='
111
+ - !ruby/object:Gem::Version
112
+ version: '0'
113
+ - !ruby/object:Gem::Dependency
114
+ name: terminal-table
115
+ requirement: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - '='
118
+ - !ruby/object:Gem::Version
119
+ version: 1.4.5
120
+ type: :runtime
121
+ prerelease: false
122
+ version_requirements: !ruby/object:Gem::Requirement
123
+ requirements:
124
+ - - '='
125
+ - !ruby/object:Gem::Version
126
+ version: 1.4.5
127
+ description: ! " Veye is commandline tool like Heroku has own ToolBelt, \n and
128
+ purpose of this tool is to make developer's life even\n more simpler and keep
129
+ you up-to-date with freshest packages.\n"
130
+ email: contact@versioneye.com
131
+ executables:
132
+ - veye
133
+ extensions: []
134
+ extra_rdoc_files:
135
+ - README.rdoc
136
+ - veye.rdoc
137
+ files:
138
+ - lib/veye.rb
139
+ - lib/veye/api/base_resource.rb
140
+ - lib/veye/api/json_response.rb
141
+ - lib/veye/api/resource.rb
142
+ - lib/veye/api.rb
143
+ - lib/veye/package/follow.rb
144
+ - lib/veye/package/info.rb
145
+ - lib/veye/package/info_csv.rb
146
+ - lib/veye/package/info_json.rb
147
+ - lib/veye/package/info_pretty.rb
148
+ - lib/veye/package/info_table.rb
149
+ - lib/veye/package/search.rb
150
+ - lib/veye/package/search_csv.rb
151
+ - lib/veye/package/search_json.rb
152
+ - lib/veye/package/search_pretty.rb
153
+ - lib/veye/package/search_table.rb
154
+ - lib/veye/package.rb
155
+ - lib/veye/pagination/pagination_csv.rb
156
+ - lib/veye/pagination/pagination_json.rb
157
+ - lib/veye/pagination/pagination_pretty.rb
158
+ - lib/veye/pagination/pagination_table.rb
159
+ - lib/veye/pagination/show.rb
160
+ - lib/veye/pagination.rb
161
+ - lib/veye/project/check.rb
162
+ - lib/veye/project/licence.rb
163
+ - lib/veye/project/project_csv.rb
164
+ - lib/veye/project/project_dependency_csv.rb
165
+ - lib/veye/project/project_dependency_json.rb
166
+ - lib/veye/project/project_dependency_pretty.rb
167
+ - lib/veye/project/project_dependency_table.rb
168
+ - lib/veye/project/project_json.rb
169
+ - lib/veye/project/project_licence_csv.rb
170
+ - lib/veye/project/project_licence_json.rb
171
+ - lib/veye/project/project_licence_pretty.rb
172
+ - lib/veye/project/project_licence_table.rb
173
+ - lib/veye/project/project_pretty.rb
174
+ - lib/veye/project/project_table.rb
175
+ - lib/veye/project.rb
176
+ - lib/veye/service.rb
177
+ - lib/veye/user/favorite_csv.rb
178
+ - lib/veye/user/favorite_json.rb
179
+ - lib/veye/user/favorite_pretty.rb
180
+ - lib/veye/user/favorite_table.rb
181
+ - lib/veye/user/me.rb
182
+ - lib/veye/user/profile_csv.rb
183
+ - lib/veye/user/profile_json.rb
184
+ - lib/veye/user/profile_pretty.rb
185
+ - lib/veye/user/profile_table.rb
186
+ - lib/veye/user.rb
187
+ - lib/veye/version.rb
188
+ - bin/veye
189
+ - Gemfile
190
+ - Gemfile.lock
191
+ - README.md
192
+ - README.rdoc
193
+ - Rakefile
194
+ - test/default_test.rb
195
+ - test/files/Gemfile
196
+ - test/files/maven-1.0.1.pom
197
+ - test/test_helper.rb
198
+ - veye.rdoc
199
+ homepage: https://github.com/versioneye/veye
200
+ licenses:
201
+ - MIT
202
+ metadata: {}
203
+ post_install_message: ! 'Thanks for installing! To get more info, use: veye help'
204
+ rdoc_options:
205
+ - --title
206
+ - veye
207
+ - --main
208
+ - README.rdoc
209
+ - -ri
210
+ require_paths:
211
+ - lib
212
+ - lib
213
+ required_ruby_version: !ruby/object:Gem::Requirement
214
+ requirements:
215
+ - - ! '>='
216
+ - !ruby/object:Gem::Version
217
+ version: '0'
218
+ required_rubygems_version: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ! '>='
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ requirements: []
224
+ rubyforge_project:
225
+ rubygems_version: 2.1.5
226
+ signing_key:
227
+ specification_version: 4
228
+ summary: Commandline tool for VersionEye
229
+ test_files: []