atomize 1.0 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -2
- data/exe/atomize +16 -3
- data/lib/atomize/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d26575a6f3da463f73c70cfbe7b32d7422c29dd2214173c091e38b93179f7bc8
|
4
|
+
data.tar.gz: f525eacafcead58dfebc035eaff2083d6bfa183777f84d95f962028817fc66db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ed92909b81c6000dc24b9e7b9bdf7d48b26970c11b473b78f9ab2400a10aecac2f9d9dbaed3fe0ae32d356c4a26ea459066f094db6907b17cf1d97d4612c846
|
7
|
+
data.tar.gz: 4d591f80377f2eaa9a91bbba20678861cbe6bd6783085ce290c8e4a2a9cd457d901ef31da245b9d1885867a635aa4378e53d432718ce422765c82f07333535b8
|
data/README.md
CHANGED
@@ -16,7 +16,10 @@ If bundler is not being used to manage dependencies, install the gem by executin
|
|
16
16
|
|
17
17
|
## Usage
|
18
18
|
|
19
|
-
|
19
|
+
to install the atome development framework, just type : 'atomize install' in you shell
|
20
|
+
If you want to install and run the app, just type type : 'atomize install run ' in you shell
|
21
|
+
it will create a directory named 'atome' and also install the atome gem
|
22
|
+
Then refer to https://github.com/atomecorp/atome to use or develop the framework
|
20
23
|
|
21
24
|
## Development
|
22
25
|
|
@@ -26,7 +29,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
26
29
|
|
27
30
|
## Contributing
|
28
31
|
|
29
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
32
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/atomecorp/atomize.
|
30
33
|
|
31
34
|
## License
|
32
35
|
|
data/exe/atomize
CHANGED
@@ -2,16 +2,29 @@
|
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
if ARGV.include?('install')
|
5
|
-
# Dir.mkdir 'atome'
|
6
|
-
# Dir.chdir('atome') do
|
7
5
|
%x(git clone https://github.com/atomecorp/atome.git )
|
8
6
|
Dir.chdir('atome/vendor/assets/build/js/') do
|
9
7
|
%x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
|
8
|
+
Dir.chdir('../../../../test/test_app/build/') do
|
9
|
+
|
10
|
+
Dir.mkdir('js')
|
11
|
+
|
12
|
+
Dir.chdir('js/') do
|
13
|
+
%x(git clone https://github.com/atomecorp/atome_third_parties_js.git third_parties)
|
14
|
+
end
|
15
|
+
end
|
10
16
|
Dir.chdir('../../../../') do
|
17
|
+
Dir.mkdir('thepoil')
|
11
18
|
`bundle update; bundle install`
|
12
19
|
`gem build atome.gemspec`
|
13
20
|
`gem install atome`
|
14
|
-
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
24
|
+
if ARGV.include?('run')
|
25
|
+
Dir.chdir('atome/') do
|
26
|
+
puts "the path for rake is" +`pwd`
|
27
|
+
`rake test`
|
15
28
|
end
|
16
29
|
end
|
17
30
|
end
|
data/lib/atomize/version.rb
CHANGED