dima-jeweler 0.9.2 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. data/.gitignore +9 -0
  2. data/ChangeLog.markdown +54 -1
  3. data/README.markdown +89 -20
  4. data/ROADMAP +12 -0
  5. data/Rakefile +52 -12
  6. data/VERSION.yml +3 -3
  7. data/features/generator/cucumber.feature +83 -0
  8. data/features/generator/directory_layout.feature +76 -0
  9. data/features/generator/dotdocument.feature +14 -0
  10. data/features/generator/env_options.feature +9 -0
  11. data/features/generator/git.feature +94 -0
  12. data/features/generator/license.feature +11 -0
  13. data/features/generator/rakefile.feature +151 -0
  14. data/features/generator/readme.feature +12 -0
  15. data/features/generator/test.feature +41 -0
  16. data/features/generator/test_helper.feature +49 -0
  17. data/features/placeholder.feature +5 -0
  18. data/features/step_definitions/debug_steps.rb +6 -0
  19. data/features/step_definitions/filesystem_steps.rb +68 -0
  20. data/features/step_definitions/generator_steps.rb +284 -0
  21. data/features/step_definitions/task_steps.rb +6 -0
  22. data/features/support/env.rb +29 -0
  23. data/features/tasks/build_gem.feature +9 -0
  24. data/features/tasks/version.feature +24 -0
  25. data/features/tasks/version_bumping.feature +33 -0
  26. data/jeweler.gemspec +225 -0
  27. data/lib/jeweler.rb +39 -52
  28. data/lib/jeweler/commands.rb +2 -0
  29. data/lib/jeweler/commands/build_gem.rb +9 -0
  30. data/lib/jeweler/commands/check_dependencies.rb +52 -0
  31. data/lib/jeweler/commands/install_gem.rb +23 -2
  32. data/lib/jeweler/commands/release.rb +52 -12
  33. data/lib/jeweler/commands/release_to_rubyforge.rb +32 -9
  34. data/lib/jeweler/commands/setup_rubyforge.rb +57 -0
  35. data/lib/jeweler/commands/validate_gemspec.rb +9 -0
  36. data/lib/jeweler/commands/version/base.rb +13 -2
  37. data/lib/jeweler/commands/write_gemspec.rb +13 -0
  38. data/lib/jeweler/errors.rb +13 -1
  39. data/lib/jeweler/gemspec_helper.rb +31 -3
  40. data/lib/jeweler/generator.rb +80 -120
  41. data/lib/jeweler/generator/application.rb +12 -3
  42. data/lib/jeweler/generator/bacon_mixin.rb +43 -0
  43. data/lib/jeweler/generator/micronaut_mixin.rb +41 -0
  44. data/lib/jeweler/generator/minitest_mixin.rb +42 -0
  45. data/lib/jeweler/generator/options.rb +37 -3
  46. data/lib/jeweler/generator/rdoc_mixin.rb +9 -0
  47. data/lib/jeweler/generator/rspec_mixin.rb +42 -0
  48. data/lib/jeweler/generator/shoulda_mixin.rb +42 -0
  49. data/lib/jeweler/generator/testunit_mixin.rb +39 -0
  50. data/lib/jeweler/generator/yard_mixin.rb +14 -0
  51. data/lib/jeweler/rubyforge_tasks.rb +98 -0
  52. data/lib/jeweler/specification.rb +66 -0
  53. data/lib/jeweler/tasks.rb +72 -39
  54. data/lib/jeweler/templates/.document +5 -0
  55. data/lib/jeweler/templates/README.rdoc +12 -1
  56. data/lib/jeweler/templates/Rakefile +83 -49
  57. data/lib/jeweler/templates/bacon/helper.rb +1 -1
  58. data/lib/jeweler/templates/features/support/env.rb +4 -7
  59. data/lib/jeweler/templates/micronaut/helper.rb +1 -1
  60. data/lib/jeweler/templates/minitest/helper.rb +1 -1
  61. data/lib/jeweler/templates/rspec/flunking.rb +1 -1
  62. data/lib/jeweler/templates/rspec/helper.rb +4 -3
  63. data/lib/jeweler/templates/shoulda/helper.rb +1 -1
  64. data/lib/jeweler/templates/testunit/helper.rb +1 -1
  65. data/lib/jeweler/version_helper.rb +78 -33
  66. data/test/fixtures/bar/bin/foo_the_ultimate_bin +1 -0
  67. data/test/fixtures/bar/hey_include_me_in_gemspec +0 -0
  68. data/test/fixtures/bar/lib/foo_the_ultimate_lib.rb +1 -0
  69. data/test/fixtures/existing-project-with-version-plaintext/.document +5 -0
  70. data/test/fixtures/existing-project-with-version-plaintext/.gitignore +5 -0
  71. data/test/fixtures/existing-project-with-version-plaintext/LICENSE +20 -0
  72. data/test/fixtures/existing-project-with-version-plaintext/README.rdoc +7 -0
  73. data/test/fixtures/existing-project-with-version-plaintext/Rakefile +82 -0
  74. data/test/fixtures/existing-project-with-version-plaintext/VERSION +1 -0
  75. data/test/fixtures/existing-project-with-version-plaintext/existing-project-with-version.gemspec +29 -0
  76. data/test/fixtures/existing-project-with-version-plaintext/lib/existing_project_with_version.rb +0 -0
  77. data/test/fixtures/existing-project-with-version-plaintext/test/existing_project_with_version_test.rb +7 -0
  78. data/test/fixtures/existing-project-with-version-plaintext/test/test_helper.rb +10 -0
  79. data/test/fixtures/existing-project-with-version-yaml/.document +5 -0
  80. data/test/fixtures/existing-project-with-version-yaml/.gitignore +5 -0
  81. data/test/fixtures/existing-project-with-version-yaml/LICENSE +20 -0
  82. data/test/fixtures/existing-project-with-version-yaml/README.rdoc +7 -0
  83. data/test/fixtures/existing-project-with-version-yaml/Rakefile +82 -0
  84. data/test/fixtures/existing-project-with-version-yaml/VERSION.yml +4 -0
  85. data/test/fixtures/existing-project-with-version-yaml/bin/foo_the_ultimate_bin +0 -0
  86. data/test/fixtures/existing-project-with-version-yaml/existing-project-with-version.gemspec +29 -0
  87. data/test/fixtures/existing-project-with-version-yaml/lib/existing_project_with_version.rb +0 -0
  88. data/test/fixtures/existing-project-with-version-yaml/test/existing_project_with_version_test.rb +7 -0
  89. data/test/fixtures/existing-project-with-version-yaml/test/test_helper.rb +10 -0
  90. data/test/jeweler/commands/test_build_gem.rb +20 -1
  91. data/test/jeweler/commands/test_install_gem.rb +74 -0
  92. data/test/jeweler/commands/test_release.rb +289 -77
  93. data/test/jeweler/commands/test_release_to_rubyforge.rb +66 -50
  94. data/test/jeweler/commands/test_setup_rubyforge.rb +182 -0
  95. data/test/jeweler/commands/test_validate_gemspec.rb +27 -0
  96. data/test/jeweler/commands/test_write_gemspec.rb +34 -0
  97. data/test/jeweler/commands/version/test_base.rb +32 -0
  98. data/test/jeweler/commands/version/test_bump_major.rb +1 -0
  99. data/test/test_application.rb +31 -1
  100. data/test/test_gemspec_helper.rb +4 -0
  101. data/test/test_generator.rb +101 -114
  102. data/test/test_generator_initialization.rb +156 -0
  103. data/test/test_generator_mixins.rb +18 -0
  104. data/test/test_helper.rb +104 -16
  105. data/test/test_jeweler.rb +134 -96
  106. data/test/test_options.rb +59 -0
  107. data/test/test_specification.rb +61 -0
  108. data/test/test_tasks.rb +13 -18
  109. data/test/test_version_helper.rb +47 -9
  110. metadata +174 -43
  111. data/TODO +0 -11
  112. data/test/generators/initialization_test.rb +0 -146
