greenin 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +11 -0
  5. data/Gemfile +4 -0
  6. data/README.md +32 -11
  7. data/greenin.gemspec +14 -2
  8. data/lib/active_record_overrides.rb +19 -10
  9. data/lib/greenin/version.rb +1 -1
  10. data/spec/dummy/README.rdoc +28 -0
  11. data/spec/dummy/Rakefile +6 -0
  12. data/spec/dummy/app/api/base_api.rb +10 -0
  13. data/spec/dummy/app/api/dummy_api.rb +2 -0
  14. data/spec/dummy/app/assets/images/.keep +0 -0
  15. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  16. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  17. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  18. data/spec/dummy/app/controllers/concerns/.keep +0 -0
  19. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  20. data/spec/dummy/app/mailers/.keep +0 -0
  21. data/spec/dummy/app/models/.keep +0 -0
  22. data/spec/dummy/app/models/concerns/.keep +0 -0
  23. data/spec/dummy/app/models/post.rb +6 -0
  24. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/spec/dummy/bin/bundle +3 -0
  26. data/spec/dummy/bin/rails +4 -0
  27. data/spec/dummy/bin/rake +4 -0
  28. data/spec/dummy/bin/setup +29 -0
  29. data/spec/dummy/config.ru +4 -0
  30. data/spec/dummy/config/application.rb +43 -0
  31. data/spec/dummy/config/boot.rb +5 -0
  32. data/spec/dummy/config/database.yml +25 -0
  33. data/spec/dummy/config/environment.rb +5 -0
  34. data/spec/dummy/config/environments/development.rb +38 -0
  35. data/spec/dummy/config/environments/production.rb +79 -0
  36. data/spec/dummy/config/environments/test.rb +37 -0
  37. data/spec/dummy/config/initializers/assets.rb +11 -0
  38. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  39. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  40. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  41. data/spec/dummy/config/initializers/inflections.rb +16 -0
  42. data/spec/dummy/config/initializers/initializer.rb +4 -0
  43. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  44. data/spec/dummy/config/initializers/session_store.rb +3 -0
  45. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  46. data/spec/dummy/config/locales/en.yml +23 -0
  47. data/spec/dummy/config/routes.rb +57 -0
  48. data/spec/dummy/config/secrets.yml +22 -0
  49. data/spec/dummy/db/development.sqlite3 +0 -0
  50. data/spec/dummy/db/migrate/20150224174059_create_posts.rb +9 -0
  51. data/spec/dummy/db/schema.rb +22 -0
  52. data/spec/dummy/db/test.sqlite3 +0 -0
  53. data/spec/dummy/lib/assets/.keep +0 -0
  54. data/spec/dummy/log/.keep +0 -0
  55. data/spec/dummy/public/404.html +67 -0
  56. data/spec/dummy/public/422.html +67 -0
  57. data/spec/dummy/public/500.html +66 -0
  58. data/spec/dummy/public/favicon.ico +0 -0
  59. data/spec/factories/posts.rb +5 -0
  60. data/spec/models/active_record_spec.rb +18 -0
  61. data/spec/models/api_spec.rb +50 -0
  62. data/spec/models/settings_spec.rb +6 -0
  63. data/spec/rails_helper.rb +65 -0
  64. data/spec/spec_helper.rb +95 -0
  65. metadata +247 -7
