factory_girl_rails 4.7.0 → 4.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +3 -3
  3. data/Gemfile.lock +5 -5
  4. data/NEWS +9 -0
  5. data/README.md +9 -4
  6. data/bin/stubs/a2h +16 -0
  7. data/bin/stubs/appraisal +17 -0
  8. data/bin/stubs/aruba +16 -0
  9. data/bin/stubs/autospec +17 -0
  10. data/bin/stubs/bcat +16 -0
  11. data/bin/stubs/btee +16 -0
  12. data/bin/stubs/bundler +17 -0
  13. data/bin/stubs/cdiff +16 -0
  14. data/bin/stubs/cucumber +17 -0
  15. data/bin/stubs/decolor +16 -0
  16. data/bin/stubs/erubis +17 -0
  17. data/bin/stubs/htmldiff +17 -0
  18. data/bin/stubs/ldiff +17 -0
  19. data/bin/stubs/nokogiri +16 -0
  20. data/bin/stubs/rackup +17 -0
  21. data/bin/stubs/rails +17 -0
  22. data/bin/stubs/rake +17 -0
  23. data/bin/stubs/rake2thor +16 -0
  24. data/bin/stubs/rdiscount +16 -0
  25. data/bin/stubs/rdoc +16 -0
  26. data/bin/stubs/ri +16 -0
  27. data/bin/stubs/rspec +17 -0
  28. data/bin/stubs/setup +16 -0
  29. data/bin/stubs/sprockets +16 -0
  30. data/bin/stubs/thor +17 -0
  31. data/bin/stubs/tilt +16 -0
  32. data/factory_girl_rails.gemspec +6 -5
  33. data/gemfiles/rails3.2.gemfile.lock +177 -0
  34. data/gemfiles/rails4.1.gemfile.lock +175 -0
  35. data/gemfiles/rails4.2.gemfile.lock +192 -0
  36. data/gemfiles/rails5.0.gemfile +3 -3
  37. data/gemfiles/rails5.0.gemfile.lock +155 -0
  38. data/pkg/factory_girl_rails-4.5.0.gem +0 -0
  39. data/tmp/aruba/testapp/Gemfile +50 -0
  40. data/tmp/aruba/testapp/Gemfile.lock +188 -0
  41. data/tmp/aruba/testapp/README.md +24 -0
  42. data/tmp/aruba/testapp/Rakefile +6 -0
  43. data/tmp/aruba/testapp/app/assets/config/manifest.js +3 -0
  44. data/tmp/aruba/testapp/app/assets/javascripts/application.js +16 -0
  45. data/tmp/aruba/testapp/app/assets/javascripts/cable.js +13 -0
  46. data/tmp/aruba/testapp/app/assets/stylesheets/application.css +15 -0
  47. data/tmp/aruba/testapp/app/channels/application_cable/channel.rb +4 -0
  48. data/tmp/aruba/testapp/app/channels/application_cable/connection.rb +4 -0
  49. data/tmp/aruba/testapp/app/controllers/application_controller.rb +3 -0
  50. data/tmp/aruba/testapp/app/helpers/application_helper.rb +2 -0
  51. data/tmp/aruba/testapp/app/jobs/application_job.rb +2 -0
  52. data/tmp/aruba/testapp/app/mailers/application_mailer.rb +4 -0
  53. data/tmp/aruba/testapp/app/models/application_record.rb +3 -0
  54. data/tmp/aruba/testapp/app/models/user.rb +2 -0
  55. data/tmp/aruba/testapp/app/views/layouts/application.html.erb +14 -0
  56. data/tmp/aruba/testapp/app/views/layouts/mailer.html.erb +13 -0
  57. data/tmp/aruba/testapp/app/views/layouts/mailer.text.erb +1 -0
  58. data/tmp/aruba/testapp/bin/bundle +3 -0
  59. data/tmp/aruba/testapp/bin/rails +9 -0
  60. data/tmp/aruba/testapp/bin/rake +9 -0
  61. data/tmp/aruba/testapp/bin/setup +34 -0
  62. data/tmp/aruba/testapp/bin/spring +16 -0
  63. data/tmp/aruba/testapp/bin/update +29 -0
  64. data/tmp/aruba/testapp/config.ru +5 -0
  65. data/tmp/aruba/testapp/config/application.rb +16 -0
  66. data/tmp/aruba/testapp/config/boot.rb +3 -0
  67. data/tmp/aruba/testapp/config/cable.yml +9 -0
  68. data/tmp/aruba/testapp/config/database.yml +25 -0
  69. data/tmp/aruba/testapp/config/environment.rb +5 -0
  70. data/tmp/aruba/testapp/config/environments/development.rb +54 -0
  71. data/tmp/aruba/testapp/config/environments/production.rb +86 -0
  72. data/tmp/aruba/testapp/config/environments/test.rb +42 -0
  73. data/tmp/aruba/testapp/config/initializers/application_controller_renderer.rb +6 -0
  74. data/tmp/aruba/testapp/config/initializers/assets.rb +11 -0
  75. data/tmp/aruba/testapp/config/initializers/backtrace_silencers.rb +7 -0
  76. data/tmp/aruba/testapp/config/initializers/cookies_serializer.rb +5 -0
  77. data/tmp/aruba/testapp/config/initializers/filter_parameter_logging.rb +4 -0
  78. data/tmp/aruba/testapp/config/initializers/inflections.rb +16 -0
  79. data/tmp/aruba/testapp/config/initializers/mime_types.rb +4 -0
  80. data/tmp/aruba/testapp/config/initializers/new_framework_defaults.rb +24 -0
  81. data/tmp/aruba/testapp/config/initializers/session_store.rb +3 -0
  82. data/tmp/aruba/testapp/config/initializers/wrap_parameters.rb +14 -0
  83. data/tmp/aruba/testapp/config/locales/en.yml +23 -0
  84. data/tmp/aruba/testapp/config/puma.rb +47 -0
  85. data/tmp/aruba/testapp/config/routes.rb +3 -0
  86. data/tmp/aruba/testapp/config/secrets.yml +22 -0
  87. data/tmp/aruba/testapp/config/spring.rb +6 -0
  88. data/tmp/aruba/testapp/db/development.sqlite3 +0 -0
  89. data/tmp/aruba/testapp/db/migrate/1_create_users.rb +7 -0
  90. data/tmp/aruba/testapp/db/schema.rb +19 -0
  91. data/tmp/aruba/testapp/db/seeds.rb +7 -0
  92. data/tmp/aruba/testapp/db/test.sqlite3 +0 -0
  93. data/tmp/aruba/testapp/lib/some_railtie/factories.rb +5 -0
  94. data/tmp/aruba/testapp/lib/some_railtie/railties.rb +8 -0
  95. data/tmp/aruba/testapp/log/development.log +16 -0
  96. data/tmp/aruba/testapp/log/test.log +21 -0
  97. data/tmp/aruba/testapp/public/404.html +67 -0
  98. data/tmp/aruba/testapp/public/422.html +67 -0
  99. data/tmp/aruba/testapp/public/500.html +66 -0
  100. data/tmp/aruba/testapp/public/apple-touch-icon-precomposed.png +0 -0
  101. data/tmp/aruba/testapp/public/apple-touch-icon.png +0 -0
  102. data/tmp/aruba/testapp/public/favicon.ico +0 -0
  103. data/tmp/aruba/testapp/public/robots.txt +5 -0
  104. data/tmp/aruba/testapp/test/test_helper.rb +10 -0
  105. data/tmp/aruba/testapp/test/unit/user_test.rb +8 -0
  106. metadata +105 -9
  107. data/.gitignore +0 -9
  108. data/.travis.yml +0 -30
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 82ed45c56d31afc2ad32e1127f93c197df69bcbf
4
- data.tar.gz: 667a7c6a59e31bc6cb8dfe97550534939949dfa9
3
+ metadata.gz: e76135ec76862316dc996e6ac6ddbe6225609bf7
4
+ data.tar.gz: c3a4b3de71ba87d2226f271da65c180585178953
5
5
  SHA512:
