jetfuel 1.19.0 → 1.19.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93d25a3964d73e0f25babdc05c7c0820fdfaf260
4
- data.tar.gz: 6a3bba65ab902ad50d77294683af8ad75a9464b2
3
+ metadata.gz: e4f7355a3102176c3149639fdd6e1ba5c47486c8
4
+ data.tar.gz: 833b266a04d63bfd0a7fa2f513dbc108f8382435
5
5
  SHA512:
6
- metadata.gz: efe89ecee32f06d60408828fb6fafd8b4acd800535e7fd6254df24bc9dd4e624d57667cdf46dbaa3aaecbdcc397e396829bc16a624fed0c68853feb118a95efc
7
- data.tar.gz: 47f9b01b608132c0220500b23a04e331e6384d305ba61219fd022c4231a123f99a537825cbfdfb356ab4aac1166d8709ff7b773f012a4eda56e57e1bc6f9dbb6
6
+ metadata.gz: 0487281e94c0baa20de17e9797cfb46ad79a6154cb46be2549bc8069fd903e4422405d3ce6a71e7d9e7782d937c4c315ebe413a0f361840f2fc47fbf24519b88
7
+ data.tar.gz: 02bdb64c2ea0966b3f54b423379e4b74d81e1b8001581aa41eac2a651801875df3471158700b91bf032ac05c366ad0bc918955d8a7c40e0461d0f106a411e830
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- jetfuel (1.19.0)
4
+ jetfuel (1.19.1)
5
5
  bundler (~> 1.3)
6
6
  rails (= 4.1.1)
7
7
 
data/README.md CHANGED
@@ -93,8 +93,9 @@ And development gems like:
93
93
  And testing gems like:
94
94
 
95
95
  * [Capybara](https://github.com/jnicklas/capybara) and
96
- [Capybara Webkit](https://github.com/thoughtbot/capybara-webkit) for
96
+ [Poltergeist](https://github.com/teampoltergeist/poltergeist) for
97
97
  integration testing
98
+ * [Guard](https://github.com/guard/guard-rspec) for automatically running your specs
98
99
  * [Factory Girl](https://github.com/thoughtbot/factory_girl) for test data
99
100
  * [Formulaic](https://github.com/thoughtbot/formulaic) for integration testing
100
101
  HTML forms
@@ -204,15 +205,11 @@ Please see CONTRIBUTING.md for further details.
204
205
  Credits
205
206
  -------
206
207
 
207
- ![thoughtbot](http://thoughtbot.com/images/tm/logo.png)
208
-
209
- Jetfuel is maintained and funded by
210
- [flyoverworks, inc](http://flyoverworks.com/).
211
-
212
- The names and logos for thoughtbot are trademarks of thoughtbot, inc.
208
+ Jetfuel is a for of thoughtbot's suspenders gem and is maintained by
209
+ [FlyoverWorks, inc](http://flyoverworks.com/).
213
210
 
214
211
  License
215
212
  -------
216
213
 
217
- Jetfuel is Copyright © 2008-2014 thoughtbot. It is free software, and may be
214
+ Jetfuel is Copyright © 2014 FlyoverWorks. It is free software, and may be
218
215
  redistributed under the terms specified in the LICENSE file.
@@ -30,10 +30,6 @@ module Jetfuel
30
30
  run 'chmod a+x bin/setup'
31
31
  end
32
32
 
33
- def provide_dev_prime_task
34
- copy_file 'development_seeds.rb', 'lib/tasks/development_seeds.rake'
35
- end
36
-
37
33
  def configure_generators
38
34
  config = <<-RUBY
39
35
  config.generators do |generate|
@@ -77,7 +77,6 @@ module Jetfuel
77
77
  build :raise_on_delivery_errors
78
78
  build :raise_on_unpermitted_parameters
79
79
  build :provide_setup_script
80
- build :provide_dev_prime_task
81
80
  build :configure_generators
82
81
  end
83
82
 
@@ -1,5 +1,5 @@
1
1
  module Jetfuel
2
2
  RAILS_VERSION = '4.1.1'
3
3
  RUBY_VERSION = IO.read("#{File.dirname(__FILE__)}/../../.ruby-version").strip
4
- VERSION = '1.19.0'
4
+ VERSION = '1.19.1'
5
5
  end
data/templates/bin_setup CHANGED
@@ -15,7 +15,7 @@ if [ ! -f .env ]; then
15
15
  fi
16
16
 
17
17
  # Set up database and add any development seed data
18
- bundle exec rake dev:prime
18
+ bundle exec rake db:setup
19
19
 
20
20
  # Add binstubs to PATH via export PATH=".git/safe/../../bin:$PATH" in ~/.zshenv
21
21
  mkdir -p .git/safe
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jetfuel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - FlyoverWorks