@@ -0,0 +1,67 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/422.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>The change you wanted was rejected.</h1>
62
+ <p>Maybe you tried to change something you didn't have access to.</p>
63
+ </div>
64
+ <p>If you are the application owner check the logs for more information.</p>
65
+ </div>
66
+ </body>
67
+ </html>
@@ -0,0 +1,66 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <meta name="viewport" content="width=device-width,initial-scale=1">
6
+ <style>
7
+ body {
8
+ background-color: #EFEFEF;
9
+ color: #2E2F30;
10
+ text-align: center;
11
+ font-family: arial, sans-serif;
12
+ margin: 0;
13
+ }
14
+
15
+ div.dialog {
16
+ width: 95%;
17
+ max-width: 33em;
18
+ margin: 4em auto 0;
19
+ }
20
+
21
+ div.dialog > div {
22
+ border: 1px solid #CCC;
23
+ border-right-color: #999;
24
+ border-left-color: #999;
25
+ border-bottom-color: #BBB;
26
+ border-top: #B00100 solid 4px;
27
+ border-top-left-radius: 9px;
28
+ border-top-right-radius: 9px;
29
+ background-color: white;
30
+ padding: 7px 12% 0;
31
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
32
+ }
33
+
34
+ h1 {
35
+ font-size: 100%;
36
+ color: #730E15;
37
+ line-height: 1.5em;
38
+ }
39
+
40
+ div.dialog > p {
41
+ margin: 0 0 1em;
42
+ padding: 1em;
43
+ background-color: #F7F7F7;
44
+ border: 1px solid #CCC;
45
+ border-right-color: #999;
46
+ border-left-color: #999;
47
+ border-bottom-color: #999;
48
+ border-bottom-left-radius: 4px;
49
+ border-bottom-right-radius: 4px;
50
+ border-top-color: #DADADA;
51
+ color: #666;
52
+ box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
53
+ }
54
+ </style>
55
+ </head>
56
+
57
+ <body>
58
+ <!-- This file lives in public/500.html -->
59
+ <div class="dialog">
60
+ <div>
61
+ <h1>We're sorry, but something went wrong.</h1>
62
+ </div>
63
+ <p>If you are the application owner check the logs for more information.</p>
64
+ </div>
65
+ </body>
66
+ </html>
File without changes
@@ -0,0 +1,5 @@
1
+ FactoryGirl.define do
2
+ factory :post do
3
+ title 'Some title'
4
+ end
5
+ end
@@ -0,0 +1,18 @@
1
+ describe Post do
2
+ it 'Post.entity.to_json' do
3
+ expect(Post.entity).to eq(Post::Entity)
4
+ puts Post.entity
5
+ end
6
+ it 'Post.first.entity.to_json' do
7
+ post = create(:post)
8
+ expect(post.entity).to be_instance_of(Post::Entity.represent(post).class)
9
+ expect(post.entity.to_json).to eq("{\"post\":{\"title\":\"Some title\"}}")
10
+ puts post.entity.to_json
11
+ end
12
+ it 'Post.all.entity.to_json' do
13
+ 3.times { create(:post) }
14
+ expect(Post.all.entity).to be_instance_of(Post::Entity.represent(Post.all).class)
15
+ expect(Post.all.entity.to_json).to eq("{\"posts\":[{\"title\":\"Some title\"},{\"title\":\"Some title\"},{\"title\":\"Some title\"}]}")
16
+ puts Post.all.entity.to_json
17
+ end
18
+ end
@@ -0,0 +1,50 @@
1
+ describe 'API Spec' do
2
+ subject do
3
+ Class.new(Grape::API) do
4
+ params do
5
+ optional :root, default: ''
6
+ end
7
+ get '/posts' do
8
+ status 200
9
+ root = params[:root]
10
+ root = false if params[:root] == 'false'
11
+ root = nil if params[:root] == ''
12
+ if root.nil?
13
+ present Post.all.entity.to_json
14
+ else
15
+ present Post.all.entity(root: root).to_json
16
+ end
17
+ end
18
+ end
19
+ end
20
+
21
+ def app
22
+ subject
23
+ end
24
+
25
+ it 'check getting one object entity without root' do
26
+ create(:post)
27
+ get '/posts', root: 'false'
28
+ expect(last_response.status).to eq(200)
29
+ expect(JSON.parse(last_response.body)).to eq([{"title"=>"Some title"}])
30
+ end
31
+ it 'check getting one object entity with changed root' do
32
+ create(:post)
33
+ get '/posts', root: 'postik'
34
+ expect(last_response.status).to eq(200)
35
+ expect(JSON.parse(last_response.body)).to eq({"postik"=>[{"title"=>"Some title"}]})
36
+ end
37
+ it 'check getting one object entity' do
38
+ create(:post)
39
+ get '/posts'
40
+ expect(last_response.status).to eq(200)
41
+ expect(JSON.parse(last_response.body)).to eq({"posts"=>[{"title"=>"Some title"}]})
42
+ end
43
+ it 'check getting relation entity with changed root' do
44
+ 3.times { create(:post) }
45
+ get '/posts', root: 'postes'
46
+ expect(last_response.status).to eq(200)
47
+ expect(JSON.parse(last_response.body)).to eq({"postes"=>[{"title"=>"Some title"}, {"title"=>"Some title"}, {"title"=>"Some title"}]})
48
+ end
49
+
50
+ end
@@ -0,0 +1,6 @@
1
+ describe Greenin do
2
+ it 'check default setting values' do
3
+ expect(Greenin.entity_method_name).to eq 'entity'
4
+ expect(Greenin.entity_class_name).to eq 'Entity'
5
+ end
6
+ end
@@ -0,0 +1,65 @@
1
+ # This file is copied to spec/ when you run 'rails generate rspec:install'
2
+ ENV['RAILS_ENV'] ||= 'test'
3
+ require 'spec_helper'
4
+ require File.expand_path('../dummy/config/environment.rb', __FILE__)
5
+ require 'rspec/rails'
6
+ require 'factory_girl_rails'
7
+ require 'database_cleaner'
8
+ # Add additional requires below this line. Rails is not loaded until this point!
9
+
10
+ # Requires supporting ruby files with custom matchers and macros, etc, in
11
+ # spec/support/ and its subdirectories. Files matching `spec/**/*_spec.rb` are
12
+ # run as spec files by default. This means that files in spec/support that end
13
+ # in _spec.rb will both be required and run as specs, causing the specs to be
14
+ # run twice. It is recommended that you do not name files matching this glob to
15
+ # end with _spec.rb. You can configure this pattern with the --pattern
16
+ # option on the command line or in ~/.rspec, .rspec or `.rspec-local`.
17
+ #
18
+ # The following line is provided for convenience purposes. It has the downside
19
+ # of increasing the boot-up time by auto-requiring all files in the support
20
+ # directory. Alternatively, in the individual `*_spec.rb` files, manually
21
+ # require only the support files necessary.
22
+ #
23
+ # Dir[Rails.root.join('spec/support/**/*.rb')].each { |f| require f }
24
+
25
+ # Checks for pending migrations before tests are run.
26
+ # If you are not using ActiveRecord, you can remove this line.
27
+ ActiveRecord::Migration.maintain_test_schema!
28
+
29
+ RSpec.configure do |config|
30
+ config.before(:suite) do
31
+ DatabaseCleaner.strategy = :transaction
32
+ DatabaseCleaner.clean_with(:truncation)
33
+ end
34
+
35
+ config.around(:each) do |example|
36
+ DatabaseCleaner.cleaning do
37
+ example.run
38
+ end
39
+ end
40
+
41
+ config.include FactoryGirl::Syntax::Methods
42
+
43
+ # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
44
+ config.fixture_path = "#{::Rails.root}/spec/fixtures"
45
+
46
+ # If you're not using ActiveRecord, or you'd prefer not to run each of your
47
+ # examples within a transaction, remove the following line or assign false
48
+ # instead of true.
49
+ config.use_transactional_fixtures = true
50
+
51
+ # RSpec Rails can automatically mix in different behaviours to your tests
52
+ # based on their file location, for example enabling you to call `get` and
53
+ # `post` in specs under `spec/controllers`.
54
+ #
55
+ # You can disable this behaviour by removing the line below, and instead
56
+ # explicitly tag your specs with their type, e.g.:
57
+ #
58
+ # RSpec.describe UsersController, :type => :controller do
59
+ # # ...
60
+ # end
61
+ #
62
+ # The different available types are documented in the features, such as in
63
+ # https://relishapp.com/rspec/rspec-rails/docs
64
+ config.infer_spec_type_from_file_location!
65
+ end
@@ -0,0 +1,95 @@
1
+ require "codeclimate-test-reporter"
2
+ require 'rack/test'
3
+ CodeClimate::TestReporter.start
4
+ # This file was generated by the `rspec --init` command. Conventionally, all
5
+ # specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
6
+ # The generated `.rspec` file contains `--require spec_helper` which will cause
7
+ # this file to always be loaded, without a need to explicitly require it in any
8
+ # files.
9
+ #
10
+ # Given that it is always loaded, you are encouraged to keep this file as
11
+ # light-weight as possible. Requiring heavyweight dependencies from this file
12
+ # will add to the boot time of your test suite on EVERY test run, even for an
13
+ # individual file that may not need all of that loaded. Instead, consider making
14
+ # a separate helper file that requires the additional dependencies and performs
15
+ # the additional setup, and require it from the spec files that actually need
16
+ # it.
17
+ #
18
+ # The `.rspec` file also contains a few flags that are not defaults but that
19
+ # users commonly want.
20
+ #
21
+ # See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
22
+ RSpec.configure do |config|
23
+ # rspec-expectations config goes here. You can use an alternate
24
+ # assertion/expectation library such as wrong or the stdlib/minitest
25
+ # assertions if you prefer.
26
+ config.include Rack::Test::Methods
27
+ config.expect_with :rspec do |expectations|
28
+ # This option will default to `true` in RSpec 4. It makes the `description`
29
+ # and `failure_message` of custom matchers include text for helper methods
30
+ # defined using `chain`, e.g.:
31
+ # be_bigger_than(2).and_smaller_than(4).description
32
+ # # => "be bigger than 2 and smaller than 4"
33
+ # ...rather than:
34
+ # # => "be bigger than 2"
35
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
36
+ end
37
+
38
+ # rspec-mocks config goes here. You can use an alternate test double
39
+ # library (such as bogus or mocha) by changing the `mock_with` option here.
40
+ config.mock_with :rspec do |mocks|
41
+ # Prevents you from mocking or stubbing a method that does not exist on
42
+ # a real object. This is generally recommended, and will default to
43
+ # `true` in RSpec 4.
44
+ mocks.verify_partial_doubles = true
45
+ end
46
+
47
+ # The settings below are suggested to provide a good initial experience
48
+ # with RSpec, but feel free to customize to your heart's content.
49
+ =begin
50
+ # These two settings work together to allow you to limit a spec run
51
+ # to individual examples or groups you care about by tagging them with
52
+ # `:focus` metadata. When nothing is tagged with `:focus`, all examples
53
+ # get run.
54
+ config.filter_run :focus
55
+ config.run_all_when_everything_filtered = true
56
+
57
+ # Limits the available syntax to the non-monkey patched syntax that is
58
+ # recommended. For more details, see:
59
+ # - http://myronmars.to/n/dev-blog/2012/06/rspecs-new-expectation-syntax
60
+ # - http://teaisaweso.me/blog/2013/05/27/rspecs-new-message-expectation-syntax/
61
+ # - http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3#new__config_option_to_disable_rspeccore_monkey_patching
62
+ config.disable_monkey_patching!
63
+
64
+ # This setting enables warnings. It's recommended, but in some cases may
65
+ # be too noisy due to issues in dependencies.
66
+ config.warnings = true
67
+
68
+ # Many RSpec users commonly either run the entire suite or an individual
69
+ # file, and it's useful to allow more verbose output when running an
70
+ # individual spec file.
71
+ if config.files_to_run.one?
72
+ # Use the documentation formatter for detailed output,
73
+ # unless a formatter has already been configured
74
+ # (e.g. via a command-line flag).
75
+ config.default_formatter = 'doc'
76
+ end
77
+
78
+ # Print the 10 slowest examples and example groups at the
79
+ # end of the spec run, to help surface which specs are running
80
+ # particularly slow.
81
+ config.profile_examples = 10
82
+
83
+ # Run specs in random order to surface order dependencies. If you find an
84
+ # order dependency and want to debug it, you can fix the order by providing
85
+ # the seed, which is printed after each run.
86
+ # --seed 1234
87
+ config.order = :random
88
+
89
+ # Seed global randomization in this process using the `--seed` CLI option.
90
+ # Setting this allows you to use `--seed` to deterministically reproduce
91
+ # test failures related to randomization by passing the same `--seed` value
92
+ # as the one that triggered the failure.
93
+ Kernel.srand config.seed
94
+ =end
95
+ end
metadata CHANGED
@@ -1,29 +1,155 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: greenin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Russkikh Artem
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-24 00:00:00.000000000 Z
11
+ date: 2015-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: bundler
14
+ name: activerecord
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: railties
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: grape
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.11.0
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.11.0
55
+ - !ruby/object:Gem::Dependency
56
+ name: grape-entity
15
57
  requirement: !ruby/object:Gem::Requirement