6
- metadata.gz: 74a9f0c0e3191575c37187d5f5e564b4d13b42dcefd70d00e42e9c80af74b0df9fcea3a1c21d02e5c4633d6c7ec557183803fb58e0b89dc9098b28a9f1fdb636
7
- data.tar.gz: 8bcd632cc0a32c1c62a67796fce4f03614b1593bdb2e561193ce76efd45ee10e64b5dc3f745277ec402e9cfc387797753588850b7cd09fe2875e5d73eb946748
6
+ metadata.gz: edf5025535afc517cd6fe0fce3c48175368fc784acbc86c139fffd8dd7d1bb493211b63653c1cb5190367c49c13f39c3619ec14fde2beecfe4012625f537c5af
7
+ data.tar.gz: e0a170d2cbf48cc6621b5ee04c2c1343b5eb84ee87b223489d823dc0c50051ec7f0519e65f7a746f3a99988f26a9a15b917b3ddbef84d64e35ad6cc40b172fac
data/Appraisals CHANGED
@@ -15,7 +15,7 @@ appraise 'rails4.2' do
15
15
  end
16
16
 
17
17
  appraise "rails5.0" do
18
- gem "activerecord", "~> 5.0.0.beta3"
19
- gem "railties", "~> 5.0.0.beta3"
20
- gem "rspec-rails", "~> 3.5.0.beta3"
18
+ gem "activerecord", "~> 5.0.0"
19
+ gem "railties", "~> 5.0.0"
20
+ gem "rspec-rails", "~> 3.5.0.beta4"
21
21
  end
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- factory_girl_rails (4.7.0)
5
- factory_girl (~> 4.7.0)
4
+ factory_girl_rails (4.8.0)
5
+ factory_girl (~> 4.8.0)
6
6
  railties (>= 3.0.0)
