Skip to content

Commit b87d246

Browse files
author
Po Chen
committed
Release 2.0.0
1 parent 535af4e commit b87d246

File tree

3 files changed

+40
-1
lines changed

3 files changed

+40
-1
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 2.0.0
2+
3+
* Fixed and improved new module-spec pair creation
4+
5+
### 2014-11-07
6+
7+
* Minor typo / quotes fixes
8+
19
### 2014-11-06
210

311
* Package switched to use tag release

messages.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"1.2014.1106": "messages/1.2014.1106.txt",
33
"1.2014.1108": "messages/1.2014.1108.txt",
4-
"1.2014.1125": "messages/1.2014.1125.txt"
4+
"1.2014.1125": "messages/1.2014.1125.txt",
5+
"2.0.0": "messages/2.0.0.txt"
56
}

messages/2.0.0.txt

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
module-spec pair creation seemed to have never worked in ST3
2+
3+
RSpec plugin v2 is shipped with the fixed and improved new module-spec pair creation
4+
5+
* Command Palette -> RSpec: create new module
6+
* input the name of the class with optional namespace (see below)
7+
8+
* input `A/B/C` or `A::B::C` will generate
9+
10+
*c.rb*
11+
12+
```ruby
13+
module A
14+
module B
15+
class C
16+
17+
end
18+
end
19+
end
20+
```
21+
22+
*c_spec.rb*
23+
24+
```ruby
25+
require 'spec_helper'
26+
27+
describe A::B::C do
28+
29+
end
30+
```

0 commit comments

Comments
 (0)