16
58
  requirements:
17
59
  - - "~>"
18
60
  - !ruby/object:Gem::Version
19
- version: '1.7'
61
+ version: 0.4.4
20
62
  type: :development
21
63
  prerelease: false
22
64
  version_requirements: !ruby/object:Gem::Requirement
23
65
  requirements:
24
66
  - - "~>"
25
67
  - !ruby/object:Gem::Version
26
- version: '1.7'
68
+ version: 0.4.4
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 3.2.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 3.2.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: factory_girl_rails
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 4.5.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 4.5.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: database_cleaner
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.4.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.4.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: sqlite3
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 1.3.10
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 1.3.10
125
+ - !ruby/object:Gem::Dependency
126
+ name: byebug
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: bundler
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '1.6'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '1.6'
27
153
  - !ruby/object:Gem::Dependency
28
154
  name: rake
29
155
  requirement: !ruby/object:Gem::Requirement
@@ -38,7 +164,9 @@ dependencies:
38
164
  - - "~>"
39
165
  - !ruby/object:Gem::Version
40
166
  version: '10.0'
41
- description: Describe your Grape Entities in Rails Active Record models
167
+ description: |-
168
+ Describe your Grape Entities
169
+ in Rails Active Record models
42
170
  email:
43
171
  - russkikhartem@itbeaver.co