7
7
 
8
8
  GEM
@@ -63,7 +63,7 @@ GEM
63
63
  diff-lcs (1.2.5)
64
64
  erubis (2.7.0)
65
65
  execjs (2.0.2)
66
- factory_girl (4.7.0)
66
+ factory_girl (4.8.0)
67
67
  activesupport (>= 3.0.0)
68
68
  ffi (1.9.3)
69
69
  ffi (1.9.3-java)
@@ -79,7 +79,7 @@ GEM
79
79
  jruby-openssl (0.9.6-java)
80
80
  json (1.8.3)
81
81
  json (1.8.3-java)
82
- minitest (5.8.4)
82
+ minitest (5.9.0)
83
83
  multi_json (1.11.2)
84
84
  multi_test (0.1.2)
85
85
  power_assert (0.2.3)
@@ -141,4 +141,4 @@ DEPENDENCIES
141
141
  uglifier
142
142
 
143
143
  BUNDLED WITH
144
- 1.11.2
144
+ 1.13.6
data/NEWS CHANGED
@@ -1,6 +1,15 @@
1
+ factory_girl_rails versioning is synced with factory_girl releases. For this reason
2
+ there might not be any notable changes in new versions of this project.
3
+
1
4
  4.7.0 (April 1, 2016)
2
5
  No notable changes
3
6
 
7
+ 4.6.0 (February 1, 2016)
8
+ No notable changes
9
+
10
+ 4.5.0 (October 17, 2014)
11
+ Improved README
12
+
4
13
  4.4.1 (February 26, 2014)
5
14
  Support Spring
6
15
 
