bently 1.0.1 → 1.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/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  [<img src="https://secure.travis-ci.org/bonsaiben/bently.png">](http://travis-ci.org/bonsaiben/bently)
2
2
 
3
- Bently is a community maintained library of executable recipes for rapid application development. The bulk of recipes are for automating installation and configuration of commonly-used dependencies. Another potential use case is feature scaffolding, or laying down basic implementation for common functionality like social authentication.
3
+ Bently is a community maintained library of executable recipes, primarily for installing and configuring Rails application dependencies.
4
4
 
5
5
  The goal of Bently is to reduce duplication in the development process across projects, with rapid prototyping in mind.
6
6
 
7
- Bently is [Homebrew](https://github.com/mxcl/homebrew) meets Rails generators.
7
+ Bently is essentially [Homebrew](https://github.com/mxcl/homebrew) meets Rails generators.
8
8
 
9
9
  Bently is built on top of [Thor](https://github.com/wycats/thor).
10
10
 
@@ -0,0 +1,17 @@
1
+ module Bently
2
+ class BackboneRails < RailsRecipe
3
+
4
+ homepage 'https://github.com/codebrew/backbone-rails/blob/master/README.md'
5
+
6
+ def initialize
7
+ gem 'rails-backbone'
8
+ bundle
9
+ generate 'backbone:install'
10
+ usage 'Generators:'
11
+ say 'rails g backbone:model', ''
12
+ say 'rails g backbone:router', ''
13
+ say 'rails g backbone:scaffold', ''
14
+ end
15
+
16
+ end
17
+ end
@@ -1,5 +1,5 @@
1
1
  module Bently
2
2
 
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
 
5
5
  end
@@ -199,6 +199,7 @@ describe Bently::Base do
199
199
  @bently.read 'simple_form'
200
200
  @bently.read 'twitter'
201
201
  @bently.read 'twitter-bootstrap-rails'
202
+ @bently.read 'backbone-rails'
202
203
  end
203
204
  end
204
205
 
metadata CHANGED
@@ -1,56 +1,63 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: bently
3
- version: !ruby/object:Gem::Version
4
- version: 1.0.1
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ hash: 19
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 0
9
+ - 2
10
+ version: 1.0.2
6
11
  platform: ruby
7
- authors:
12
+ authors:
8
13
  - Benjamin Sullivan
9
14
  autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
- date: 2013-03-09 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
17
+
18
+ date: 2013-03-31 00:00:00 +09:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
15
22
  name: thor
16
- requirement: !ruby/object:Gem::Requirement
17
- none: false
18
- requirements:
19
- - - ! '>='
20
- - !ruby/object:Gem::Version
21
- version: 0.14.6
22
- type: :runtime
23
23
  prerelease: false
24
- version_requirements: !ruby/object:Gem::Requirement
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
25
  none: false
26
- requirements:
27
- - - ! '>='
28
- - !ruby/object:Gem::Version
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 43
30
+ segments:
31
+ - 0
32
+ - 14
33
+ - 6
29
34
  version: 0.14.6
30
- - !ruby/object:Gem::Dependency
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
31
38
  name: rspec
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ~>
36
- - !ruby/object:Gem::Version
37
- version: '2.6'
38
- type: :development
39
39
  prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
41
  none: false
42
- requirements:
42
+ requirements:
43
43
  - - ~>
44
- - !ruby/object:Gem::Version
45
- version: '2.6'
46
- description: Bently is a community maintained library of recipes for the installation
47
- and configuration of application-level dependencies
44
+ - !ruby/object:Gem::Version
45
+ hash: 15
46
+ segments:
47
+ - 2
48
+ - 6
49
+ version: "2.6"
50
+ type: :development
51
+ version_requirements: *id002
52
+ description: Bently is a community maintained library of recipes for the installation and configuration of application-level dependencies
48
53
  email: ruby-bently@googlegroups.com
49
- executables:
54
+ executables:
50
55
  - bently
51
56
  extensions: []
57
+
52
58
  extra_rdoc_files: []
53
- files:
59
+
60
+ files:
54
61
  - .gitignore
55
62
  - .travis.yml
56
63
  - Gemfile
@@ -67,6 +74,7 @@ files:
67
74
  - lib/bently/recipe/action-mailer.rb
68
75
  - lib/bently/recipe/active_admin.rb
69
76
  - lib/bently/recipe/acts-as-taggable-on.rb
77
+ - lib/bently/recipe/backbone-rails.rb
70
78
  - lib/bently/recipe/better-errors.rb
71
79
  - lib/bently/recipe/cancan.rb
72
80
  - lib/bently/recipe/carrierwave.rb
@@ -138,28 +146,39 @@ files:
138
146
  - lib/bently/version.rb
139
147
  - spec/bently/base_spec.rb
140
148
  - spec/spec_helper.rb
149
+ has_rdoc: true
141
150
  homepage: http://github.com/bonsaiben/bently
142
151
  licenses: []
152
+
143
153
  post_install_message:
144
154
  rdoc_options: []
145
- require_paths:
155
+
156
+ require_paths:
146
157
  - lib
147
- required_ruby_version: !ruby/object:Gem::Requirement
158
+ required_ruby_version: !ruby/object:Gem::Requirement
148
159
  none: false
149
- requirements:
150
- - - ! '>='
151
- - !ruby/object:Gem::Version
152
- version: '0'
153
- required_rubygems_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ hash: 3
164
+ segments:
165
+ - 0
166
+ version: "0"
167
+ required_rubygems_version: !ruby/object:Gem::Requirement
154
168
  none: false
155
- requirements:
156
- - - ! '>='
157
- - !ruby/object:Gem::Version
158
- version: '0'
169
+ requirements:
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ hash: 3
173
+ segments:
174
+ - 0
175
+ version: "0"
159
176
  requirements: []
177
+
160
178
  rubyforge_project:
161
- rubygems_version: 1.8.24
179
+ rubygems_version: 1.3.7
162
180
  signing_key:
163
181
  specification_version: 3
164
182
  summary: Application-level dependency installation/configuration recipe manager
165
183
  test_files: []
184
+