sparkler 0.3.1 → 0.3.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
@@ -57,6 +57,11 @@ Install the gem: `gem install sparkler`.
57
57
  4. Push to the branch (`git push origin my-new-feature`)
58
58
  5. Create new Pull Request
59
59
 
60
+ ## License
61
+
62
+ sparkler is Copyright © 2008-2013 Gaslight. It is free software, and may be redistributed under
63
+ the terms specified in the LICENSE file.
64
+
60
65
  [Gaslight]: http://gaslightsoftware.com
61
66
  [Vendor Everything]: http://ryan.mcgeary.org/2011/02/09/vendor-everything-still-applies/
62
67
  [RDiscount]: https://github.com/rtomayko/rdiscount
@@ -5,7 +5,7 @@ module Sparkler
5
5
  class AppGenerator < Rails::Generators::AppGenerator
6
6
  class_option :skip_test_unit, type: :boolean, aliases: '-T', default: true, desc: 'Skip Test::Unit files'
7
7
  class_option :database, type: :string, aliases: '-d', default: 'sqlite3', desc: "Preconfigure for selected database (options: #{DATABASES.join('/')})"
8
- class_option :local_database, type: :boolean, aliases: '--local-database', default: false, desc: "Create a pg folder in the application"
8
+ class_option :local_database, type: :boolean, aliases: '-D', default: false, desc: "Create a pg folder in the application"
9
9
 
10
10
  def finish_template
11
11
  invoke :sparkler_customization
@@ -1,3 +1,3 @@
1
1
  module Sparkler
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
data/sparkler.gemspec CHANGED
@@ -16,6 +16,6 @@ Gem::Specification.new do |gem|
16
16
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
17
  gem.require_paths = ["lib"]
18
18
 
19
- gem.add_dependency 'rails', '3.2.8'
19
+ gem.add_dependency 'rails', '3.2.11'
20
20
  gem.add_dependency 'bundler', '>= 1.1'
21
21
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sparkler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,22 +9,27 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-10-29 00:00:00.000000000 Z
12
+ date: 2013-02-10 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &70346543831740 !ruby/object:Gem::Requirement
16
+ requirement: !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
- - - =
19
+ - - '='
20
20
  - !ruby/object:Gem::Version
21
- version: 3.2.8
21
+ version: 3.2.11
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70346543831740
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - '='
28
+ - !ruby/object:Gem::Version
29
+ version: 3.2.11
25
30
  - !ruby/object:Gem::Dependency
26
31
  name: bundler
27
- requirement: &70346552773300 !ruby/object:Gem::Requirement
32
+ requirement: !ruby/object:Gem::Requirement
28
33
  none: false
29
34
  requirements:
30
35
  - - ! '>='
@@ -32,7 +37,12 @@ dependencies:
32
37
  version: '1.1'
33
38
  type: :runtime
34
39
  prerelease: false
35
- version_requirements: *70346552773300
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '1.1'
36
46
  description: Spin up a Rails app using all the tools and frameworks we like at Gaslight.
37
47
  Inspired heavily by thoughtbot's Suspenders.
38
48
  email:
@@ -88,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
98
  version: '0'
89
99
  requirements: []
90
100
  rubyforge_project:
91
- rubygems_version: 1.8.11
101
+ rubygems_version: 1.8.23
92
102
  signing_key:
93
103
  specification_version: 3
94
104
  summary: Generate a Rails app using Gaslight's choices of gems and frameworks.