44
172
  executables: []
@@ -46,6 +174,8 @@ extensions: []
46
174
  extra_rdoc_files: []
47
175
  files:
48
176
  - ".gitignore"
177
+ - ".rspec"
178
+ - ".travis.yml"
49
179
  - Gemfile
50
180
  - LICENSE.txt
51
181
  - README.md
@@ -56,6 +186,61 @@ files:
56
186
  - lib/generators/greenin/install/templates/initializer.rb
57
187
  - lib/greenin.rb
58
188
  - lib/greenin/version.rb
189
+ - spec/dummy/README.rdoc
190
+ - spec/dummy/Rakefile
191
+ - spec/dummy/app/api/base_api.rb
192
+ - spec/dummy/app/api/dummy_api.rb
193
+ - spec/dummy/app/assets/images/.keep
194
+ - spec/dummy/app/assets/javascripts/application.js
195
+ - spec/dummy/app/assets/stylesheets/application.css
196
+ - spec/dummy/app/controllers/application_controller.rb
197
+ - spec/dummy/app/controllers/concerns/.keep
198
+ - spec/dummy/app/helpers/application_helper.rb
199
+ - spec/dummy/app/mailers/.keep
200
+ - spec/dummy/app/models/.keep
201
+ - spec/dummy/app/models/concerns/.keep
202
+ - spec/dummy/app/models/post.rb
203
+ - spec/dummy/app/views/layouts/application.html.erb
204
+ - spec/dummy/bin/bundle
205
+ - spec/dummy/bin/rails
206
+ - spec/dummy/bin/rake
207
+ - spec/dummy/bin/setup
208
+ - spec/dummy/config.ru
209
+ - spec/dummy/config/application.rb
210
+ - spec/dummy/config/boot.rb
211
+ - spec/dummy/config/database.yml
212
+ - spec/dummy/config/environment.rb
213
+ - spec/dummy/config/environments/development.rb
214
+ - spec/dummy/config/environments/production.rb
215
+ - spec/dummy/config/environments/test.rb
216
+ - spec/dummy/config/initializers/assets.rb
217
+ - spec/dummy/config/initializers/backtrace_silencers.rb
218
+ - spec/dummy/config/initializers/cookies_serializer.rb
219
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
220
+ - spec/dummy/config/initializers/inflections.rb
221
+ - spec/dummy/config/initializers/initializer.rb
222
+ - spec/dummy/config/initializers/mime_types.rb
223
+ - spec/dummy/config/initializers/session_store.rb
224
+ - spec/dummy/config/initializers/wrap_parameters.rb
225
+ - spec/dummy/config/locales/en.yml
226
+ - spec/dummy/config/routes.rb
227
+ - spec/dummy/config/secrets.yml
228
+ - spec/dummy/db/development.sqlite3
229
+ - spec/dummy/db/migrate/20150224174059_create_posts.rb
230
+ - spec/dummy/db/schema.rb
231
+ - spec/dummy/db/test.sqlite3
232
+ - spec/dummy/lib/assets/.keep
233
+ - spec/dummy/log/.keep
234
+ - spec/dummy/public/404.html
235
+ - spec/dummy/public/422.html
236
+ - spec/dummy/public/500.html
237
+ - spec/dummy/public/favicon.ico
238
+ - spec/factories/posts.rb
239
+ - spec/models/active_record_spec.rb
240
+ - spec/models/api_spec.rb
241
+ - spec/models/settings_spec.rb
242
+ - spec/rails_helper.rb
243
+ - spec/spec_helper.rb
59
244
  homepage: http://itbeaver.co
