rspec_engine_generator 0.0.5 → 0.0.6

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/bin/rspec_engine CHANGED
@@ -51,7 +51,7 @@ class RspecEngine < Thor
51
51
  end
52
52
  end
53
53
  SPEC
54
- run 'git add . && git ci -am"installed capybara"'
54
+ run 'git add . && git commit -am"installed capybara"'
55
55
 
56
56
  insert_into_file 'spec/dummy/config/routes.rb', "\n root to: 'home#index'\n", after: '.draw do'
57
57
  # generate a home controller and place to link off to engine from
@@ -69,7 +69,7 @@ class RspecEngine < Thor
69
69
  end
70
70
  content
71
71
  end
72
- run 'git add . && git ci -am"created Home controller for easy start to engine development"'
72
+ run 'git add . && git commit -am"created Home controller for easy start to engine development"'
73
73
  end
74
74
 
75
75
  # if we're generating a mountable engine, then generate a simple dashboard controller
@@ -82,7 +82,7 @@ class RspecEngine < Thor
82
82
  <h1>Welcome to an example Dashboard for #{name}</h1>
83
83
  INDEX
84
84
  end
85
- run 'git add . && git ci -am"created Dashboardcontroller for easy starting place to link off to subcomponents of mounted engine."'
85
+ run 'git add . && git commit -am"created Dashboardcontroller for easy starting place to link off to subcomponents of mounted engine."'
86
86
  end
87
87
 
88
88
  end
@@ -1,7 +1,7 @@
1
1
  module Rspec
2
2
  module Engine
3
3
  module Generator
4
- VERSION = "0.0.5"
4
+ VERSION = "0.0.6"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_engine_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-05 00:00:00.000000000 Z
12
+ date: 2012-09-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: thor
16
- requirement: !ruby/object:Gem::Requirement
16
+ requirement: &70254366027600 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,15 +21,10 @@ dependencies:
21
21
  version: 0.15.2
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
- requirements:
27
- - - ~>
28
- - !ruby/object:Gem::Version
29
- version: 0.15.2
24
+ version_requirements: *70254366027600
30
25
  - !ruby/object:Gem::Dependency
31
26
  name: rails
32
- requirement: !ruby/object:Gem::Requirement
27
+ requirement: &70254366027100 !ruby/object:Gem::Requirement
33
28
  none: false
34
29
  requirements:
35
30
  - - ~>
@@ -37,12 +32,7 @@ dependencies:
37
32
  version: '3.0'
38
33
  type: :runtime
39
34
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: '3.0'
35
+ version_requirements: *70254366027100
46
36
  description: Thor based gem that generates an RSpec ready Rails 3 engine
47
37
  email:
48
38
  - jack.dempsey@gmail.com
@@ -81,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
71
  version: '0'
82
72
  requirements: []
83
73
  rubyforge_project:
84
- rubygems_version: 1.8.24
74
+ rubygems_version: 1.8.10
85
75
  signing_key:
86
76
  specification_version: 3
87
77
  summary: Thor based gem that generates an RSpec ready Rails 3 engine