app_drone 0.9.1 → 0.9.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -282,14 +282,14 @@ AppDrone is not for everyone. It's highly opinionated about how a Rails app shou
282
282
  - [ui] **Gritter** for jQuery growl-like notifications
283
283
  - [ui] **Underscore.js** utility belt
284
284
  - [ux] **Ember** (the Ember.js library)
285
- - [requests] **Responders** from Plataformatec
286
- - [requests] **HasScope** for mapping filters to controller actions
287
- - [requests] **WillPaginate** with automatic Bootstrap integration
288
- - [dev] **LetterOpener** to preview email in the browser instead of sending it\
285
+ - [controller] **Responders** from Plataformatec
286
+ - [controller] **HasScope** for mapping filters to controller actions
287
+ - [controller] **WillPaginate** with automatic Bootstrap integration
288
+ - [misc] **LetterOpener** to preview email in the browser instead of sending it\
289
289
  - [misc] **Chronic** for natural language date parsing
290
290
  - [misc] **Timecop** - time travelling for Ruby
291
291
  - [misc] **NiftyGenerators**, a collection of useful Rails generator scripts
292
- - [production] **NewRelic** app performance monitoring
292
+ - [misc] **NewRelic** app performance monitoring
293
293
  - [uploads] **Carrierwave** file uploading plus optional Fog cloud storage
294
294
  - [uploads] **Remotipart**, for AJAX file uploads with jQuery
295
295
  - [test] **RSpec** for BDD
@@ -1,7 +1,7 @@
1
1
  module AppDrone
2
2
  class HasScope < Drone
3
3
  desc "Filter controller actions with scopes"
4
- category :requests
4
+ category :controller
5
5
 
6
6
  depends_on :bundle
7
7
 
@@ -1,7 +1,7 @@
1
1
  module AppDrone
2
2
  class LetterOpener < Drone
3
3
  desc "Preview mail in the browser instead of sending it"
4
- category :dev
4
+ category :misc # TODO :dev
5
5
 
6
6
  depends_on :bundle
7
7
 
@@ -1,7 +1,7 @@
1
1
  module AppDrone
2
2
  class NewRelic < Drone
3
3
  desc "App performance monitoring"
4
- category :production
4
+ category :misc # TODO :production
5
5
 
6
6
  depends_on :bundle
7
7
 
@@ -10,4 +10,4 @@ class NewRelic < Drone
10
10
  end
11
11
 
12
12
  end
13
- end
13
+ end
@@ -1,7 +1,7 @@
1
1
  module AppDrone
2
2
  class Responderz < Drone
3
3
  desc "DRY up your controllers"
4
- category :requests
4
+ category :controller
5
5
 
6
6
  depends_on :bundle
7
7
 
@@ -1,7 +1,7 @@
1
1
  module AppDrone
2
2
  class WillPaginate < Drone
3
3
  desc "Simple pagination library, with automatic Bootstrap integration"
4
- category :requests
4
+ category :controller
5
5
 
6
6
  depends_on :bundle
7
7
  pairs_with :bootstrap
@@ -1,3 +1,3 @@
1
1
  module AppDrone
2
- VERSION = "0.9.1"
2
+ VERSION = "0.9.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: app_drone
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.9.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-05-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport
16
- requirement: &20522280 !ruby/object:Gem::Requirement
16
+ requirement: &16418980 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 3.2.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *20522280
24
+ version_requirements: *16418980
25
25
  description: Give your Rails apps a kickstart
26
26
  email:
27
27
  - whoisdanieldavey@gmail.com