60
245
  licenses:
61
246
  - MIT
@@ -80,4 +265,59 @@ rubygems_version: 2.2.2
80
265
  signing_key:
81
266
  specification_version: 4
82
267
  summary: Grape Entities in Rails models
83
- test_files: []
268
+ test_files:
269
+ - spec/dummy/README.rdoc
270
+ - spec/dummy/Rakefile
271
+ - spec/dummy/app/api/base_api.rb
272
+ - spec/dummy/app/api/dummy_api.rb
273
+ - spec/dummy/app/assets/images/.keep
274
+ - spec/dummy/app/assets/javascripts/application.js
275
+ - spec/dummy/app/assets/stylesheets/application.css
276
+ - spec/dummy/app/controllers/application_controller.rb
277
+ - spec/dummy/app/controllers/concerns/.keep
278
+ - spec/dummy/app/helpers/application_helper.rb
279
+ - spec/dummy/app/mailers/.keep
280
+ - spec/dummy/app/models/.keep
281
+ - spec/dummy/app/models/concerns/.keep
282
+ - spec/dummy/app/models/post.rb
283
+ - spec/dummy/app/views/layouts/application.html.erb
284
+ - spec/dummy/bin/bundle
285
+ - spec/dummy/bin/rails
286
+ - spec/dummy/bin/rake
287
+ - spec/dummy/bin/setup
288
+ - spec/dummy/config.ru
289
+ - spec/dummy/config/application.rb
290
+ - spec/dummy/config/boot.rb
291
+ - spec/dummy/config/database.yml
292
+ - spec/dummy/config/environment.rb
293
+ - spec/dummy/config/environments/development.rb
294
+ - spec/dummy/config/environments/production.rb
295
+ - spec/dummy/config/environments/test.rb
296
+ - spec/dummy/config/initializers/assets.rb
297
+ - spec/dummy/config/initializers/backtrace_silencers.rb
298
+ - spec/dummy/config/initializers/cookies_serializer.rb
299
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
300
+ - spec/dummy/config/initializers/inflections.rb
301
+ - spec/dummy/config/initializers/initializer.rb
302
+ - spec/dummy/config/initializers/mime_types.rb
303
+ - spec/dummy/config/initializers/session_store.rb
304
+ - spec/dummy/config/initializers/wrap_parameters.rb
305
+ - spec/dummy/config/locales/en.yml
306
+ - spec/dummy/config/routes.rb
307
+ - spec/dummy/config/secrets.yml
308
+ - spec/dummy/db/development.sqlite3
309
+ - spec/dummy/db/migrate/20150224174059_create_posts.rb
310
+ - spec/dummy/db/schema.rb
311
+ - spec/dummy/db/test.sqlite3
312
+ - spec/dummy/lib/assets/.keep
313
+ - spec/dummy/log/.keep
314
+ - spec/dummy/public/404.html
315
+ - spec/dummy/public/422.html
316
+ - spec/dummy/public/500.html
317
+ - spec/dummy/public/favicon.ico
318
+ - spec/factories/posts.rb
319
+ - spec/models/active_record_spec.rb
320
+ - spec/models/api_spec.rb
321
+ - spec/models/settings_spec.rb
322
+ - spec/rails_helper.rb
323
+ - spec/spec_helper.rb