buildr-iidea 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.
- data/LICENSE +176 -0
- data/NOTICE +16 -0
- data/README.rdoc +286 -0
- data/Rakefile +27 -0
- data/buildr-iidea.gemspec +23 -0
- data/lib/buildr/intellij_idea/idea_file.rb +86 -0
- data/lib/buildr/intellij_idea/idea_module.rb +217 -0
- data/lib/buildr/intellij_idea/idea_project.rb +98 -0
- data/lib/buildr/intellij_idea/project_extension.rb +92 -0
- data/lib/buildr_iidea.rb +5 -0
- data/spec/buildr/intellij_idea/clean_spec.rb +38 -0
- data/spec/buildr/intellij_idea/dependency_spec.rb +85 -0
- data/spec/buildr/intellij_idea/extra_modules_spec.rb +24 -0
- data/spec/buildr/intellij_idea/facet_generation_spec.rb +36 -0
- data/spec/buildr/intellij_idea/group_spec.rb +33 -0
- data/spec/buildr/intellij_idea/idea_file_generation_spec.rb +177 -0
- data/spec/buildr/intellij_idea/inform_spec.rb +28 -0
- data/spec/buildr/intellij_idea/initial_components_spec.rb +33 -0
- data/spec/buildr/intellij_idea/module_property_inheritance_spec.rb +27 -0
- data/spec/buildr/intellij_idea/project_extension_spec.rb +19 -0
- data/spec/buildr/intellij_idea/template_spec.rb +234 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +75 -0
- data/spec/xpath_matchers.rb +109 -0
- metadata +97 -0
metadata
ADDED
@@ -0,0 +1,97 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: buildr-iidea
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
version: 0.0.2
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Rhett Sutphin
|
13
|
+
- Peter Donald
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-04-07 00:00:00 +10:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: |
|
23
|
+
This is a buildr extension that provides tasks to generate Intellij IDEA
|
24
|
+
project files. The iidea task generates the project files based on the
|
25
|
+
settings of each project and extension specific settings.
|
26
|
+
|
27
|
+
email:
|
28
|
+
- rhett@detailedbalance.net
|
29
|
+
- peter@realityforge.org
|
30
|
+
executables: []
|
31
|
+
|
32
|
+
extensions: []
|
33
|
+
|
34
|
+
extra_rdoc_files:
|
35
|
+
- README.rdoc
|
36
|
+
- LICENSE
|
37
|
+
- NOTICE
|
38
|
+
files:
|
39
|
+
- lib/buildr_iidea.rb
|
40
|
+
- lib/buildr/intellij_idea/idea_project.rb
|
41
|
+
- lib/buildr/intellij_idea/project_extension.rb
|
42
|
+
- lib/buildr/intellij_idea/idea_module.rb
|
43
|
+
- lib/buildr/intellij_idea/idea_file.rb
|
44
|
+
- spec/spec_helper.rb
|
45
|
+
- spec/xpath_matchers.rb
|
46
|
+
- spec/spec.opts
|
47
|
+
- spec/buildr/intellij_idea/inform_spec.rb
|
48
|
+
- spec/buildr/intellij_idea/facet_generation_spec.rb
|
49
|
+
- spec/buildr/intellij_idea/project_extension_spec.rb
|
50
|
+
- spec/buildr/intellij_idea/module_property_inheritance_spec.rb
|
51
|
+
- spec/buildr/intellij_idea/idea_file_generation_spec.rb
|
52
|
+
- spec/buildr/intellij_idea/group_spec.rb
|
53
|
+
- spec/buildr/intellij_idea/extra_modules_spec.rb
|
54
|
+
- spec/buildr/intellij_idea/initial_components_spec.rb
|
55
|
+
- spec/buildr/intellij_idea/clean_spec.rb
|
56
|
+
- spec/buildr/intellij_idea/dependency_spec.rb
|
57
|
+
- spec/buildr/intellij_idea/template_spec.rb
|
58
|
+
- buildr-iidea.gemspec
|
59
|
+
- LICENSE
|
60
|
+
- NOTICE
|
61
|
+
- README.rdoc
|
62
|
+
- Rakefile
|
63
|
+
has_rdoc: true
|
64
|
+
homepage: http://github.com/rockninja/buildr-iidea
|
65
|
+
licenses: []
|
66
|
+
|
67
|
+
post_install_message: Thanks for installing the Intellij IDEA extension for Buildr
|
68
|
+
rdoc_options:
|
69
|
+
- --title
|
70
|
+
- buildr-iidea 0.0.2
|
71
|
+
- --main
|
72
|
+
- README.rdoc
|
73
|
+
require_paths:
|
74
|
+
- lib
|
75
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">="
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
segments:
|
80
|
+
- 0
|
81
|
+
version: "0"
|
82
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
83
|
+
requirements:
|
84
|
+
- - ">="
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
segments:
|
87
|
+
- 0
|
88
|
+
version: "0"
|
89
|
+
requirements: []
|
90
|
+
|
91
|
+
rubyforge_project:
|
92
|
+
rubygems_version: 1.3.6
|
93
|
+
signing_key:
|
94
|
+
specification_version: 3
|
95
|
+
summary: Buildr tasks to generate Intellij IDEA project files
|
96
|
+
test_files: []
|
97
|
+
|