@@ -0,0 +1,14 @@
1
+ Feature: generated .document
2
+ In order to easily generate RDoc
3
+ A user should be able to
4
+ generate reasonable .document file
5
+
6
+ Scenario: .document
7
+ Given a working directory
8
+ And I have configured git sanely
9
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
10
+ Then '.document' contains 'README.rdoc'
11
+ And '.document' contains 'lib/**/*.rb'
12
+ And '.document' contains 'bin/*'
13
+ And '.document' contains 'features/**/*.feature'
14
+ And '.document' contains 'LICENSE'
@@ -0,0 +1,9 @@
1
+ Feature: Getting options from environment variable
2
+ In order to avoid having to type --rspec over and over
3
+ A user will need to set up a JEWELER_OPTS environment variable
4
+
5
+ Scenario: Environment variable set
6
+ Given a working directory
7
+ And I set JEWELER_OPTS env variable to "--rspec"
8
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
9
+ Then 'spec/the-perfect-gem_spec.rb' should describe 'ThePerfectGem'
@@ -0,0 +1,94 @@
1
+ Feature: git support
2
+ In order to start a new gem for GitHub
3
+ A user should be able to
4
+ generate a project that is setup for git
5
+
6
+ Scenario: git remote configuration
7
+ Given a working directory
8
+ And I have configured git sanely
9
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
10
+
11
+ Then git repository has 'origin' remote
12
+ And git repository 'origin' remote should be 'git@github.com:technicalpickles/the-perfect-gem.git'
13
+
14
+ Scenario: .gitignore
15
+ Given a working directory
16
+ And I have configured git sanely
17
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
18
+
19
+ Then a sane '.gitignore' is created
20
+
21
+ Scenario: baseline repository
22
+ Given a working directory
23
+ And I have configured git sanely
24
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
25
+
26
+ Then a commit with the message 'Initial commit to the-perfect-gem.' is made
27
+ And 'README.rdoc' was checked in
28
+ And 'Rakefile' was checked in
29
+ And 'LICENSE' was checked in
30
+ And 'lib/the-perfect-gem.rb' was checked in
31
+ And '.gitignore' was checked in
32
+
33
+ And no files are untracked
34
+ And no files are changed
35
+ And no files are added
36
+ And no files are deleted
37
+
38
+ Scenario: bacon
39
+ Given a working directory
40
+ And I have configured git sanely
41
+ When I generate a bacon project named 'the-perfect-gem' that is 'zomg, so good'
42
+
43
+ Then 'spec/spec_helper.rb' was checked in
44
+ And 'spec/the-perfect-gem_spec.rb' was checked in
45
+
46
+ Scenario: minitest
47
+ Given a working directory
48
+ And I have configured git sanely
49
+ When I generate a minitest project named 'the-perfect-gem' that is 'zomg, so good'
50
+
51
+ Then 'test/test_helper.rb' was checked in
52
+ And 'test/the-perfect-gem_test.rb' was checked in
53
+
54
+ Scenario: rspec
55
+ Given a working directory
56
+ And I have configured git sanely
57
+ When I generate a rspec project named 'the-perfect-gem' that is 'zomg, so good'
58
+
59
+ Then 'spec/spec_helper.rb' was checked in
60
+ And 'spec/the-perfect-gem_spec.rb' was checked in
61
+
62
+ Scenario: shoulda
63
+ Given a working directory
64
+ And I have configured git sanely
65
+ When I generate a shoulda project named 'the-perfect-gem' that is 'zomg, so good'
66
+
67
+ Then 'test/test_helper.rb' was checked in
68
+ And 'test/the-perfect-gem_test.rb' was checked in
69
+
70
+ Scenario: testunit
71
+ Given a working directory
72
+ And I have configured git sanely
73
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
74
+
75
+ Then 'test/test_helper.rb' was checked in
76
+ And 'test/the-perfect-gem_test.rb' was checked in
77
+
78
+ Scenario: micronaut
79
+ Given a working directory
80
+ And I have configured git sanely
81
+ When I generate a micronaut project named 'the-perfect-gem' that is 'zomg, so good'
82
+
83
+ Then 'examples/example_helper.rb' was checked in
84
+ And 'examples/the-perfect-gem_example.rb' was checked in
85
+
86
+ Scenario: cucumber
87
+ Given a working directory
88
+ And I have configured git sanely
89
+ And I want cucumber stories
90
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
91
+
92
+ Then 'features/the-perfect-gem.feature' was checked in
93
+ And 'features/support/env.rb' was checked in
94
+ And 'features/step_definitions/the-perfect-gem_steps.rb' was checked in
@@ -0,0 +1,11 @@
1
+ Feature: generated license
2
+ In order to start a new gem
3
+ A user should be able to
4
+ generate a default license
5
+
6
+ Scenario: copyright
7
+ Given a working directory
8
+ And I have configured git sanely
9
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
10
+
11
+ Then LICENSE has the copyright as belonging to 'foo' in '2009'
@@ -0,0 +1,151 @@
1
+ Feature: generated Rakefile
2
+ In order to start a new gem
3
+ A user should be able to
4
+ generate a Rakefile
5
+
6
+ Background:
7
+ Given a working directory
8
+ And I have configured git sanely
9
+
10
+ Scenario: shared
11
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good' and described as 'Descriptive'
12
+
13
+ Then 'Rakefile' requires 'rubygems'
14
+ And 'Rakefile' requires 'rake'
15
+ And 'Rakefile' requires 'rake/rdoctask'
16
+ And Rakefile has 'the-perfect-gem' for the Jeweler::Tasks name
17
+ And Rakefile has 'bar@example.com' for the Jeweler::Tasks email
18
+ And Rakefile has 'zomg, so good' for the Jeweler::Tasks summary
19
+ And Rakefile has 'Descriptive' for the Jeweler::Tasks description
20
+ And Rakefile has 'http://github.com/technicalpickles/the-perfect-gem' for the Jeweler::Tasks homepage
21
+
22
+ Scenario: bacon
23
+ When I generate a bacon project named 'the-perfect-gem' that is 'zomg, so good'
24
+
25
+
26
+ Then 'Rakefile' requires 'rcov/rcovtask'
27
+ And Rakefile has 'spec/**/*_spec.rb' for the Rake::TestTask pattern
28
+ And Rakefile has 'spec/**/*_spec.rb' for the Rcov::RcovTask pattern
29
+ And Rakefile has 'spec' in the Rcov::RcovTask libs
30
+ And Rakefile has "spec" as the default task
31
+
32
+ Scenario: minitest
33
+ When I generate a minitest project named 'the-perfect-gem' that is 'zomg, so good'
34
+
35
+ Then 'Rakefile' requires 'rcov/rcovtask'
36
+ And Rakefile has 'test/**/*_test.rb' for the Rake::TestTask pattern
37
+ And Rakefile has 'test/**/*_test.rb' for the Rcov::RcovTask pattern
38
+ And Rakefile has 'test' in the Rcov::RcovTask libs
39
+ And Rakefile has "test" as the default task
40
+
41
+ Scenario: rspec
42
+ When I generate a rspec project named 'the-perfect-gem' that is 'zomg, so good'
43
+
44
+ Then 'Rakefile' requires 'spec/rake/spectask'
45
+ And Rakefile has 'spec/**/*_spec.rb' for the Spec::Rake::SpecTask pattern
46
+ And Rakefile has "spec" as the default task
47
+
48
+ Scenario: shoulda
49
+ When I generate a shoulda project named 'the-perfect-gem' that is 'zomg, so good'
50
+
51
+ Then 'Rakefile' requires 'rcov/rcovtask'
52
+ And Rakefile has 'test/**/*_test.rb' for the Rake::TestTask pattern
53
+ And Rakefile has 'test/**/*_test.rb' for the Rcov::RcovTask pattern
54
+ And Rakefile has 'test' in the Rcov::RcovTask libs
55
+ And Rakefile has "test" as the default task
56
+
57
+ Scenario: micronaut
58
+ When I generate a micronaut project named 'the-perfect-gem' that is 'zomg, so good'
59
+
60
+ Then 'Rakefile' requires 'micronaut/rake_task'
61
+ And Rakefile has 'examples/**/*_example.rb' for the Micronaut::RakeTask pattern
62
+ And Rakefile has "examples" as the default task
63
+
64
+ Scenario: testunit
65
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
66
+
67
+ Then 'Rakefile' requires 'rcov/rcovtask'
68
+ Then Rakefile has 'test/**/*_test.rb' for the Rake::TestTask pattern
69
+ And Rakefile has 'test/**/*_test.rb' for the Rcov::RcovTask pattern
70
+ And Rakefile has 'test' in the Rcov::RcovTask libs
71
+ And Rakefile has "test" as the default task
72
+
73
+ Scenario: no cucumber
74
+ Given I do not want cucumber stories
75
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
76
+ Then Rakefile does not require 'cucumber/rake/task'
77
+ And Rakefile does not instantiate a Cucumber::Rake::Task
78
+
79
+ Scenario: cucumber
80
+ Given I want cucumber stories
81
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
82
+ Then Rakefile requires 'cucumber/rake/task'
83
+ And Rakefile instantiates a Cucumber::Rake::Task
84
+
85
+ Scenario: no reek
86
+ Given I do not want reek
87
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
88
+ Then Rakefile does not require 'reek/rake_task'
89
+ And Rakefile does not instantiate a Reek::RakeTask
90
+
91
+ Scenario: reek
92
+ Given I want reek
93
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
94
+ Then Rakefile requires 'reek/rake_task'
95
+ And Rakefile instantiates a Reek::RakeTask
96
+
97
+ Scenario: no roodi
98
+ Given I do not want roodi
99
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
100
+ Then Rakefile does not require 'roodi'
101
+ And Rakefile does not require 'roodi_task'
102
+ And Rakefile does not instantiate a RoodiTask
103
+
104
+ Scenario: roodi
105
+ Given I want roodi
106
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
107
+ Then Rakefile requires 'roodi'
108
+ And Rakefile requires 'roodi_task'
109
+ And Rakefile instantiates a RoodiTask
110
+
111
+ Scenario: no rubyforge
112
+ Given I do not want rubyforge setup
113
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
114
+ Then Rakefile does not instantiate a Jeweler::RubyforgeTasks
115
+
116
+ Scenario: rubyforge
117
+ Given I want rubyforge setup
118
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
119
+ Then Rakefile instantiates a Jeweler::RubyforgeTasks
120
+
121
+ Scenario: yard
122
+ Given I want to use yard instead of rdoc
123
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
124
+
125
+ Then 'Rakefile' does not require 'rake/rdoctask'
126
+ And 'Rakefile' requires 'yard'
127
+ And Rakefile instantiates a YARD::Rake::YardocTask
128
+
129
+ Scenario: rdoc
130
+ Given I want to use rdoc instead of yard
131
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
132
+
133
+ Then 'Rakefile' does not require 'yard'
134
+ And 'Rakefile' requires 'rake/rdoctask'
135
+ And Rakefile does not instantiate a YARD::Rake::YardocTask
136
+ And Rakefile instantiates a Rake::RDocTask.new
137
+
138
+ Scenario: rubyforge and yard
139
+ Given I want to use yard instead of rdoc
140
+ And I want rubyforge setup
141
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
142
+ Then Rakefile instantiates a Jeweler::RubyforgeTasks
143
+ And Rakefile has 'yardoc' for the Jeweler::RubyforgeTasks doc_task
144
+
145
+ Scenario: rubyfoge and doc
146
+ Given I want to use rdoc instead of yard
147
+ And I want rubyforge setup
148
+ And I want rubyforge setup
149
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
150
+ Then Rakefile instantiates a Jeweler::RubyforgeTasks
151
+ And Rakefile has 'rdoc' for the Jeweler::RubyforgeTasks doc_task
@@ -0,0 +1,12 @@
1
+ Feature: generated license
2
+ In order to start a new gem
3
+ A user should be able to
4
+ generate a default license
5
+
6
+ Scenario: copyright
7
+ Given a working directory
8
+ And I have configured git sanely
9
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
10
+
11
+ Then 'README.rdoc' contains '= the-perfect-gem'
12
+ And 'README.rdoc' mentions copyright belonging to me in the current year
@@ -0,0 +1,41 @@
1
+ Feature: generated test or spec
2
+ In order to start a new gem
3
+ A user should be able to
4
+ generate a test or spec
5
+
6
+ Scenario: bacon
7
+ Given a working directory
8
+ And I have configured git sanely
9
+ When I generate a bacon project named 'the-perfect-gem' that is 'zomg, so good'
10
+ Then 'spec/the-perfect-gem_spec.rb' should describe 'ThePerfectGem'
11
+
12
+ Scenario: minitest
13
+ Given a working directory
14
+ And I have configured git sanely
15
+ When I generate a minitest project named 'the-perfect-gem' that is 'zomg, so good'
16
+ Then 'test/the-perfect-gem_test.rb' should define 'ThePerfectGemTest' as a subclass of 'Mini::Test::TestCase'
17
+
18
+ Scenario: rspec
19
+ Given a working directory
20
+ And I have configured git sanely
21
+ When I generate a rspec project named 'the-perfect-gem' that is 'zomg, so good'
22
+ Then 'spec/the-perfect-gem_spec.rb' should describe 'ThePerfectGem'
23
+
24
+ Scenario: shoulda
25
+ Given a working directory
26
+ And I have configured git sanely
27
+ And I intend to test with shoulda
28
+ When I generate a project named 'the-perfect-gem' that is 'zomg, so good'
29
+ Then 'test/the-perfect-gem_test.rb' should define 'ThePerfectGemTest' as a subclass of 'Test::Unit::TestCase'
30
+
31
+ Scenario: testunit
32
+ Given a working directory
33
+ And I have configured git sanely
34
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
35
+ Then 'test/the-perfect-gem_test.rb' should define 'ThePerfectGemTest' as a subclass of 'Test::Unit::TestCase'
36
+
37
+ Scenario: micronaut
38
+ Given a working directory
39
+ And I have configured git sanely
40
+ When I generate a micronaut project named 'the-perfect-gem' that is 'zomg, so good'
41
+ Then 'examples/the-perfect-gem_example.rb' should describe 'ThePerfectGem'
@@ -0,0 +1,49 @@
1
+ Feature: generated test or spec
2
+ In order to start a new gem
3
+ A user should be able to
4
+ generate a test or spec
5
+
6
+ Scenario: bacon
7
+ Given a working directory
8
+ And I have configured git sanely
9
+ When I generate a bacon project named 'the-perfect-gem' that is 'zomg, so good'
10
+ Then 'spec/spec_helper.rb' requires 'bacon'
11
+ And 'spec/spec_helper.rb' requires 'the-perfect-gem'
12
+
13
+ Scenario: minitest
14
+ Given a working directory
15
+ And I have configured git sanely
16
+ When I generate a minitest project named 'the-perfect-gem' that is 'zomg, so good'
17
+ Then 'test/test_helper.rb' requires 'mini/test'
18
+ And 'test/test_helper.rb' requires 'the-perfect-gem'
19
+ And 'test/test_helper.rb' should autorun tests
20
+
21
+ Scenario: rspec
22
+ Given a working directory
23
+ And I have configured git sanely
24
+ When I generate a rspec project named 'the-perfect-gem' that is 'zomg, so good'
25
+ Then 'spec/spec_helper.rb' requires 'spec'
26
+ And 'spec/spec_helper.rb' requires 'the-perfect-gem'
27
+
28
+ Scenario: shoulda
29
+ Given a working directory
30
+ And I have configured git sanely
31
+ When I generate a shoulda project named 'the-perfect-gem' that is 'zomg, so good'
32
+ Then 'test/test_helper.rb' requires 'test/unit'
33
+ And 'test/test_helper.rb' requires 'shoulda'
34
+ And 'test/test_helper.rb' requires 'the-perfect-gem'
35
+
36
+ Scenario: testunit
37
+ Given a working directory
38
+ And I have configured git sanely
39
+ When I generate a testunit project named 'the-perfect-gem' that is 'zomg, so good'
40
+ Then 'test/test_helper.rb' requires 'test/unit'
41
+ And 'test/test_helper.rb' requires 'the-perfect-gem'
42
+
43
+ Scenario: micronaut
44
+ Given a working directory
45
+ And I have configured git sanely
46
+ When I generate a micronaut project named 'the-perfect-gem' that is 'zomg, so good'
47
+ Then 'examples/example_helper.rb' requires 'rubygems'
48
+ Then 'examples/example_helper.rb' requires 'micronaut'
49
+ Then 'examples/example_helper.rb' requires 'the-perfect-gem'
@@ -0,0 +1,5 @@
1
+ Feature: I am a placeholder
2
+
3
+ Scenario: I am also a placeholder
4
+ Given a working directory
5
+
@@ -0,0 +1,6 @@
1
+ Then /^I debug$/ do
2
+ require 'ruby-debug'
3
+ breakpoint
4
+ 0
5
+ end
6
+
@@ -0,0 +1,68 @@
1
+ Given 'a working directory' do
2
+ @working_dir = File.expand_path File.join(File.dirname(__FILE__), '..', '..', 'tmp')
3
+ FileUtils.rm_rf @working_dir
4
+ FileUtils.mkdir_p @working_dir
5
+ end
6
+
7
+ Given /^I use the jeweler command to generate the "([^"]+)" project in the working directory$/ do |name|
8
+ @name = name
9
+
10
+ return_to = Dir.pwd
11
+ path_to_jeweler = File.expand_path File.join(File.dirname(__FILE__), '..', '..', 'bin', 'jeweler')
12
+
13
+ begin
14
+ FileUtils.cd @working_dir
15
+ @stdout = `#{path_to_jeweler} #{@name}`
16
+ ensure
17
+ FileUtils.cd return_to
18
+ end
19
+ end
20
+
21
+ Given /^"([^"]+)" does not exist$/ do |file|
22
+ assert ! File.exists?(File.join(@working_dir, file))
23
+ end
24
+
25
+ When /^I run "([^"]+)" in "([^"]+)"$/ do |command, directory|
26
+ full_path = File.join(@working_dir, directory)
27
+
28
+ lib_path = File.expand_path 'lib'
29
+ command.gsub!(/^rake /, "rake -I#{lib_path} ")
30
+
31
+ assert File.directory?(full_path), "#{full_path} is not a directory"
32
+
33
+ @stdout = `cd #{full_path} && #{command}`
34
+ @exited_cleanly = $?.exited?
35
+ end
36
+
37
+ Then /^the updated version, (\d+\.\d+\.\d+), is displayed$/ do |version|
38
+ assert_match "Updated version: #{version}", @stdout
39
+ end
40
+
41
+ Then /^the current version, (\d+\.\d+\.\d+), is displayed$/ do |version|
42
+ assert_match "Current version: #{version}", @stdout
43
+ end
44
+
45
+ Then /^the process should exit cleanly$/ do
46
+ assert @exited_cleanly, "Process did not exit cleanly: #{@stdout}"
47
+ end
48
+
49
+ Then /^the process should not exit cleanly$/ do
50
+ assert !@exited_cleanly, "Process did exit cleanly: #{@stdout}"
51
+ end
52
+
53
+ Given /^I use the existing project "([^"]+)" as a template$/ do |fixture_project|
54
+ @name = fixture_project
55
+ FileUtils.cp_r File.join(fixture_dir, fixture_project), @working_dir
56
+ end
57
+
58
+ Given /^"VERSION\.yml" contains hash "([^"]+)"$/ do |ruby_string|
59
+ version_hash = YAML.load(File.read(File.join(@working_dir, @name, 'VERSION.yml')))
60
+ evaled_hash = eval(ruby_string)
61
+ assert_equal evaled_hash, version_hash
62
+ end
63
+
64
+ Given /^"VERSION" contains "([^\"]*)"$/ do |expected|
65
+ version = File.read(File.join(@working_dir, @name, 'VERSION')).chomp
66
+ assert_equal expected, version
67
+ end
68
+