happy_seed 0.0.4 → 0.0.5
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.
- checksums.yaml +13 -5
- data/happy_seed.rb +20 -0
- data/lib/happy_seed/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
N2U3MGEzNDc1M2I5NTU3YmE1MzliMmIwMzdlZTRmN2M5ZGQ5ODhmYQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
ZDc5MTg5OTAzMTY3NGNiNTllNzBkNDY5Zjg3OWRlOWMxYzU2N2NmMw==
|
5
7
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
MzE0ZjRmZTliNGZmODQ4OWI4OGRkOWY4MjY0ODYwZWMwMWI3N2Y5ZmQ2NDlm
|
10
|
+
ZTMzZTVkOTA0NTY3MjAxNGQ1MDVkZDdiOWQ0ZGNjN2ExYTlmNzgyNjFlOTll
|
11
|
+
NzcwYjIxZTFlZjU3NDVlZWNmZmIwNjkwNjBmMzA0MjY5ZTlmZjU=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
OGI0ZmJmYzA1ZmFjMGRjZjk0OWRkMmZjNmQ1MTU1N2M2YWU2NmFkZmZmZjYx
|
14
|
+
YjA0OTAxZTM0NmYyYTQ4ZGU0OTI3ZWRmODQxOTI5YjRlYmYzMWViM2JhM2Vh
|
15
|
+
MTI3NGYzNGMyODljNjg4NTdkMDcwZjlkYjc0MDY0NzU5MGU1Yjc=
|
data/happy_seed.rb
CHANGED
@@ -1,4 +1,19 @@
|
|
1
1
|
gem 'haml-rails'
|
2
|
+
gsub_file 'Gemfile', /.*sqlite3.*/, ""
|
3
|
+
|
4
|
+
gem_group :development, :test do
|
5
|
+
gem "sqlite3"
|
6
|
+
gem "rspec"
|
7
|
+
gem "rspec-rails"
|
8
|
+
gem "rspec-autotest"
|
9
|
+
gem "factory_girl_rails"
|
10
|
+
gem "autotest-rails"
|
11
|
+
end
|
12
|
+
|
13
|
+
gem_group :production do
|
14
|
+
gem 'pg'
|
15
|
+
end
|
16
|
+
|
2
17
|
gem 'meta-tags', :require => 'meta_tags'
|
3
18
|
if ENV['SEED_DEVELOPMENT']
|
4
19
|
gem 'happy_seed', :path => File.dirname(__FILE__)
|
@@ -13,6 +28,11 @@ run 'bundle install'
|
|
13
28
|
|
14
29
|
gsub_file "app/assets/javascripts/application.js", /= require turbolinks/, "require turbolinks"
|
15
30
|
|
31
|
+
# Install rspec
|
32
|
+
generate "rspec:install"
|
33
|
+
gsub_file ".rspec", "--warnings\n", ""
|
34
|
+
append_to_file ".rspec", "--format documentation\n"
|
35
|
+
|
16
36
|
# Run the base generator
|
17
37
|
generate "happy_seed:foreman"
|
18
38
|
|
data/lib/happy_seed/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: happy_seed
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Will Schenk
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-07-
|
12
|
+
date: 2014-07-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -29,14 +29,14 @@ dependencies:
|
|
29
29
|
name: sqlite3
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
|
-
- - '>='
|
32
|
+
- - ! '>='
|
33
33
|
- !ruby/object:Gem::Version
|
34
34
|
version: '0'
|
35
35
|
type: :development
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
|
-
- - '>='
|
39
|
+
- - ! '>='
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '0'
|
42
42
|
description: HappySeed is a project that will build up a rails apps using some common
|
@@ -171,17 +171,17 @@ require_paths:
|
|
171
171
|
- lib
|
172
172
|
required_ruby_version: !ruby/object:Gem::Requirement
|
173
173
|
requirements:
|
174
|
-
- - '>='
|
174
|
+
- - ! '>='
|
175
175
|
- !ruby/object:Gem::Version
|
176
176
|
version: '0'
|
177
177
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
178
|
requirements:
|
179
|
-
- - '>='
|
179
|
+
- - ! '>='
|
180
180
|
- !ruby/object:Gem::Version
|
181
181
|
version: '0'
|
182
182
|
requirements: []
|
183
183
|
rubyforge_project:
|
184
|
-
rubygems_version: 2.
|
184
|
+
rubygems_version: 2.3.0
|
185
185
|
signing_key:
|
186
186
|
specification_version: 4
|
187
187
|
summary: HappySeed is a project that will build up a rails apps using some common
|