data/README.md CHANGED
@@ -21,14 +21,16 @@ Github: http://github.com/thoughtbot/factory_girl_rails
21
21
 
22
22
  Gem:
23
23
 
24
- gem install factory_girl_rails
24
+ $ gem install factory_girl_rails
25
25
 
26
26
  ## Configuration
27
27
 
28
28
  Add `factory_girl_rails` to your Gemfile:
29
29
 
30
30
  ```ruby
31
- gem 'factory_girl_rails'
31
+ group :development, :test do
32
+ gem 'factory_girl_rails'
33
+ end
32
34
  ```
33
35
 
34
36
  Generators for factories will automatically substitute fixture (and maybe any other
@@ -62,6 +64,9 @@ If you use factory_girl for fixture replacement and already have a
62
64
  factory_girl_rails will insert new factory definitions at the top of
63
65
  `factories.rb`.
64
66
 
67
+ You may need to configure your test suite to include factory_girl methods; see
68
+ [configuration](https://github.com/thoughtbot/factory_girl/blob/master/GETTING_STARTED.md#configure-your-test-suite).
69
+
65
70
  ## Contributing
66
71
 
67
72
  Please see [CONTRIBUTING.md](CONTRIBUTING.md).
@@ -78,9 +83,9 @@ The names and logos for thoughtbot are trademarks of thoughtbot, inc.
78
83
 
79
84
  ## License
80
85
 
81
- factory_girl_rails is Copyright © 2008-2014 Joe Ferris and thoughtbot. It is free
86
+ factory_girl_rails is Copyright © 2008-2016 Joe Ferris and thoughtbot. It is free
82
87
  software, and may be redistributed under the terms specified in the
83
- [LICENSE]() file.
88
+ [LICENSE](LICENSE) file.
84
89
 
85
90
  [fg]: https://github.com/thoughtbot/factory_girl
86
91
  [ci]: http://travis-ci.org/thoughtbot/factory_girl_rails?branch=master
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'a2h' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('bcat', 'a2h')
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'appraisal' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("appraisal", "appraisal")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'aruba' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require "pathname"
10
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require "rubygems"
14
+ require "bundler/setup"
15
+
16
+ load Gem.bin_path("aruba", "aruba")
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'autospec' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rspec-core", "autospec")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'bcat' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('bcat', 'bcat')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'btee' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('bcat', 'btee')
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'bundler' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("bundler", "bundler")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'cdiff' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('term-ansicolor', 'cdiff')
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'cucumber' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("cucumber", "cucumber")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'decolor' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('term-ansicolor', 'decolor')
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'erubis' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("erubis", "erubis")
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'htmldiff' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("diff-lcs", "htmldiff")
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'ldiff' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("diff-lcs", "ldiff")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'nokogiri' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require "pathname"
10
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require "rubygems"
14
+ require "bundler/setup"
15
+
16
+ load Gem.bin_path("nokogiri", "nokogiri")
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rackup' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rack", "rackup")
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rails' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("railties", "rails")
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+ #
4
+ # This file was generated by Bundler.
5
+ #
6
+ # The application 'rake' is installed as part of a gem, and
7
+ # this file is here to facilitate running it.
8
+ #
9
+
10
+ require "pathname"
11
+ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../../../Gemfile",
12
+ Pathname.new(__FILE__).realpath)
13
+
14
+ require "rubygems"
15
+ require "bundler/setup"
16
+
17
+ load Gem.bin_path("rake", "rake")
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rake2thor' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('thor', 'rake2thor')
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+ #
3
+ # This file was generated by Bundler.
4
+ #
5
+ # The application 'rdiscount' is installed as part of a gem, and
6
+ # this file is here to facilitate running it.
7
+ #
8
+
9
+ require 'pathname'
10
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path("../../../Gemfile",
11
+ Pathname.new(__FILE__).realpath)
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+
16
+ load Gem.bin_path('rdiscount', 'rdiscount')